:root {
  --orange: #ff5a36;
  --orange-dark: #ea4727;
  --ink: #0c0c0c;
  --muted: rgba(12, 12, 12, 0.58);
  --paper: #f7f6f1;
  --line: rgba(12, 12, 12, 0.24);
  --pad: clamp(24px, 3.65vw, 94px);
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --mono: "Space Mono", Consolas, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: clip;
}
body.is-menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; color: inherit; background: none; border: 0; }
button, a, input, textarea, label { touch-action: manipulation; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0);
}

.mark {
  width: 42px; height: 42px; display: grid; place-items: center;
  border-radius: 22%; background: var(--orange); color: #fff;
  font-weight: 800; letter-spacing: -0.06em; flex-shrink: 0;
}
.mark--lg { width: 88px; height: 88px; font-size: 42px; }
.mark--sm { width: 28px; height: 28px; font-size: 13px; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 52px; padding: 6px 8px 6px 22px; border-radius: 999px;
  font-size: 15px; font-weight: 500; letter-spacing: -0.02em;
  white-space: nowrap; flex-shrink: 0;
}
.button > span {
  line-height: 1;
}
.button i {
  width: 38px; height: 38px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 50%; font-style: normal;
}
.button--orange {
  background: var(--orange); color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 16px 34px rgba(232,68,34,.18);
}
.button--orange i { background: #fff; color: var(--orange); }
.text-link {
  display: inline-block; margin-top: 28px; font-size: 16px; letter-spacing: -0.02em;
  border-bottom: 1px solid currentColor; padding-bottom: 4px;
}

.kicker {
  display: flex; align-items: center; gap: 18px;
  font: 500 clamp(11px, 1vw, 18px)/1 var(--mono);
  letter-spacing: .03em; text-transform: uppercase;
}
.kicker i {
  display: block; width: 18px; height: 28px;
  background: var(--orange); transform: skew(-20deg);
}
.kicker--light { color: #fff; }
.kicker--light i { background: #fff; }

/* Intro */
.intro {
  position: fixed; inset: 0; z-index: 9000; display: flex; pointer-events: none;
}
body.is-loading { overflow: hidden; }

.intro__panel {
  flex: 1; background: var(--orange);
  border-right: 1px solid rgba(255,255,255,.28);
  transform-origin: top;
}
.intro.is-done { visibility: hidden; pointer-events: none; }
.intro__identity {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: center; align-items: center; gap: 16px;
  color: #fff; font: 12px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase;
}

/* Nav */
.nav {
  position: fixed; z-index: 200;
  left: var(--pad); right: var(--pad); top: clamp(24px, 3.1vw, 52px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 60px;
  color: var(--ink);
  background: transparent;
  transition:
    left .7s cubic-bezier(.22, 1, .36, 1),
    right .7s cubic-bezier(.22, 1, .36, 1),
    padding .7s cubic-bezier(.22, 1, .36, 1),
    gap .7s cubic-bezier(.22, 1, .36, 1),
    color .45s ease,
    background-color .45s ease,
    border-color .45s ease,
    box-shadow .45s ease;
}
.nav.is-fixed {
  left: max(4vw, calc(50% - min(46vw, 590px)));
  right: max(4vw, calc(50% - min(46vw, 590px)));
  padding: 9px 12px 9px 16px;
  border-color: rgba(255,255,255,.48);
  color: #fff;
  background: rgba(12,12,12,.9);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  gap: 14px;
}
.nav__brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 700; letter-spacing: -.04em; line-height: .82;
  position: relative; z-index: 2; flex-shrink: 0;
}
.nav__name {
  font-size: 13px; text-transform: uppercase;
  max-width: 9em; opacity: 1; overflow: hidden;
  transition: max-width .55s ease, opacity .3s ease;
}
.nav.is-fixed .nav__name {
  max-width: 0;
  opacity: 0;
  pointer-events: none;
}
.nav__links {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(16px, 2.2vw, 48px);
  min-width: 0;
}
.nav__links a { position: relative; font-size: clamp(13px, 1.05vw, 18px); letter-spacing: -.02em; white-space: nowrap; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px;
  background: currentColor; transition: right .25s ease;
}
.nav__links a:hover::after, .nav__links a.is-current::after { right: 0; }
.nav__links a.is-current::before {
  content: ""; position: absolute; left: 50%; top: -11px; width: 4px; height: 4px;
  border-radius: 50%; background: var(--orange); transform: translateX(-50%);
}
.nav__end { display: flex; align-items: center; gap: 16px; }
.lang {
  display: flex; align-items: center; gap: 6px;
  font: 11px/1 var(--mono); letter-spacing: .12em;
}
.lang button {
  padding: 6px 2px; opacity: .38; cursor: pointer; color: inherit;
}
.lang button.is-on { opacity: 1; }
.lang span { opacity: .38; }
.nav__mobile-contact { display: none; }
.nav__contact,
.nav__contact i {
  transition: min-height .45s ease, padding .45s ease, font-size .45s ease,
    width .45s ease, height .45s ease, background-color .45s ease, color .45s ease;
}
.nav.is-fixed .nav__contact {
  min-height: 44px; padding: 4px 5px 4px 16px;
  font-size: 13px; background: #fff; color: var(--ink);
}
.nav.is-fixed .nav__contact i {
  width: 32px; height: 32px; background: var(--orange); color: #fff;
}
.menu-button { display: none; width: 48px; height: 48px; border-radius: 50%; background: var(--ink); color: #fff; padding: 15px 12px; cursor: pointer; }
.menu-button span { display: block; height: 1px; background: currentColor; margin: 5px 0; }
.nav.is-fixed .menu-button { background: #fff; color: #111; }

/* Hero */
.hero {
  position: relative; z-index: 1;
  min-height: 100svh; height: 100svh;
  overflow: hidden; background: var(--paper);
}
.hero__title {
  position: absolute; z-index: 1; display: flex; overflow: hidden;
  font-size: clamp(72px, 12vw, 250px); font-weight: 600;
  letter-spacing: -.056em; line-height: .82; white-space: nowrap;
}
.hero__title span { display: block; }
.hero__title--top { left: 3.6vw; top: max(132px, 18vh); }
.hero__title--bottom { right: 3.6vw; bottom: 3vh; }
.hero__eyebrow {
  position: absolute; left: var(--pad); top: 45%;
  font-size: clamp(11px, .78vw, 18px); color: var(--muted);
}
.hero__cargo-path {
  position: absolute; z-index: 4; left: 50%; top: 41%;
  width: min(52vw, 760px);
  transform-origin: center;
}
.hero__cargo {
  position: relative; width: 100%; transform-origin: 50% 16%;
}
.hero__cargo img {
  width: 100%; height: auto;
  transform: translateZ(0);
  pointer-events: none;
}
.showreel {
  position: absolute; z-index: 5; left: var(--pad); top: 58%;
  width: 142px; aspect-ratio: 1; display: grid; place-items: center;
}
.showreel svg { position: absolute; inset: 0; animation: spin 18s linear infinite; }
.showreel text { font: 8px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; fill: var(--ink); }
.showreel span {
  width: 48px; aspect-ratio: 1; display: grid; place-items: center;
  border-radius: 50%; background: var(--ink); color: #fff; font-size: 12px; padding-left: 3px;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .showreel svg { animation: none; }
  .stack__video { display: none; }
  .stack__route-ticket { display: none; }
  .stack__cards, .stack__timeline { opacity: 1; }
  .mission__visual {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  .feature { opacity: 1; }
  .service-row, .service-row::before, .service-row__shot, .service-row > i { transition: none; }
}
@media (prefers-reduced-motion: reduce) and (max-width: 900px) {
  .mission__visual { transform: none; }
}
.hero__cta { position: absolute; z-index: 5; left: var(--pad); bottom: 6.4%; }
.hero__proof {
  position: absolute; z-index: 5; right: var(--pad); top: 42%;
  display: flex; flex-direction: column; gap: 27px; text-align: right;
}
.hero__proof strong { display: block; font-size: clamp(32px, 2.25vw, 52px); font-weight: 600; letter-spacing: -.04em; }
.hero__proof span { font-size: clamp(10px, .78vw, 17px); color: var(--muted); }

/* About */
.about { position: relative; z-index: 8; height: 158svh; background: var(--orange); color: #fff; }
.about__sticky {
  position: sticky; top: 0; height: 100svh; overflow: hidden;
  display: grid; place-items: center; background: var(--orange);
}
.about__aperture {
  position: absolute; z-index: 5; left: -12vw; right: -12vw; top: -1px; height: 43svh;
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  background: var(--paper); color: var(--ink);
  box-shadow: 0 30px 70px rgba(92, 24, 8, .16);
  transform-origin: 50% 0;
}
.about__cable {
  position: absolute; left: 50%; top: 0; width: 1px; height: calc(100% - 48px);
  background: rgba(12,12,12,.44); transform: translateX(-50%);
  transform-origin: top center;
}
.about__cable::before, .about__cable::after {
  content: ""; position: absolute; left: 50%; border-radius: 50%; transform: translateX(-50%);
}
.about__cable::before { bottom: 0; width: 9px; height: 9px; background: var(--orange); box-shadow: 0 0 0 8px rgba(255,90,54,.13); }
.about__cable::after { top: 26%; width: 3px; height: 3px; background: var(--ink); }
.about__route {
  position: absolute; bottom: 19%; font: 9px/1 var(--mono);
  letter-spacing: .11em; text-transform: uppercase; color: rgba(12,12,12,.48);
}
.about__route--origin { left: 24%; }
.about__route--destination { right: 24%; }
.about__seal {
  position: absolute; left: 50%; bottom: -54px; width: 78px; height: 108px;
  padding: 19px 10px 12px; display: flex; flex-direction: column;
  align-items: center; justify-content: space-between;
  border-radius: 8px 8px 34px 34px; background: #111210; color: #fff;
  box-shadow: 0 18px 44px rgba(68,20,8,.22); transform: translateX(-50%);
}
.about__seal::before {
  content: ""; position: absolute; inset: 6px;
  border: 1px solid rgba(255,255,255,.2); border-radius: 6px 6px 28px 28px;
}
.about__seal b { font-size: 18px; letter-spacing: .08em; position: relative; }
.about__seal small { font: 8px/1 var(--mono); letter-spacing: .16em; position: relative; }
.about__copy {
  position: relative; z-index: 6; text-align: center;
  padding: 18vh var(--pad) 8vh;
  width: min(92vw, 900px);
  max-width: 92vw;
  margin: 0 auto;
  justify-self: center;
}
.about__copy h2 {
  margin-top: 22px;
  font-size: clamp(26px, 3.6vw, 56px);
  font-weight: 600; letter-spacing: -.045em; line-height: 1.08;
}
.about__line { display: block; overflow: hidden; }
.about__line > span { display: block; white-space: nowrap; }
.about__copy .kicker { justify-content: center; }
.about__field-word {
  position: absolute; z-index: 1; left: 50%; top: 58%;
  font-size: clamp(72px, 16vw, 260px); font-weight: 600;
  letter-spacing: -.06em; color: rgba(255,255,255,.16);
  pointer-events: none; white-space: nowrap;
}
.about__handoff {
  display: block; width: 88px; height: 1px; margin: 28px auto 0;
  background: rgba(255,255,255,.7); transform-origin: left center;
}

/* Mission */
.mission { position: relative; z-index: 2; height: 118svh; background: var(--paper); }
.mission__sticky {
  position: sticky; top: 0; height: 100svh; overflow: hidden;
  background: var(--paper);
}
.mission__intro {
  position: absolute; z-index: 7; left: var(--pad); right: var(--pad); top: 10vh;
  display: grid; grid-template-columns: .8fr .6fr 1.8fr; gap: 3vw; align-items: start;
}
.mission__aside { margin: 0; max-width: 11ch; font-size: clamp(12px, .95vw, 24px); line-height: 1.1; color: var(--muted); }
.mission__copy {
  justify-self: end; margin: 0; max-width: 46ch;
  font-size: clamp(18px, 1.25vw, 28px); line-height: 1.2; letter-spacing: -.02em;
  color: var(--muted); text-indent: 5ch;
}
.mission__copy em { color: var(--ink); font-weight: 600; font-style: normal; }
.mission__visual {
  position: absolute; z-index: 3; left: 50%; top: 54%;
  width: min(50vw, 720px);
  opacity: 0;
  pointer-events: none;
}
.mission__visual-inner { position: relative; width: 100%; }
.mission__visual-inner > img {
  width: 100%; height: auto;
  transform: translateZ(0);
  pointer-events: none;
}
.mission__visual-inner::after {
  content: ""; position: absolute; left: 16%; right: 16%; bottom: 6%;
  height: 16%; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(12,12,12,.14), transparent 72%);
}
.feature {
  position: absolute; z-index: 5; width: clamp(210px, 18vw, 300px);
  opacity: 0; outline: none;
}
.feature small {
  display: block; margin: 0 0 10px;
  color: var(--orange); font: 11px/1 var(--mono);
  letter-spacing: .14em; text-transform: uppercase;
}
.feature strong {
  display: block; margin: 0 0 10px;
  font-size: clamp(20px, 1.55vw, 28px); font-weight: 600;
  letter-spacing: -.035em; line-height: 1.1;
}
.feature p {
  max-width: 28ch; font-size: 14px; color: var(--muted); line-height: 1.45;
}
.feature--right { text-align: right; }
.feature--right p { margin-left: auto; }
.feature__trace {
  position: absolute; top: 7px; height: 1px;
  width: clamp(72px, 10vw, 200px);
  background: rgba(12,12,12,.28);
}
.feature__trace::after {
  content: ""; position: absolute; top: -3px; width: 7px; height: 7px;
  border-radius: 50%; background: var(--orange);
}
.feature__trace i {
  position: absolute; top: -2px; width: 5px; height: 5px;
  border-radius: 50%; background: var(--orange); opacity: 0;
}
.feature--left .feature__trace { left: calc(100% + 18px); }
.feature--left .feature__trace::after { right: -3px; }
.feature--right .feature__trace { right: calc(100% + 18px); }
.feature--right .feature__trace::after { left: -3px; }
.feature--tl { left: var(--pad); top: 24%; }
.feature--tr { right: var(--pad); top: 24%; }
.feature--bl { left: var(--pad); top: 63%; }
.feature--br { right: var(--pad); top: 63%; }

/* How we work */
.stack {
  position: relative; z-index: 3; height: 480vh; margin-top: -2px; color: #fff;
  background: #071925;
}
.stack__pin {
  position: sticky; top: 0; z-index: 1;
  height: 100svh; overflow: hidden;
}
.stack__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.stack__reveal { position: absolute; inset: 0; z-index: 12; overflow: hidden; pointer-events: none; }
.stack__reveal-panel {
  position: absolute; top: 0; bottom: 0; width: 50.15%; padding: 34px var(--pad);
  display: flex; align-items: flex-end; color: rgba(12,12,12,.48);
  background: var(--paper); font: 8px/1 var(--mono); letter-spacing: .09em; text-transform: uppercase;
}
.stack__reveal-panel--left { left: 0; }
.stack__reveal-panel--right { right: 0; justify-content: flex-end; }
.stack__wash {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(7,25,37,.82) 0%, rgba(7,25,37,.42) 42%, rgba(7,25,37,.22) 100%);
}
.stack__ui {
  position: relative; z-index: 3; height: 100%;
  padding: 8vh var(--pad);
  display: grid; grid-template-columns: minmax(250px, .72fr) minmax(320px, 430px) 48px;
  gap: clamp(36px, 6vw, 110px); align-items: center;
}
.stack__heading { align-self: start; padding-top: 4vh; }
.stack__heading h2 {
  max-width: 16ch; margin-top: 18px;
  font-size: clamp(32px, 3.4vw, 62px); line-height: .95; letter-spacing: -.045em;
}
.stack__heading p { max-width: 28ch; margin-top: 26px; color: rgba(255,255,255,.68); font-size: clamp(15px, 1vw, 20px); line-height: 1.45; }
.stack__sound {
  position: absolute; z-index: 4; right: var(--pad); top: 8vh;
  min-height: 46px; padding: 0 18px; display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid rgba(255,255,255,.42); border-radius: 999px; color: #fff;
  background: rgba(12,12,12,.56); cursor: pointer; white-space: nowrap;
}
.stack__sound em { font-style: normal; font-size: 13px; }
.stack__sound-bars { height: 18px; display: inline-flex; align-items: center; gap: 3px; }
.stack__sound-bars i { width: 2px; height: 5px; border-radius: 99px; background: currentColor; }
.stack__sound[aria-pressed="true"] .stack__sound-bars i { animation: eq .6s ease-in-out infinite alternate; }
.stack__sound[aria-pressed="true"] .stack__sound-bars i:nth-child(2) { animation-delay: .12s; height: 14px; }
.stack__sound[aria-pressed="true"] .stack__sound-bars i:nth-child(3) { animation-delay: .24s; }
@keyframes eq { to { height: 16px; } }
.stack__stage {
  position: relative; z-index: 5;
  width: min(36vw, 440px); height: min(64vh, 560px);
  justify-self: center; overflow: hidden;
}
.stack__route-ticket {
  position: absolute; inset: 0; z-index: 8;
  padding: 28px 30px 32px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: #fff; background: var(--orange); border-radius: 22px;
  box-shadow: 0 28px 64px rgba(0,0,0,.28);
  pointer-events: none;
}
.stack__route-ticket span { font: 10px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; opacity: .78; }
.stack__route-ticket strong {
  font-size: clamp(24px, 2.5vw, 38px); line-height: 1.05; letter-spacing: -.04em;
}
.stack__route-ticket i { height: 1px; background: rgba(255,255,255,.55); transform-origin: left center; }
.stack__cards { position: relative; z-index: 3; width: 100%; height: 100%; opacity: 0; }
.stack__timeline { position: relative; z-index: 4; justify-self: end; display: flex; flex-direction: column; align-items: center; gap: 24px; opacity: 0; }
.scard {
  position: absolute; inset: 0; padding: 22px clamp(22px, 2.4vw, 36px) 30px;
  display: flex; flex-direction: column; overflow: hidden;
  border: 1px solid rgba(255,255,255,.34); border-radius: 22px;
  color: #fff; background: var(--orange);
  box-shadow: 0 16px 36px rgba(0,0,0,.22);
  transform-origin: 50% 0;
  backface-visibility: hidden;
}
.scard::after {
  content: ""; position: absolute; right: -18%; bottom: -18%;
  width: 58%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.28); border-radius: 50%;
}
.scard__no { font: 12px/1 var(--mono); letter-spacing: .08em; opacity: .82; }
.scard h3 { margin: 18px 0 0; font-size: clamp(26px, 2.4vw, 40px); line-height: .95; letter-spacing: -.04em; }
.scard__icon { width: 66px; height: 66px; margin: auto 0; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.scard p { position: relative; z-index: 2; max-width: 31ch; color: rgba(255,255,255,.85); font-size: 14px; line-height: 1.5; }
.stack__progress {
  position: absolute; left: 50%; top: 0; z-index: -1; width: 1px; height: 100%;
  background: rgba(255,255,255,.5); transform: translateX(-50%) scaleY(0); transform-origin: center top;
}
.stack__timeline .dot {
  width: 13px; height: 13px; border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%; background: rgba(255,255,255,.14);
}
.stack__timeline .dot.is-on { background: var(--orange); border-color: var(--orange); transform: scale(1.25); }

/* Projects */
.projects {
  position: relative; z-index: 20; margin-top: 0;
  padding: 16vh var(--pad) 10vh;
  border-radius: 34px 34px 0 0; background: var(--paper); overflow: visible;
}
.projects__heading {
  display: grid; grid-template-columns: .75fr 1.3fr; gap: 5vw;
  align-items: start; margin-bottom: 8vh;
}
.projects__heading > div:last-child { display: flex; flex-direction: column; align-items: flex-start; gap: 40px; }
.projects h2 { max-width: 18ch; font-size: clamp(38px, 3.7vw, 78px); line-height: .95; letter-spacing: -.045em; }
.project-image { display: none; }
.service-list { position: relative; z-index: 2; }
.service-row {
  --row-ease: cubic-bezier(.22, 1, .36, 1);
  position: relative;
  isolation: isolate;
  min-height: 168px;
  padding: 32px 18px 32px 44px;
  border-top: 1px solid rgba(12,12,12,.22);
  display: grid;
  grid-template-columns: 118px minmax(220px, 1.2fr) minmax(150px, .85fr) 48px;
  gap: clamp(16px, 2vw, 36px);
  align-items: center;
  color: rgba(12,12,12,.46);
  background: transparent;
  overflow: visible;
  z-index: 1;
  cursor: pointer;
  transition: background-color .38s var(--row-ease), color .38s var(--row-ease);
}
.service-row:last-child { border-bottom: 1px solid rgba(12,12,12,.22); }
.service-row::before {
  content: "";
  position: absolute;
  left: 12px; top: 18px; bottom: 18px; width: 3px;
  border-radius: 99px;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: center;
  pointer-events: none;
  z-index: 2;
  transition: transform .42s var(--row-ease);
}
.service-row:hover,
.service-row:focus-visible {
  color: var(--ink);
  background: #efe6da;
  outline: none;
  z-index: 5;
}
.service-row:hover::before,
.service-row:focus-visible::before { transform: scaleY(1); }
.service-row > span:first-child {
  font: 11px/1 var(--mono); letter-spacing: .06em; text-transform: uppercase;
}
.service-row h3 { font-size: clamp(28px, 2.4vw, 44px); letter-spacing: -.04em; color: inherit; }
.service-row p { color: rgba(12,12,12,.55); font-size: 15px; max-width: 34ch; margin-top: 8px; }
.service-row:hover p, .service-row:focus-visible p { color: var(--muted); }
.service-row__copy { position: relative; z-index: 1; max-width: 38ch; }
.service-row__tags {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; justify-content: flex-end;
  gap: 8px 0; font: 10px/1 var(--mono); letter-spacing: .04em; text-transform: uppercase;
}
.service-row__tags span + span::before { content: "/"; margin: 0 10px; color: var(--orange); }
.service-row > i {
  position: relative; z-index: 4;
  width: 40px; height: 40px; justify-self: end;
  display: grid; place-items: center;
  border-radius: 50%; background: #111; color: #fff;
  font-style: normal; font-size: 15px;
  transition: transform .38s var(--row-ease);
}
.service-row:hover > i, .service-row:focus-visible > i { transform: rotate(45deg); }
.service-row__shot {
  position: absolute; z-index: 3;
  left: auto; right: 22%; top: 50%;
  width: clamp(128px, 11vw, 188px);
  aspect-ratio: .78;
  margin: 0; border-radius: 16px; overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(18px, -38%, 0) rotate(-12deg) scale(.9);
  box-shadow: 0 18px 36px rgba(12,12,12,.16);
  transition: opacity .36s var(--row-ease), transform .5s var(--row-ease);
}
.service-row__shot img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.service-row:hover .service-row__shot,
.service-row:focus-visible .service-row__shot {
  opacity: 1;
  transform: translate3d(0, -50%, 0) rotate(-8deg) scale(1);
}

/* Case overlay */
.case {
  position: fixed; inset: 0; z-index: 8000;
  display: none;
  background: var(--paper);
}
.case.is-open { display: grid; grid-template-columns: 1.12fr .88fr; }
body.is-case-open,
body.is-order-open { overflow: hidden; }
.case__media { position: relative; margin: 0; overflow: hidden; background: #111; }
.case__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.case__panel {
  position: relative;
  padding: 88px clamp(28px, 4.2vw, 72px) 32px;
  display: flex; flex-direction: column; min-height: 0;
}
.case__tag {
  color: var(--orange); font: 11px/1 var(--mono);
  letter-spacing: .1em; text-transform: uppercase;
}
.case__close {
  position: absolute; top: 22px; right: 22px;
  width: 46px; height: 46px; border-radius: 50%;
  background: #111; color: #fff; font-size: 22px; line-height: 1; cursor: pointer;
}
.case__panel h2 {
  margin: 28px 0 22px; max-width: 11ch;
  font-size: clamp(40px, 4.6vw, 76px); line-height: .92; letter-spacing: -.045em;
}
.case__panel > p {
  max-width: 38ch; color: var(--muted);
  font-size: clamp(16px, 1.15vw, 20px); line-height: 1.4;
}
.case__facts {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  margin-top: auto; padding: 28px 0 8px;
  border-top: 1px solid var(--line);
}
.case__facts div { min-width: 0; padding-right: 16px; }
.case__facts div + div { border-left: 1px solid var(--line); padding-left: 18px; }
.case__facts dt {
  margin-bottom: 10px; color: var(--muted);
  font: 10px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase;
}
.case__facts dd { font-size: clamp(16px, 1.2vw, 22px); font-weight: 600; letter-spacing: -.03em; }
.case__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-top: 22px;
}
.case__bar > span { font: 12px/1 var(--mono); letter-spacing: .08em; color: var(--muted); }
.case__bar-actions {
  display: flex; align-items: center; justify-content: flex-end; gap: 10px; flex-wrap: wrap;
}
.case__next, .case__order {
  min-height: 56px; padding: 6px 8px 6px 22px;
  display: inline-flex; align-items: center; gap: 12px;
  border-radius: 999px;
  white-space: nowrap; cursor: pointer; font-size: 15px;
}
.case__next { background: #111; color: #fff; }
.case__order {
  background: var(--orange); color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 16px 34px rgba(232,68,34,.22);
}
.case__next i, .case__order i {
  width: 38px; height: 38px; flex-shrink: 0;
  display: grid; place-items: center; border-radius: 50%;
  font-style: normal;
}
.case__next i { background: #fff; color: #111; }
.case__order i { background: #fff; color: var(--orange); }

.order {
  position: fixed; inset: 0; z-index: 8600;
  display: none; align-items: center; justify-content: center;
  padding: 24px; background: rgba(12,12,12,.46);
}
.order.is-open { display: flex; }
.order__card {
  position: relative;
  width: min(640px, 100%);
  max-height: min(92vh, 840px);
  overflow: auto;
  padding: 36px 32px 32px;
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 0 28px 80px rgba(12,12,12,.28);
}
.order__close {
  position: absolute; top: 18px; right: 18px;
  width: 42px; height: 42px; border-radius: 50%;
  background: #111; color: #fff; font-size: 20px; line-height: 1; cursor: pointer;
}
.order__kicker {
  color: var(--orange); font: 11px/1 var(--mono);
  letter-spacing: .1em; text-transform: uppercase;
}
.order__card h2 {
  margin: 14px 0 12px;
  font-size: clamp(32px, 4vw, 48px); letter-spacing: -.045em; line-height: .95;
}
.order__lead { max-width: 46ch; color: var(--muted); font-size: 15px; line-height: 1.45; }
.order__interests {
  grid-column: 1 / -1;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.order__interests-label {
  margin: 0 0 8px;
  color: var(--orange);
  font: 11px/1 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.order__hint {
  margin: 0 0 12px;
  font: 13px/1.4 var(--sans);
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
}
.order__interest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.order__check {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 10px !important;
  min-height: 44px;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  color: var(--ink) !important;
  font: 14px/1.2 var(--sans) !important;
  letter-spacing: -.02em !important;
  text-transform: none !important;
  background: var(--paper);
}
.order__check.is-on {
  border-color: var(--orange);
  background: #efe6da;
}
.order__check input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: checkbox;
  width: 18px; height: 18px;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  accent-color: var(--orange);
  background: #fff;
  border: 1px solid #111;
}
.order__error {
  margin: 10px 0 0;
  font: 13px/1.35 var(--sans);
  letter-spacing: 0;
  text-transform: none;
  color: #c2410c;
}
.order__form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px 22px; margin-top: 26px;
}
.order__form label {
  display: flex; flex-direction: column; gap: 8px;
  font: 11px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
}
.order__form input:not([type="checkbox"]), .order__form textarea {
  border-bottom: 1px solid var(--line); padding: 10px 0 12px;
  font-size: 16px; font-family: var(--sans); color: var(--ink); text-transform: none; letter-spacing: 0;
  resize: vertical;
}
.order__form input:focus, .order__form textarea:focus { outline: none; border-color: var(--orange); }
.order__note { grid-column: 1 / -1; }
.order__form button[type="submit"] {
  grid-column: 1 / -1; justify-self: start; margin-top: 6px;
  min-height: 52px; padding: 0 26px; border-radius: 999px;
  background: var(--orange); color: #fff; font-weight: 600; cursor: pointer; white-space: nowrap;
  box-shadow: 0 16px 34px rgba(232,68,34,.22);
}
.order__thanks {
  grid-column: 1 / -1; margin: 4px 0 0;
  font: 14px/1.4 var(--sans); color: var(--orange); text-transform: none; letter-spacing: 0;
}

/* Supply */
.supply {
  position: relative; z-index: 21;
  padding: 12vh var(--pad) 10vh;
  background: var(--paper);
}
.supply__intro {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 6vw;
  align-items: end; margin-bottom: 5vh;
}
.supply__intro .kicker { grid-column: 1 / -1; }
.supply__intro h2 {
  max-width: 16ch; font-size: clamp(36px, 4.2vw, 78px);
  line-height: .92; letter-spacing: -.045em;
}
.supply__intro p { max-width: 46ch; color: var(--muted); font-size: clamp(16px, 1.15vw, 21px); line-height: 1.45; }
.supply__chips {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px;
  margin: 0 0 8vh; padding: 0;
}
.supply__chips li {
  min-height: 40px; padding: 0 16px; display: inline-flex; align-items: center;
  border: 1px solid var(--line); border-radius: 999px;
  font: 11px/1 var(--mono); letter-spacing: .06em; text-transform: uppercase;
}
.supply__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-bottom: 8vh;
}
.supply-card {
  min-height: 260px; padding: 28px 26px 30px;
  display: flex; flex-direction: column; gap: 16px;
  border: 1px solid var(--line); border-radius: 22px; background: #fff;
}
.supply-card span { font: 12px/1 var(--mono); letter-spacing: .08em; color: var(--orange); }
.supply-card h3 { font-size: clamp(24px, 2vw, 34px); letter-spacing: -.04em; line-height: 1.05; }
.supply-card p { margin-top: auto; color: var(--muted); font-size: 15px; line-height: 1.5; max-width: 32ch; }
.supply__docs {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 6vw;
  padding: 48px 42px; border-radius: 28px; background: #111; color: #fff;
}
.supply__docs-copy h3 {
  max-width: 14ch; margin: 18px 0 20px;
  font-size: clamp(28px, 2.8vw, 48px); line-height: .95; letter-spacing: -.04em;
}
.supply__docs-copy p { max-width: 42ch; color: rgba(255,255,255,.68); font-size: 16px; line-height: 1.5; }
.supply__note {
  margin-top: 22px !important; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.16);
  font-size: 13px !important; color: rgba(255,255,255,.48) !important;
}
.supply__list { list-style: none; display: grid; gap: 0; align-content: start; }
.supply__list li {
  min-height: 58px; padding: 16px 0 16px 28px;
  border-bottom: 1px solid rgba(255,255,255,.14);
  position: relative; font-size: 16px; letter-spacing: -.02em;
}
.supply__list li::before {
  content: ""; position: absolute; left: 0; top: 23px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--orange);
}

/* Story */
.story {
  padding: clamp(48px, 8vw, 100px) var(--pad);
  background: var(--orange); color: #fff;
}
.story__grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 6vw; align-items: end;
  margin: 28px 0 8vh;
}
.story h2 { font-size: clamp(42px, 5vw, 92px); line-height: .9; letter-spacing: -.05em; max-width: 10ch; }
.story__grid p { font-size: clamp(16px, 1.2vw, 22px); line-height: 1.35; max-width: 36ch; opacity: .92; }
.story__list { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.story__list span { font: 11px/1 var(--mono); letter-spacing: .1em; opacity: .75; }
.story__list h3 { margin: 16px 0 10px; font-size: 24px; letter-spacing: -.03em; }
.story__list p { opacity: .88; font-size: 15px; }

/* Closing */
.closing {
  position: relative; z-index: 5; height: 100svh;
  margin-top: -4vh; border-radius: 34px 34px 0 0; overflow: hidden; color: #fff;
}
.closing__sky {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, #7ec8e8 0%, #f4c27a 38%, #ff7a45 62%, #c45a32 100%);
}
.closing__sky::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 38%;
  background: linear-gradient(180deg, transparent, rgba(12, 40, 55, .35));
}
.closing__wordmark {
  position: absolute; z-index: 1; left: 50%; top: 2%; transform: translateX(-50%);
  font-size: clamp(120px, 20vw, 360px); line-height: 1; font-weight: 600;
  letter-spacing: -.057em; white-space: nowrap; color: rgba(255,255,255,.94);
}
.closing__cargo {
  position: absolute; z-index: 2; left: 50%; bottom: -18%;
  width: min(70vw, 900px); transform: translateX(-50%);
}
.closing__cargo img {
  width: 100%; height: auto;
  transform: translateZ(0);
  pointer-events: none;
}
.closing__content {
  position: absolute; z-index: 5; left: 50%; top: 49%;
  transform: translate(-50%, -50%) rotate(-2.5deg);
}
.closing__cta {
  min-width: 280px; min-height: 78px; padding: 8px 10px 8px 30px;
  display: inline-flex; align-items: center; justify-content: center; gap: 22px;
  border: 1px solid rgba(255,255,255,.82); border-radius: 999px;
  color: var(--orange); background: rgba(255,255,255,.92);
  box-shadow: 0 18px 55px rgba(93,44,22,.18);
  font-size: clamp(17px, 1.2vw, 30px); white-space: nowrap;
  transition: transform .38s cubic-bezier(.22,1,.36,1);
}
.closing__cta b { font-weight: 600; font-style: normal; }
.closing__cta span {
  width: 54px; height: 54px; flex-shrink: 0; display: grid; place-items: center;
  border-radius: 50%; color: #fff; background: var(--orange);
}
.closing__cta:hover { transform: translateY(-3px) rotate(.5deg); }

/* Footer */
.foot {
  --route-x: 0px;
  position: relative; z-index: 6; min-height: 0;
  margin-top: -10vh; padding: 11vh var(--pad) calc(24px + env(safe-area-inset-bottom));
  overflow: hidden; border-radius: 34px 34px 0 0;
  color: #f6f6f3; background: #101413;
}
.foot__threshold { position: absolute; left: var(--pad); right: var(--pad); top: 0; height: 11vh; pointer-events: none; }
.foot__threshold::before {
  content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: rgba(255,255,255,.23);
}
.foot__threshold span {
  position: absolute; top: calc(50% - 5px); left: 0; width: 10px; height: 10px;
  border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 7px rgba(255,90,54,.12);
}
.foot__status {
  min-height: 70px; display: grid; grid-template-columns: 1fr auto auto;
  gap: 34px; align-items: center; color: rgba(255,255,255,.56);
  font: 10px/1 var(--mono); letter-spacing: .06em; text-transform: uppercase;
}
.foot__brand { display: inline-flex; align-items: center; gap: 12px; color: #fff; font-weight: 600; font-size: 12px; }
.foot__desk { display: inline-flex; align-items: center; gap: 9px; }
.foot__desk i { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.foot__question {
  margin: 6vh 0 2vh; max-width: 90%; display: flex; flex-direction: column;
  font-size: clamp(72px, 14vw, 260px); font-weight: 600; line-height: .69;
  letter-spacing: -.075em; text-transform: uppercase;
}
.foot__question span:last-child { align-self: flex-end; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.7); }
.foot__route {
  position: relative; width: min(64%, 980px); min-height: 88px;
  margin: 8vh 0 7vh auto; display: grid; grid-template-columns: repeat(4, 1fr);
}
.foot__route-line { position: absolute; left: 0; right: 0; top: 5px; height: 1px; background: rgba(255,255,255,.26); }
.foot__locator {
  position: absolute; left: 0; top: 5px; width: 10px; height: 10px;
  border-radius: 50%; background: var(--orange);
  transform: translate3d(var(--route-x), -50%, 0);
  box-shadow: 0 0 0 7px rgba(255,90,54,.12);
}
.foot__stop { position: relative; padding-top: 28px; color: rgba(255,255,255,.52); font-size: clamp(13px, 1vw, 18px); }
.foot__stop i {
  position: absolute; top: 1px; left: 0; width: 9px; height: 9px;
  border: 1px solid rgba(255,255,255,.5); border-radius: 50%; background: #101413;
}
.foot__stop:hover, .foot__stop.is-current { color: #fff; }
.foot__dispatch { display: grid; grid-template-columns: 1fr auto; gap: 6vw; align-items: end; padding: 3vh 0 5vh; }
.foot__dispatch p { max-width: 42ch; color: rgba(255,255,255,.62); font-size: clamp(17px, 1.2vw, 24px); line-height: 1.35; }
.foot__launch {
  min-width: clamp(260px, 24vw, 420px); min-height: 92px;
  padding: 10px 12px 10px 32px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  border-radius: 999px; color: #101413; background: #fff; font-size: clamp(16px, 1.2vw, 22px);
  white-space: nowrap;
}
.foot__launch span { line-height: 1.15; }
.foot__launch i {
  width: 68px; height: 68px; display: grid; place-items: center; border-radius: 50%;
  color: #fff; background: var(--orange); font-style: normal; font-size: 25px;
  transition: transform .45s cubic-bezier(.22,1,.36,1);
}
.foot__launch:hover i { transform: rotate(45deg); }

.form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px 28px;
  max-width: 860px; margin: 0 0 8vh;
}
.form label {
  display: flex; flex-direction: column; gap: 8px;
  font: 11px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.55);
}
.form input {
  border-bottom: 1px solid rgba(255,255,255,.35); padding: 10px 0 12px;
  font-size: 16px; font-family: var(--sans); color: #fff; text-transform: none;
}
.form input:focus { outline: none; border-color: #fff; }
.form button {
  grid-column: 1 / -1; justify-self: start; margin-top: 8px;
  min-height: 52px; padding: 0 28px; border-radius: 999px;
  background: #fff; color: var(--orange); font-weight: 600; cursor: pointer;
  white-space: nowrap;
}
.form__thanks {
  grid-column: 1 / -1; margin: 4px 0 0;
  font: 13px/1.4 var(--sans); color: var(--orange); text-transform: none; letter-spacing: 0;
}

.foot__manifest {
  min-height: 72px; padding-top: 22px;
  display: grid; grid-template-columns: 1.1fr 1fr 1.5fr 1.2fr auto;
  gap: 24px; border-top: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.46); font: 9px/1.45 var(--mono); letter-spacing: .05em; text-transform: uppercase;
}
.foot__manifest a { color: rgba(255,255,255,.68); }
.foot__manifest a:hover { color: var(--orange); }

@media (max-width: 1100px) {
  .nav,
  .nav.is-fixed {
    left: max(12px, env(safe-area-inset-left));
    right: max(12px, env(safe-area-inset-right));
    top: max(10px, env(safe-area-inset-top));
    width: auto;
  }
  .nav.is-fixed { padding: 8px 10px 8px 12px; gap: 10px; }
  .nav__links {
    display: none;
    position: fixed;
    z-index: 210;
    inset: calc(72px + env(safe-area-inset-top)) max(12px, env(safe-area-inset-right)) auto max(12px, env(safe-area-inset-left));
    padding: 22px 22px 18px;
    background: #111;
    color: #fff;
    border-radius: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    max-height: calc(100svh - 96px);
    overflow: auto;
    box-shadow: 0 18px 40px rgba(0,0,0,.28);
  }
  .nav.is-open .nav__links { display: flex; }
  .nav__links a { font-size: 18px; }
  .nav__mobile-contact { display: inline-flex; color: var(--orange); }
  .nav__contact { display: none; }
  .menu-button { display: block; }
  .lang { margin-right: 2px; }
}

@media (max-width: 1000px) {
  .mission__intro { grid-template-columns: 1fr; }
  .mission__visual { width: min(58vw, 520px); }
  .feature { width: min(200px, 24vw); }
  .feature p { font-size: 13px; }
  .stack__ui { grid-template-columns: 1fr minmax(240px, 340px) 36px; gap: 24px; }
  .stack__stage { width: min(42vw, 340px); }
  .service-row { grid-template-columns: 110px 1fr 48px; }
  .service-row__tags { display: none; }
  .service-row__shot { right: 72px; }
  .story__grid, .story__list, .form, .foot__manifest, .projects__heading, .foot__dispatch,
  .supply__intro, .supply__docs {
    grid-template-columns: 1fr;
  }
  .supply__grid { grid-template-columns: 1fr 1fr; }
  .order__interest-grid { grid-template-columns: 1fr 1fr; }
  .foot__question { font-size: clamp(56px, 16vw, 140px); }
  .foot__route { width: 100%; }
  .case.is-open { grid-template-columns: 1fr; overflow: auto; }
  .case__media { min-height: 34vh; max-height: 36vh; }
  .case__panel { overflow: auto; }
}

@media (max-width: 900px) {
  :root { --pad: 20px; }
  .hero__title { font-size: clamp(44px, 14vw, 72px); max-width: 92vw; }
  .hero__title--top { left: 20px; top: max(88px, calc(64px + env(safe-area-inset-top))); }
  .hero__title--bottom { right: 20px; bottom: 32%; }
  .hero__cargo-path { width: min(78vw, 360px); top: 44%; }
  .hero__eyebrow, .showreel { display: none; }
  .hero__proof {
    left: 20px; right: 20px; top: auto;
    bottom: calc(78px + env(safe-area-inset-bottom));
    flex-direction: row; justify-content: space-between;
    text-align: left; gap: 10px;
  }
  .hero__proof strong { font-size: clamp(22px, 6vw, 32px); }
  .hero__proof span { font-size: 11px; }
  .hero__cta {
    left: 20px; right: 20px; width: auto;
    bottom: max(16px, env(safe-area-inset-bottom));
    justify-content: space-between;
  }

  .about__copy { max-width: 92vw; padding: 22vh 20px 8vh; }
  .about__copy h2 { font-size: clamp(22px, 6.4vw, 40px); }
  .about__line { overflow: visible; }
  .about__line > span { white-space: normal; }
  .about__field-word { font-size: clamp(56px, 22vw, 120px); }

  .mission { height: auto; }
  .mission__sticky {
    position: relative;
    height: auto;
    overflow: visible;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 16px;
    padding: calc(92px + env(safe-area-inset-top)) 20px 48px;
  }
  .mission__intro {
    position: relative;
    grid-column: 1 / -1;
    top: auto; left: auto; right: auto;
    display: flex; flex-direction: column; gap: 10px;
  }
  .mission__aside { max-width: none; font-size: 18px; }
  .mission__copy { justify-self: start; text-indent: 0; max-width: none; font-size: 16px; }
  .mission__visual {
    position: relative;
    grid-column: 1 / -1;
    left: auto; top: auto;
    width: min(86vw, 380px);
    margin: 8px auto 12px;
    opacity: 1;
  }
  .feature {
    position: relative;
    left: auto; right: auto; top: auto; bottom: auto;
    width: auto;
    opacity: 1;
    text-align: left;
    padding: 4px 0 8px;
  }
  .feature--right { text-align: left; }
  .feature--right p { margin-left: 0; }
  .feature strong { font-size: 18px; }
  .feature p { font-size: 13px; max-width: none; }
  .feature__trace { display: none; }

  .stack { height: 380vh; }
  .stack__ui {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    gap: 16px;
    padding: calc(88px + env(safe-area-inset-top)) 20px 20px;
    align-items: start;
  }
  .stack__heading { padding-top: 0; }
  .stack__heading h2 { font-size: clamp(28px, 8vw, 40px); max-width: 14ch; }
  .stack__heading p { display: none; }
  .stack__sound { top: auto; bottom: max(16px, env(safe-area-inset-bottom)); right: 16px; z-index: 6; }
  .stack__stage { width: min(88vw, 380px); height: min(48vh, 420px); justify-self: start; }
  .stack__route-ticket { display: flex; }
  .stack__route-ticket strong { white-space: normal; font-size: clamp(22px, 6vw, 32px); }
  .stack__timeline {
    position: absolute; left: 16px; right: auto; bottom: max(18px, env(safe-area-inset-bottom));
    flex-direction: row; justify-self: start; gap: 14px;
  }
  .stack__progress { display: none; }

  .projects { padding: 10vh 20px 7vh; border-radius: 24px 24px 0 0; }
  .projects h2 { font-size: clamp(28px, 8vw, 48px); }
  .service-row {
    grid-template-columns: auto 1fr 40px;
    padding: 22px 8px 22px 28px;
    min-height: 0;
  }
  .service-row h3 { font-size: clamp(22px, 6vw, 32px); }
  .service-row__shot { display: none; }
  .project-image { display: none; }

  .supply { padding: 8vh 20px 6vh; }
  .supply__intro h2 { max-width: 12ch; font-size: clamp(32px, 10vw, 52px); }
  .supply__docs { padding: 28px 22px; border-radius: 22px; }
  .supply-card { min-height: 0; }

  .story { padding-inline: 20px; }
  .closing { height: 100svh; }
  .closing__wordmark { font-size: clamp(64px, 22vw, 140px); top: 8%; }
  .closing__cta { min-width: 0; padding-left: 22px; font-size: 18px; white-space: normal; }
  .closing__cta span { width: 44px; height: 44px; }

  .foot { padding: 8vh 20px calc(20px + env(safe-area-inset-bottom)); }
  .foot__locator, .foot__route-line { display: none; }
  .foot__status { grid-template-columns: 1fr; gap: 10px; min-height: 0; }
  .foot__question { font-size: clamp(48px, 18vw, 88px); margin-top: 4vh; }
  .foot__route { display: grid; grid-template-columns: 1fr 1fr; width: 100%; min-height: 0; }
  .foot__dispatch { padding: 2vh 0 3vh; }
  .foot__launch { min-width: 0; width: 100%; white-space: normal; min-height: 72px; padding-left: 22px; }
  .foot__launch i { width: 52px; height: 52px; font-size: 20px; }

  .case__panel { padding: 72px 20px calc(20px + env(safe-area-inset-bottom)); }
  .case__panel h2 { font-size: clamp(32px, 10vw, 52px); margin: 18px 0 16px; }
  .case__facts { grid-template-columns: 1fr; gap: 16px; }
  .case__facts div + div { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 16px; }
  .case__bar { flex-direction: column; align-items: stretch; }
  .case__bar-actions { flex-direction: column; }
  .case__next, .case__order { width: 100%; justify-content: space-between; }

  .order { padding: 0; align-items: flex-end; }
  .order__card {
    width: 100%;
    max-height: min(94svh, 100%);
    padding: 28px 20px calc(22px + env(safe-area-inset-bottom));
    border-radius: 24px 24px 0 0;
  }
  .order__form { grid-template-columns: 1fr; }
  .order__form button[type="submit"] { width: 100%; justify-content: center; }
}

@media (max-width: 640px) {
  .mission__sticky { grid-template-columns: 1fr; }
  .supply__grid { grid-template-columns: 1fr; }
  .order__interest-grid { grid-template-columns: 1fr; }
  .hero__proof { gap: 8px; }
  .hero__cta { white-space: normal; }
  .hero__cta span { font-size: 14px; }
  .form button, .foot__launch { white-space: normal; }
}
