/* Elevate Fit-Out — Home page (from "Elevate - First Light Home.dc.html") */

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #131312;
  color: #F5F3EF;
  font-family: 'Manrope', sans-serif;
  overflow-x: hidden;
}

a { color: #EE5D2F; text-decoration: none; }
a:hover { color: #F5F3EF; }
img { display: block; }

.accent { color: #EE5D2F; }
.kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3em;
  color: #EE5D2F;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); opacity: .7; }
  50% { transform: translateY(7px); opacity: 1; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes panY {
  0% { transform: translateY(0); }
  50% { transform: translateY(-30%); }
  100% { transform: translateY(0); }
}

/* Reveal-on-scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s ease, transform .9s ease;
}
[data-reveal-delay] { transition-delay: .1s; }
[data-reveal].revealed { opacity: 1; transform: none; }

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 32px;
  background: linear-gradient(180deg, rgba(19,19,18,.55), rgba(19,19,18,0));
  transition: background .35s ease, box-shadow .35s ease;
}
.nav.scrolled {
  background: rgba(10,10,9,.97);
  box-shadow: 0 1px 0 rgba(245,243,239,.09);
}
.nav-wordmark { justify-self: start; }
.nav-wordmark img { height: 34px; }
.nav-mark { justify-self: center; }
.nav-mark img { height: 46px; }
.nav-actions { display: flex; gap: 12px; align-items: center; justify-self: end; }

.btn {
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  letter-spacing: .14em;
  border-radius: 10px;
}
.btn-solid { background: #EE5D2F; color: #131312; padding: 14px 28px; }
.btn-solid:hover { color: #131312; }
.btn-ghost { border: 1px solid rgba(245,243,239,.4); color: #F5F3EF; padding: 13px 24px; }
.btn-ghost:hover { color: #F5F3EF; }

.nav-burger {
  width: 47px; height: 47px;
  border: 0;
  border-radius: 10px;
  background: #F5F3EF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.nav-burger span { width: 18px; height: 2px; background: #131312; display: block; }

.menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(19,19,18,.98);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0 8vw;
}
.menu[hidden] { display: none; }
.menu-close {
  position: absolute;
  top: 26px; right: 32px;
  border: 0;
  background: none;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .24em;
  color: #F5F3EF;
  cursor: pointer;
  padding: 12px;
}
.menu-link {
  font-family: 'Anton', sans-serif;
  font-size: clamp(44px, 6vw, 84px);
  color: #F5F3EF;
  line-height: 1.15;
}
.menu-link:hover { color: #EE5D2F; }
.menu-link-accent { color: #EE5D2F; }

/* ---------- Hero ---------- */

.hero {
  height: 260vh;
  position: relative;
  background: #131312;
}
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.hero-t1, .hero-t2 {
  position: absolute;
  left: 0; right: 0;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  will-change: top, opacity;
}
.hero-t1 { top: 0; transform: translateY(-100%); }
.hero-t2 { top: 100%; }
.hero-marquee {
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 8.2vw, 132px);
  line-height: 1.08;
  white-space: nowrap;
  width: max-content;
  animation: marquee 44s linear infinite;
}
.hero-marquee-orange { color: #EE5D2F; }
.hero-marquee-white { color: #F5F3EF; animation-direction: reverse; }

.hero-plane {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: scale(6.25);
  transform-origin: 50% 46%;
  will-change: transform;
}
.scatter { position: absolute; width: 16%; }
.scatter-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 6px;
  background: #1E1D1B center/cover no-repeat;
  filter: brightness(.5);
}

.hero-img {
  position: absolute;
  inset: 0;
  will-change: transform;
  transform-origin: 50% 46%;
  z-index: 3;
}
.hero-img > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19,19,18,.4), rgba(19,19,18,.05) 35%, rgba(19,19,18,.72) 100%);
}
.hero-tint {
  position: absolute;
  inset: 0;
  background: #EE5D2F;
  mix-blend-mode: multiply;
  opacity: 0;
}

.hero-ui {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}
.hero-scroll {
  position: absolute;
  left: 0; right: 0; bottom: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-scroll-bob {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: bob 1.8s ease-in-out infinite;
}
.hero-scroll-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .34em;
  color: #F5F3EF;
  text-shadow: 0 2px 12px rgba(19,19,18,.6);
}

/* ---------- Proof ---------- */

.proof {
  background: #DFD8C8;
  padding: 130px 44px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.proof-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(34px, 3.6vw, 54px);
  font-weight: 400;
  line-height: 1.12;
  margin: 24px 0 0;
  color: #1E1B16;
}
.proof-sub {
  font-size: 16px;
  line-height: 1.75;
  color: #4A453C;
  margin: 24px 0 0;
  max-width: 560px;
}
.proof-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  border-top: 1px solid rgba(30,27,22,.18);
  padding-top: 26px;
}
.stat-n { font-family: 'Anton', sans-serif; font-size: 34px; color: #1E1B16; }
.stat-n.accent { color: #EE5D2F; }
.stat-l {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  color: #7A7466;
  margin-top: 4px;
}
.proof-cta {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  background: #EE5D2F;
  color: #131312;
  padding: 16px 30px;
  margin-top: 36px;
}
.proof-cta:hover { color: #131312; filter: brightness(1.08); }

.proof-media { position: relative; }
.proof-media[data-reveal] { transform: translateY(56px); transition: opacity 1s ease .1s, transform 1s ease .1s; }
.proof-media[data-reveal].revealed { transform: none; }
.proof-frame {
  position: absolute;
  top: -22px; right: -22px; bottom: 64px; left: 22px;
  border: 1px solid rgba(238,93,47,.55);
  pointer-events: none;
}
.proof-photo {
  aspect-ratio: 3/2;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(0,0,0,.5);
}
.proof-photo img { width: 100%; height: 100%; object-fit: cover; }
.proof-cap {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 16px;
}
.proof-cap-l { font-size: 12px; font-weight: 600; letter-spacing: .16em; color: #1E1B16; }
.proof-cap-r { font-size: 11px; font-weight: 600; letter-spacing: .16em; color: #EE5D2F; }

/* ---------- Wipe ---------- */

.wipe { height: 220vh; position: relative; }
.wipe-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #131312;
}
.wipe-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
}
.wipe-before {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 100%;
  overflow: hidden;
}
.wipe-before img {
  position: absolute;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: 50% 55%;
  filter: brightness(.62);
}
.wipe-div {
  position: absolute;
  top: 0; bottom: 0;
  left: 100%;
  width: 2px;
  background: #EE5D2F;
  margin-left: -1px;
}
.wipe-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19,19,18,.35), rgba(19,19,18,0) 30%, rgba(19,19,18,.55) 100%);
  pointer-events: none;
}
.wipe-title {
  position: absolute;
  left: 0; right: 0;
  top: 47%;
  transform: translateY(-50%);
  text-align: center;
  font-family: 'Anton', sans-serif;
  font-size: clamp(72px, 10.5vw, 158px);
  line-height: .95;
  color: #F5F3EF;
  text-shadow: 0 3px 14px rgba(19,19,18,.65), 0 10px 50px rgba(19,19,18,.55);
  pointer-events: none;
}
.wipe-sub {
  position: absolute;
  left: 0; right: 0;
  bottom: 44px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .2em;
  color: #F5F3EF;
  opacity: 0;
  transition: opacity .6s ease;
}

/* ---------- Trades ---------- */

.trades { height: 280vh; position: relative; background: #DFD8C8; }
.trades-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 0 24px;
}
.trades-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 44px;
  margin-bottom: 34px;
}
.trades-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(30px, 3.6vw, 58px);
  font-weight: 400;
  line-height: 1.05;
  margin: 14px 0 0;
  color: #1E1B16;
}
.trades-track {
  display: flex;
  gap: 24px;
  padding: 0 44px;
  will-change: transform;
}
.trade-card {
  flex: none;
  width: clamp(300px, 30vw, 430px);
  aspect-ratio: 43/48;
  max-height: 50vh;
  position: relative;
  overflow: hidden;
  background: #1E1D1B;
}
.trade-bg {
  position: absolute;
  inset: 0;
  background: #1E1D1B center/cover no-repeat;
}
.trade-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19,19,18,.15), rgba(19,19,18,0) 35%, rgba(19,19,18,.78));
}
.trade-no {
  position: absolute;
  left: 24px; top: 14px;
  font-family: 'Anton', sans-serif;
  font-size: clamp(30px, 3vw, 44px);
  color: rgba(245,243,239,.32);
}
.trade-body {
  position: absolute;
  left: 24px; right: 24px; bottom: 20px;
}
.trade-h {
  font-family: 'Anton', sans-serif;
  font-size: clamp(20px, 1.8vw, 28px);
  letter-spacing: .02em;
  color: #F5F3EF;
}
.trade-d {
  font-size: 13px;
  line-height: 1.55;
  color: #D3CFC4;
  margin-top: 7px;
}
.trades-rail {
  margin: 34px 44px 0;
  height: 2px;
  background: rgba(30,27,22,.18);
  position: relative;
}
.trades-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: #EE5D2F;
}

/* ---------- The standard (parallax) ---------- */

.standard {
  position: relative;
  height: 64vh;
  overflow: hidden;
  border-bottom: 1px solid rgba(245,243,239,.12);
}
.standard > img {
  position: absolute;
  left: 0; top: -15%;
  width: 100%;
  height: 130%;
  object-fit: cover;
  will-change: transform;
}
.standard-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19,19,18,.5), rgba(19,19,18,.25) 50%, rgba(19,19,18,.6));
}
.standard-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 10vw;
}
.standard-copy[data-reveal] { transform: translateY(30px); transition: opacity 1s ease, transform 1s ease; }
.standard-copy[data-reveal].revealed { transform: none; }
.standard-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.15;
  color: #F5F3EF;
  margin-top: 20px;
  text-shadow: 0 3px 20px rgba(19,19,18,.5);
}

/* ---------- Process ---------- */

.process {
  background: #DFD8C8;
  padding: 120px 44px 110px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
}
.process-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}
.process-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(38px, 4.4vw, 66px);
  font-weight: 400;
  line-height: 1.05;
  margin: 20px 0 0;
  color: #1E1B16;
}
.process-sub {
  font-size: 15px;
  line-height: 1.75;
  color: #5F594E;
  margin: 22px 0 0;
  max-width: 420px;
}
.process-track {
  position: relative;
  padding-left: 44px;
}
.process-rail {
  position: absolute;
  left: 8px; top: 8px; bottom: 8px;
  width: 1px;
  background: rgba(30,27,22,.18);
}
.process-line {
  position: absolute;
  left: 8px; top: 8px;
  width: 1px;
  height: 0;
  background: #EE5D2F;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.pstep { position: relative; }
.pstep[data-reveal] { transform: translateY(36px); transition: opacity .8s ease, transform .8s ease; }
.pstep[data-reveal].revealed { transform: none; }
.pstep-dot {
  position: absolute;
  left: -44px; top: 4px;
  width: 17px; height: 17px;
  border-radius: 50%;
  border: 2px solid #EE5D2F;
  background: #DFD8C8;
  transition: background .35s ease, box-shadow .35s ease;
}
.pstep-dot.lit {
  background: #EE5D2F;
  box-shadow: 0 0 0 4px rgba(238,93,47,.18);
}
.pstep-no {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .26em;
  color: #EE5D2F;
}
.pstep-h {
  font-family: 'Anton', sans-serif;
  font-size: 30px;
  margin-top: 10px;
  color: #1E1B16;
}
.pstep-d {
  font-size: 15px;
  line-height: 1.75;
  color: #5F594E;
  margin-top: 12px;
  max-width: 560px;
}

/* ---------- Approvals ---------- */

.approvals {
  padding: 96px 0 64px;
  border-bottom: 1px solid rgba(245,243,239,.12);
  overflow: hidden;
}
.approvals-head {
  text-align: center;
  padding: 0 44px;
  margin-bottom: 56px;
}
.approvals-head[data-reveal] { transform: translateY(36px); transition: opacity .8s ease, transform .8s ease; }
.approvals-head[data-reveal].revealed { transform: none; }
.approvals-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(30px, 3.6vw, 58px);
  line-height: 1.08;
  color: #F5F3EF;
  margin-top: 16px;
}
.approvals-sub {
  font-size: 15px;
  line-height: 1.75;
  color: #B9B5AC;
  margin: 18px auto 0;
  max-width: 620px;
}
.approvals-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .3em;
  color: #8F8D89;
  text-align: center;
}
.approvals-marquee-clip {
  margin-top: 30px;
  white-space: nowrap;
}
.approvals-marquee {
  display: inline-flex;
  animation: marquee 36s linear infinite;
}
.am-item {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
}
.am-name {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  letter-spacing: .04em;
  color: #D3CFC4;
}
.am-diamond { color: #EE5D2F; font-size: 18px; }

/* ---------- Recent handovers ---------- */

.port { background: #131312; height: 460vh; position: relative; }
.port-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 0 24px;
}
.port-head { padding: 0 44px; margin-bottom: 30px; }
.port-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 400;
  line-height: 1.05;
  margin: 14px 0 0;
  color: #F5F3EF;
}
.port-clip { overflow: hidden; }
.port-track {
  display: flex;
  gap: 16vw;
  width: max-content;
  padding-left: 26vw;
  align-items: center;
  will-change: transform;
}
.port-card {
  flex: none;
  width: min(46vw, 600px, 46vh);
  display: block;
  color: #F5F3EF;
  background: #1E1D1B;
  border: 1px solid rgba(245,243,239,.14);
}
.port-card:hover { color: #F5F3EF; }
.port-card-top {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(245,243,239,.1);
}
.dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(245,243,239,.25); }
.dot-orange { background: #EE5D2F; }
.port-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  color: #8F8D89;
  margin-left: 12px;
}
.port-card-imgwrap {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  margin: 0 20px;
}
.port-card-img {
  width: 100%;
  height: 145%;
  background: #1E1D1B center/cover no-repeat;
  animation: panY 18s ease-in-out infinite;
  will-change: transform;
}
.port-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 20px;
}
.port-card-t { font-size: 14px; font-weight: 700; letter-spacing: .08em; }
.port-card-y { font-size: 12px; font-weight: 700; letter-spacing: .14em; color: #EE5D2F; }

.port-final {
  --cw: min(46vw, 600px, 46vh);
  flex: none;
  width: var(--cw);
  display: block;
  color: #131312;
}
.port-final:hover { color: #131312; }
.port-final-inner {
  aspect-ratio: 1/1;
  background: #EE5D2F;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: calc(var(--cw) * 0.045);
  padding: 0 8%;
}
.pf-kicker { font-size: calc(var(--cw) * 0.023); font-weight: 700; letter-spacing: .28em; }
.pf-title {
  font-family: 'Anton', sans-serif;
  font-size: calc(var(--cw) * 0.082);
  line-height: 1.06;
}
.pf-sub {
  font-size: calc(var(--cw) * 0.027);
  line-height: 1.6;
  font-weight: 600;
  max-width: 82%;
}
.pf-cta {
  font-size: calc(var(--cw) * 0.025);
  font-weight: 700;
  letter-spacing: .24em;
  border: 2px solid #131312;
  padding: calc(var(--cw) * 0.028) calc(var(--cw) * 0.05);
  margin-top: 4px;
}
.port-rail {
  margin: 30px 44px 0;
  height: 2px;
  background: rgba(245,243,239,.15);
  position: relative;
}
.port-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: #EE5D2F;
}

/* ---------- Studio ---------- */

.studio {
  scroll-margin-top: 60px;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 44px;
  background: #DFD8C8;
  padding: 120px 8vw;
}
.studio-inner { text-align: center; }
.studio-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(36px, 4.2vw, 64px);
  line-height: 1.15;
  color: #1E1B16;
  margin-top: 26px;
  max-width: 1100px;
}
.studio-sub {
  font-size: 16px;
  line-height: 1.8;
  color: #5F594E;
  margin: 30px auto 0;
  max-width: 720px;
}

/* ---------- Mission / vision / values / quote ---------- */

.mvv {
  padding: 0 44px 110px;
  background: #DFD8C8;
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(30,27,22,.15);
  border: 1px solid rgba(30,27,22,.15);
}
.mv-cell {
  background: #DFD8C8;
  padding: 52px 48px;
}
.mv-cell[data-reveal] { transform: translateY(36px); transition: opacity .8s ease, transform .8s ease; }
.mv-cell[data-reveal-delay] { transition-delay: .1s; }
.mv-cell[data-reveal].revealed { transform: none; }
.mv-text {
  font-size: 16px;
  line-height: 1.8;
  color: #4A453C;
  margin: 18px 0 0;
}
.values {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-top: 72px;
}
.value {
  border-top: 2px solid #EE5D2F;
  padding-top: 24px;
}
.value[data-reveal] { transform: translateY(36px); transition: opacity .8s ease, transform .8s ease; }
.value[data-reveal].revealed { transform: none; }
.value-h {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  letter-spacing: .02em;
  color: #1E1B16;
}
.value-d {
  font-size: 14px;
  line-height: 1.7;
  color: #5F594E;
  margin-top: 12px;
}
.quote {
  margin-top: 110px;
  padding: 72px 8vw;
  background: #0E0E0D;
  border: 1px solid rgba(245,243,239,.1);
  text-align: center;
}
.quote-text {
  font-family: 'Anton', sans-serif;
  font-size: clamp(24px, 2.8vw, 44px);
  line-height: 1.3;
  color: #F5F3EF;
}
.quote-cap {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3em;
  color: #EE5D2F;
  margin-top: 24px;
}

/* ---------- Instagram feed ---------- */

.insta {
  background: #131312;
  padding: 96px 44px 100px;
  border-top: 1px solid rgba(245,243,239,.1);
}
.insta[hidden] { display: none; }
.insta-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.insta-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 400;
  line-height: 1.08;
  color: #F5F3EF;
  margin: 14px 0 0;
}
.insta-btn {
  flex: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  background: #EE5D2F;
  color: #131312;
  padding: 14px 26px;
}
.insta-btn:hover { color: #131312; filter: brightness(1.08); }
.insta-wrap { position: relative; }
.insta-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(245,243,239,.35);
  background: rgba(19,19,18,.75);
  color: #F5F3EF;
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease, opacity .2s ease;
}
.insta-nav:hover { border-color: #EE5D2F; color: #EE5D2F; }
.insta-nav:disabled { opacity: .25; cursor: default; }
.insta-nav:disabled:hover { border-color: rgba(245,243,239,.35); color: #F5F3EF; }
.insta-prev { left: -18px; }
.insta-next { right: -18px; }
.insta-strip {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}
.insta-strip::-webkit-scrollbar { display: none; }
.ig-tile {
  flex: none;
  width: clamp(190px, 19vw, 270px);
  aspect-ratio: 9/16;
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
  display: block;
}
.ig-tile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease, filter .4s ease;
}
.ig-tile:hover .ig-tile-img { transform: scale(1.05); filter: brightness(1.1); }
.ig-tile-bar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 34px 14px 12px;
  background: linear-gradient(0deg, rgba(19,19,18,.8), rgba(19,19,18,0));
}
.ig-avatar {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #F5F3EF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ig-avatar img { width: 22px; height: 22px; object-fit: contain; }
.ig-handle {
  flex: 1;
  min-width: 0;
  font-size: 13px;
  font-weight: 700;
  color: #F5F3EF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 1px 6px rgba(19,19,18,.6);
}
.ig-tile-bar svg {
  flex: none;
  width: 20px;
  height: 20px;
  fill: #F5F3EF;
  filter: drop-shadow(0 1px 4px rgba(19,19,18,.6));
}

/* ---------- Geo map ---------- */

.geo {
  height: 100vh;
  position: relative;
  background: #0E0E0D;
  border-top: 1px solid rgba(245,243,239,.1);
}
.geo-inner {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.om-geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: #0E0E0D;
}
.om-geo .leaflet-tile { filter: brightness(1.18) saturate(.6) contrast(1.02); }
.om-geo path.leaflet-interactive { transition: fill-opacity .7s ease, stroke-opacity .7s ease; }
.geo-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14,14,13,.75) 0%, rgba(14,14,13,.32) 28%, rgba(14,14,13,0) 50%);
  pointer-events: none;
  z-index: 500;
}
.geo-panel {
  position: absolute;
  left: 44px; top: 88px; bottom: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 600;
  width: min(430px, 42vw);
  min-height: 0;
}
.geo-kicker {
  font-size: clamp(10px, 1.6vh, 12px);
  font-weight: 600;
  letter-spacing: .3em;
  color: #EE5D2F;
}
.geo-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(22px, 4.4vh, 48px);
  line-height: 1.05;
  color: #F5F3EF;
  margin: clamp(6px, 1.4vh, 12px) 0 clamp(10px, 2.4vh, 22px);
}
.place {
  padding: clamp(7px, 1.6vh, 13px) 0;
  border-top: 1px solid rgba(245,243,239,.12);
  opacity: .6;
  transition: opacity .3s ease;
  cursor: pointer;
}
.place:hover { opacity: 1; }
.place-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.place-h {
  font-family: 'Anton', sans-serif;
  font-size: clamp(14px, 2.4vh, 18px);
  letter-spacing: .02em;
  color: #F5F3EF;
}
.place-n {
  font-size: clamp(9px, 1.5vh, 11px);
  font-weight: 700;
  letter-spacing: .14em;
  color: #EE5D2F;
}
.geo-anywhere {
  padding: clamp(9px, 2vh, 16px) 0 0;
  border-top: 1px solid rgba(245,243,239,.12);
}
.geo-anywhere > div {
  font-family: 'Anton', sans-serif;
  font-size: clamp(16px, 2.8vh, 22px);
  letter-spacing: .03em;
  color: #EE5D2F;
}
.geo-anywhere-dot { color: #F5F3EF; }
.geo-credit {
  position: absolute;
  right: 44px; bottom: 24px;
  z-index: 600;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  color: #6E6B66;
}

/* ---------- Responsive ---------- */

@media (max-width: 1023px) {
  .ig-tile { width: clamp(190px, 30vw, 250px); }
  .proof { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .process-intro { position: static; }
  .mv-grid, .rsp-cols2 { grid-template-columns: 1fr 1fr; }
  .values { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 679px) {
  .insta { padding: 64px 20px 72px; }
  .insta-nav { display: none; }
  .ig-tile { width: 52vw; }
  .nav-btn { display: none; }
  .rsp-pad { padding-left: 20px !important; padding-right: 20px !important; }
  .mv-grid { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .geo-panel { left: 20px; width: min(430px, 80vw); }
  .trades-head, .port-head { padding: 0 20px; }
  .trades-track { padding: 0 20px; }
  .trades-rail, .port-rail { margin-left: 20px; margin-right: 20px; }
}
