/* ═══════════════════════════════════════════════════════════
   VIA COURIER · v2 light design system
   white ground · logo orange #F46C22, the single accent
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg: #FFFFFF;
  --bg-soft: #F7F5F2;
  --bg-orange: #FEF1E8;
  --ink: #1B1917;
  --ink-soft: #55504B;
  --ink-dim: #A39D96;
  --orange: #F46C22;
  --orange-deep: #D95A12;
  --line: rgba(27, 25, 23, 0.10);
  --line-strong: rgba(27, 25, 23, 0.20);
  --shadow-soft: 0 24px 60px -30px rgba(27, 25, 23, 0.22);
  --shadow-lift: 0 34px 70px -30px rgba(27, 25, 23, 0.30);

  /* Frutiger throughout. Roles kept separate so any one can be
     re-pointed later without touching call sites. */
  --font-display: 'Frutiger', 'Segoe UI', 'Helvetica Neue', sans-serif;
  --font-body:    'Frutiger', 'Segoe UI', 'Helvetica Neue', sans-serif;
  --font-mono:    'Frutiger', 'Segoe UI', 'Helvetica Neue', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-snap: cubic-bezier(0.65, 0, 0.35, 1);
  --container: 1240px;
  --nav-h: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  -webkit-tap-highlight-color: transparent;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-kerning: normal;              /* activate the GPOS pairs */
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Frutiger Bold sets loose at display sizes — it was drawn for signage,
   read once at distance, not for 5rem headlines. Pull it in optically.
   Body sizes are left alone; the kern pairs handle those. */
.hero__title,
.motion__word,
.cta-band__title,
.page-hero__title { letter-spacing: -0.018em; }

::selection { background: var(--orange); color: #fff; }

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.mono {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 6vw; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

.text-orange { color: var(--orange); }

:focus-visible {
  outline: 2px solid var(--orange-deep);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── status dot ────────────────────────────────────────── */
.pulse-dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange); vertical-align: middle;
  animation: pulse 2s var(--ease-out) infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(244, 108, 34, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(244, 108, 34, 0); }
  100% { box-shadow: 0 0 0 0 rgba(244, 108, 34, 0); }
}

/* ── chips ─────────────────────────────────────────────── */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 15px; border-radius: 100px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink-soft);
  white-space: nowrap;
  transition: border-color 0.3s, color 0.3s;
}
.chip:hover { border-color: var(--orange); color: var(--orange-deep); }
.chip--orange { color: var(--orange-deep); border-color: rgba(244, 108, 34, 0.4); background: var(--bg-orange); }

/* ── buttons ───────────────────────────────────────────── */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px; border-radius: 100px;
  font-weight: 700; font-size: 0.95rem;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
              background 0.35s, color 0.35s, border-color 0.35s;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.35s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }
.btn--lg { padding: 18px 34px; font-size: 1rem; }

.btn--orange { background: var(--orange); color: #fff; font-weight: 700; }
.btn--orange:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -12px rgba(244, 108, 34, 0.55);
}
.btn--ghost { border: 1px solid var(--line-strong); color: var(--ink); background: #fff; }
.btn--ghost:hover { border-color: var(--orange); color: var(--orange-deep); transform: translateY(-2px); }
.btn--block { width: 100%; justify-content: center; }

/* ═══════════════ PRELOADER ═══════════════ */
.preloader {
  position: fixed; inset: 0; z-index: 4000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__inner { width: min(300px, 74vw); text-align: center; }
.preloader__logo { width: 130px; margin: 0 auto 26px; border-radius: 10px; box-shadow: var(--shadow-soft); }
.preloader__bar { height: 2px; background: var(--line); border-radius: 2px; overflow: hidden; }
.preloader__bar span {
  display: block; height: 100%; width: 100%;
  transform: scaleX(0); transform-origin: 0 0;
  background: linear-gradient(90deg, var(--orange), var(--orange-deep));
  transition: transform 0.3s var(--ease-out);
}
.preloader__meta { display: flex; justify-content: space-between; margin-top: 12px; color: var(--ink-dim); }

/* ═══════════════ CURSOR (heading arrow + trail) ═══════════════ */
.cursor { position: fixed; inset: 0; z-index: 3000; pointer-events: none; display: none; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }

.cursor__trail {
  position: absolute; top: 0; left: 0;
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(244, 108, 34, 0.5);
  transform: translate(-50%, -50%);
}
.cursor__trail--2 { width: 4px; height: 4px; background: rgba(244, 108, 34, 0.25); }
.cursor__ship { position: absolute; top: 0; left: 0; width: 30px; height: 30px; margin: -15px 0 0 -15px; }
.cursor__ship svg { width: 100%; height: 100%; overflow: visible; }
.cursor__ship path {
  fill: var(--ink); stroke: #fff; stroke-width: 1.5;
  transition: fill 0.25s;
}
.cursor__inner { transform-origin: 50% 50%; transition: transform 0.3s var(--ease-out); }
body.cursor-hover .cursor__ship path { fill: var(--orange); }
body.cursor-hover .cursor__inner { transform: scale(1.35); }
body.cursor-down .cursor__inner { transform: scale(0.8); }
.cursor__tag {
  position: absolute; top: 0; left: 0;
  padding: 6px 12px; border-radius: 100px;
  background: var(--ink); color: #fff;
  font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.18em;
  white-space: nowrap;
  opacity: 0; transform: translate(16px, 16px) scale(0.85);
  transition: opacity 0.25s, transform 0.3s var(--ease-out);
}
body.cursor-view .cursor__tag { opacity: 1; transform: translate(16px, 16px) scale(1); }

@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, input, select, textarea, label { cursor: none; }
}

/* ═══════════════ SCROLL PROGRESS ═══════════════ */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 100%;
  transform-origin: 0 0; transform: scaleX(0);
  background: linear-gradient(90deg, var(--orange), var(--orange-deep));
  z-index: 2500;
}

/* ═══════════════ NAV ═══════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s, transform 0.4s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}
.nav.is-hidden { transform: translateY(-100%); }
.nav__inner {
  max-width: var(--container); margin: 0 auto; padding: 0 6vw;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__brand { display: flex; align-items: center; }
.nav__logo {
  flex: none; width: 92px; border-radius: 8px;
  box-shadow: 0 6px 18px -8px rgba(244, 108, 34, 0.6);
  transition: transform 0.35s var(--ease-out);
}
.nav__brand:hover .nav__logo { transform: translateY(-2px); }
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  position: relative; font-size: 0.92rem; font-weight: 400; color: var(--ink-soft);
  padding: 6px 0; transition: color 0.3s;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--orange); transform: scaleX(0); transform-origin: 100% 0;
  transition: transform 0.4s var(--ease-out);
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--ink); }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: 0 0; }
.nav__side { display: flex; align-items: center; gap: 28px; }
.nav__cta { padding: 11px 22px; font-size: 0.88rem; }
.nav__burger { display: none; flex-direction: column; gap: 6px; padding: 10px; }
.nav__burger span {
  width: 24px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform 0.35s var(--ease-out);
}
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(255, 255, 255, 0.96); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; justify-content: center; gap: 7vh;
  padding: 0 8vw;
  opacity: 0; visibility: hidden; transition: opacity 0.45s var(--ease-out), visibility 0.45s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
  display: flex; align-items: baseline; gap: 18px;
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.7rem, 6.5vw, 2.4rem);
  padding: 14px 0; border-bottom: 1px solid var(--line);
  transform: translateY(24px); opacity: 0;
  transition: transform 0.6s var(--ease-out), opacity 0.6s, color 0.3s;
}
.mobile-menu nav a:hover, .mobile-menu nav a[aria-current="page"] { color: var(--orange); }
.mobile-menu nav a .mono { color: var(--orange); font-weight: 400; }
.mobile-menu.is-open nav a { transform: none; opacity: 1; }
.mobile-menu.is-open nav a:nth-child(2) { transition-delay: 0.06s; }
.mobile-menu.is-open nav a:nth-child(3) { transition-delay: 0.12s; }
.mobile-menu.is-open nav a:nth-child(4) { transition-delay: 0.18s; }
.mobile-menu.is-open nav a:nth-child(5) { transition-delay: 0.24s; }
.mobile-menu__foot { display: flex; gap: 28px; color: var(--ink-soft); }

/* ═══════════════ SCAN REVEAL ═══════════════ */
.reveal {
  clip-path: inset(-2% 101% -2% -1%);
  transform: translateX(-14px);
  transition: clip-path 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.is-in { clip-path: inset(-2% -1% -2% -1%); transform: none; }

/* ═══════════════ HERO FILM (scroll scrubbed) ═══════════════ */
.hero-film { position: relative; height: 160vh; }
.hero-film__sticky {
  position: sticky; top: 0; height: 100svh;
  display: flex; align-items: center;
  overflow: hidden; background: var(--bg-soft);
}
.hero-film__media { position: absolute; inset: 0; overflow: hidden; will-change: transform; }

/* ── route map ─────────────────────────────────── */
.hero-map { background: var(--bg-soft); }
.hero-map__scene { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-map__blocks rect { fill: #FFFFFF; stroke: rgba(27, 25, 23, 0.08); }
.hero-map__blocks rect.is-tint { fill: var(--bg-orange); }
.hero-map__plan {
  fill: none; stroke: var(--line-strong); stroke-width: 3;
  stroke-dasharray: 10 12; stroke-linecap: round;
  animation: dashFlow 2.4s linear infinite;
}
@keyframes dashFlow { to { stroke-dashoffset: -22; } }
.hero-map__run {
  fill: none; stroke: var(--orange); stroke-width: 5; stroke-linecap: round;
  filter: drop-shadow(0 2px 6px rgba(244, 108, 34, 0.35));
}
.hero-map__glyph rect { fill: #fff; stroke: var(--ink-soft); stroke-width: 2; }
.hero-map__glyph path { fill: none; stroke: var(--ink-soft); stroke-width: 2; stroke-linejoin: round; }
.hero-map__glyph .glyph__door { fill: var(--bg-orange); stroke-width: 1.5; }
.hero-map__stop .stop__ring { fill: none; stroke: var(--line-strong); stroke-width: 2; transition: stroke 0.4s; }
.hero-map__stop .stop__core { fill: #fff; stroke: var(--line-strong); stroke-width: 2; transition: fill 0.4s, stroke 0.4s; }
.hero-map__stop text {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.14em;
  text-anchor: middle; fill: var(--ink-dim); transition: fill 0.4s;
}
.hero-map__stop .stop__core { transform-box: fill-box; transform-origin: center; }
.hero-map__stop.is-lit .stop__ring { stroke: var(--orange); }
.hero-map__stop.is-lit .stop__core { fill: var(--orange); stroke: var(--orange); animation: stopPop 0.5s var(--ease-out); }
.hero-map__stop.is-lit text { fill: var(--orange-deep); }
@keyframes stopPop { 40% { transform: scale(1.9); } }
.hero-map__stamp { opacity: 0; transition: opacity 0.4s; }
.hero-map__stamp rect { fill: var(--orange); }
.hero-map__stamp text {
  font-family: var(--font-mono); font-size: 14px; letter-spacing: 0.12em;
  fill: #fff; text-anchor: middle;
}
.hero-map__stamp.is-on { opacity: 1; }
.hero-map__van rect { fill: var(--orange); stroke: #fff; stroke-width: 2; }
.hero-map__van .van__glass { fill: #fff; stroke: none; }
.hero-map__van .van__shadow { fill: rgba(27, 25, 23, 0.16); }
.hero-film__veil {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(96deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.72) 30%, rgba(255, 255, 255, 0) 60%),
              linear-gradient(0deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 30%);
}
.hero-film__content {
  position: relative; z-index: 2; width: 100%;
  max-width: var(--container); margin: 0 auto;
  padding: calc(var(--nav-h) + 20px) 6vw 8vh;
}
.hero__eyebrow { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.5rem, 6.4vw, 5rem);
  line-height: 1.05;
  margin-bottom: 26px;
}
.hero__title em { font-style: normal; color: var(--orange); }
.hero__line { display: block; overflow: hidden; }
.hero__line > span { display: inline-block; transform: translateY(110%); }
.is-loaded .hero__line > span { animation: heroRise 1.1s var(--ease-out) forwards; }
.is-loaded .hero__line:nth-child(2) > span { animation-delay: 0.12s; }
@keyframes heroRise { to { transform: translateY(0); } }
.hero__sub { max-width: 40ch; color: var(--ink-soft); font-size: 1.08rem; margin-bottom: 38px; }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-film__scrub {
  position: absolute; right: 6vw; bottom: 30px; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  color: var(--ink-dim);
}
.hero-film__scrub-track {
  width: 74px; height: 2px; background: var(--line-strong);
  border-radius: 2px; overflow: hidden;
}
.hero-film__scrub-track i {
  display: block; height: 100%; width: 100%;
  background: var(--orange);
  transform: scaleX(0); transform-origin: 0 0;
}

/* ═══════════════ 3D PARCEL ═══════════════ */
.scene3d { perspective: 1100px; }
.box3d {
  position: relative;
  width: var(--boxsize, 170px); height: var(--boxsize, 170px);
  transform-style: preserve-3d;
  transform: rotateX(-14deg) rotateY(-24deg);
}
.box3d__face {
  position: absolute; inset: 0;
  background: #FDFCFA;
  border: 1px solid rgba(27, 25, 23, 0.14);
  overflow: hidden;
}
/* orange tape stripe */
.box3d__face--front::before, .box3d__face--back::before, .box3d__face--top::before {
  content: ''; position: absolute; top: 0; bottom: 0;
  left: calc(50% - 13%); width: 26%;
  background: linear-gradient(180deg, var(--orange), var(--orange-deep));
  opacity: 0.95;
}
.box3d__face--front { transform: translateZ(calc(var(--boxsize, 170px) / 2)); }
.box3d__face--back { transform: rotateY(180deg) translateZ(calc(var(--boxsize, 170px) / 2)); }
.box3d__face--right { transform: rotateY(90deg) translateZ(calc(var(--boxsize, 170px) / 2)); background: #F3F1EC; }
.box3d__face--left { transform: rotateY(-90deg) translateZ(calc(var(--boxsize, 170px) / 2)); background: #F3F1EC; }
.box3d__face--top { transform: rotateX(90deg) translateZ(calc(var(--boxsize, 170px) / 2)); }
.box3d__face--bottom { transform: rotateX(-90deg) translateZ(calc(var(--boxsize, 170px) / 2)); background: #EBE8E2; }
.box3d__label {
  position: absolute; left: 10%; bottom: 12%; width: 44%;
  border-radius: 4px; box-shadow: 0 2px 8px rgba(27, 25, 23, 0.18);
}
.box3d__meta {
  position: absolute; right: 8%; top: 10%;
  font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.1em;
  color: var(--ink-dim); text-transform: uppercase; text-align: right; line-height: 1.9;
}
.box3d__barcode {
  position: absolute; right: 8%; bottom: 12%; width: 26%; height: 14%;
  background: repeating-linear-gradient(90deg, var(--ink) 0 2px, transparent 2px 5px, var(--ink) 5px 6px, transparent 6px 9px);
  opacity: 0.75;
}
.box3d__shadow {
  position: absolute; left: 50%; bottom: -34%;
  width: 130%; height: 26px; border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(27, 25, 23, 0.28), transparent 70%);
  transform: translateX(-50%);
}
/* ═══════════════ IN MOTION (dive through the O) ═══════════════ */
.motion { position: relative; height: 420vh; background: var(--bg-soft); }
.motion__sticky {
  position: sticky; top: 0; height: 100svh;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.motion__stage { position: relative; flex: 1; min-height: 0; }

/* the world behind the letter */
.motion__scene {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(58% 46% at 50% 46%, #FFFFFF 0%, rgba(255, 255, 255, 0) 72%),
    linear-gradient(180deg, #FBF9F6 0%, #F7F5F2 45.8%, #EDE9E2 46%, #F4F1EB 78%, #F0ECE5 100%);
  will-change: clip-path;
}
.motion__scene::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 180px rgba(27, 25, 23, 0.10);
}

/* the lens ring that carries the dive */
.motion__lens {
  position: absolute; z-index: 2; pointer-events: none;
  border: 4px solid var(--orange); border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(244, 108, 34, 0.16), inset 0 0 30px rgba(244, 108, 34, 0.18);
  transform: translate(-50%, -50%);
  opacity: 0;
  will-change: width, height, left, top, opacity;
}

/* the word you dive through */
.motion__title {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 26px; text-align: center;
  pointer-events: none;
  will-change: transform;
}
.motion__word {
  display: inline-block;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(3rem, 11.5vw, 9.5rem); line-height: 1;
  color: var(--ink);
  will-change: transform, opacity;
}
.motion__o { color: var(--orange); }
.motion__sub { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.65; }

/* checkpoints flown through */
.portal {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  will-change: transform, opacity;
}
/* forward-view warehouse */
.motion__env { position: absolute; inset: 0; opacity: 0; pointer-events: none; will-change: opacity; }

.dock__wall {
  position: absolute; left: 0; right: 0; top: 0; height: 46%;
  background:
    repeating-linear-gradient(90deg, transparent 0 158px, rgba(27, 25, 23, 0.05) 158px 160px),
    linear-gradient(180deg, #F7F4EF, #F1EDE6);
  border-bottom: 2px solid rgba(27, 25, 23, 0.16);
}
.dock__sign {
  position: absolute; left: 9%; top: 11%;
  padding: 11px 20px; border-radius: 10px;
  background: #fff; border: 2px solid rgba(27, 25, 23, 0.3);
  box-shadow: 0 12px 24px -14px rgba(27, 25, 23, 0.4);
  color: var(--ink-soft); white-space: nowrap;
}

/* the truck at the dock, rear opening facing the conveyor */
.docktruck { position: absolute; left: 58%; top: 62%; transform: translateY(-100%); opacity: 0; will-change: transform, opacity; }
.docktruck__body {
  position: relative; width: 360px; height: 210px; border-radius: 12px;
  background: linear-gradient(180deg, #FFFFFF, #F5F2EC);
  border: 2.5px solid rgba(27, 25, 23, 0.75);
}
.docktruck__stripe { position: absolute; left: 8px; right: 8px; top: 14px; height: 11px; border-radius: 6px; background: var(--orange); }
.docktruck__logo {
  position: absolute; right: 40px; top: 62px; width: 124px;
  border-radius: 10px; border: 1px solid rgba(27, 25, 23, 0.18);
  box-shadow: 0 6px 14px -8px rgba(27, 25, 23, 0.35);
}
.docktruck__opening {
  position: absolute; left: 8px; top: 36px; bottom: 10px; width: 96px;
  border-radius: 8px; border: 2px solid rgba(27, 25, 23, 0.55);
  background: linear-gradient(180deg, #45413C, #5C5750);
  overflow: hidden;
}
.docktruck__shutter {
  position: absolute; inset: 0; transform: translateY(-101%);
  background: repeating-linear-gradient(180deg, #F7F5F2 0 13px, #E5E1DA 13px 16px);
  border-bottom: 3px solid rgba(27, 25, 23, 0.4);
  will-change: transform;
}
.docktruck__cab {
  position: absolute; left: 368px; bottom: 0; width: 150px; height: 132px;
  border-radius: 10px 30px 8px 8px;
  background: linear-gradient(180deg, #FFFFFF, #F5F2EC);
  border: 2.5px solid rgba(27, 25, 23, 0.75);
}
.docktruck__cab::before {
  content: ''; position: absolute; right: 14px; top: 12px;
  width: 46px; height: 54px; border-radius: 4px 16px 4px 4px;
  background: #F4EFE8; border: 2px solid rgba(27, 25, 23, 0.5);
  transform: skewX(-7deg);
}
.docktruck__wheel {
  position: absolute; bottom: -26px; width: 58px; height: 58px; border-radius: 50%;
  background: #33302B;
}
.docktruck__wheel::before {
  content: ''; position: absolute; inset: 14px; border-radius: 50%;
  background: #fff; border: 3px solid rgba(27, 25, 23, 0.75);
}
.docktruck__wheel--a { left: 58px; }
.docktruck__wheel--b { left: 400px; }
.docktruck__shadow {
  position: absolute; left: 2%; right: -2%; bottom: -38px; height: 18px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(27, 25, 23, 0.26), transparent 72%);
}

/* the roller conveyor feeding the truck */
.conveyor { position: absolute; left: -2%; top: 62%; width: 58%; height: 96px; }
.conveyor__belt {
  position: absolute; left: 0; right: 0; top: 0; height: 16px; border-radius: 8px;
  background: repeating-linear-gradient(90deg, #45413C 0 26px, #57524B 26px 52px);
  border: 2px solid rgba(27, 25, 23, 0.6);
  animation: beltSlide 0.7s linear infinite;
}
@keyframes beltSlide { to { background-position: 52px 0; } }
.conveyor__roller {
  position: absolute; top: 24px; width: 22px; height: 22px; border-radius: 50%;
  background: #fff; border: 2.5px solid rgba(27, 25, 23, 0.6);
  animation: rollSpin 0.7s linear infinite;
}
.conveyor__roller::before {
  content: ''; position: absolute; left: 50%; top: 2px; bottom: 2px;
  width: 2.5px; margin-left: -1.25px; background: rgba(27, 25, 23, 0.5);
}
.conveyor__roller::after {
  content: ''; position: absolute; top: 50%; left: 2px; right: 2px;
  height: 2.5px; margin-top: -1.25px; background: rgba(27, 25, 23, 0.5);
}
@keyframes rollSpin { to { transform: rotate(360deg); } }
.conveyor__leg {
  position: absolute; top: 46px; width: 5px; height: 50px; border-radius: 3px;
  background: rgba(27, 25, 23, 0.4);
}

/* the gantry machine over the belt */
.gantry { position: absolute; left: 33%; top: 33%; width: 230px; height: 300px; pointer-events: none; }
.gantry__mast {
  position: absolute; left: 0; top: 0; height: 108%; width: 13px; border-radius: 7px;
  background: #fff; border: 2px solid rgba(27, 25, 23, 0.55);
}
.gantry__arm {
  position: absolute; left: 0; top: 0; width: 100%; height: 15px; border-radius: 8px;
  background-color: #fff;
  background-image: repeating-linear-gradient(45deg, var(--bg-orange) 0 10px, transparent 10px 20px);
  border: 2px solid rgba(27, 25, 23, 0.55);
}
.gantry__piston {
  position: absolute; left: 60%; top: 15px; width: 17px; height: 170px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(180deg, #EAE6DF, #D8D3CA);
  border: 2px solid rgba(27, 25, 23, 0.5);
  transform-origin: top; transform: scaleY(0.4);
  will-change: transform;
}
.gantry__piston::after {
  content: ''; position: absolute; left: -8px; right: -8px; bottom: -9px; height: 9px;
  border-radius: 4px; background: #45413C;
}
.gantry__lamp {
  position: absolute; right: -5px; top: -9px; width: 13px; height: 13px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px 2px rgba(244, 108, 34, 0.35);
  transition: box-shadow 0.2s;
}
.gantry__lamp.is-on { box-shadow: 0 0 20px 9px rgba(244, 108, 34, 0.6); }

/* side-view driving shot *//* side-view driving shot */
.drive__sun {
  position: absolute; right: 15%; top: 10%;
  width: 110px; height: 110px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 108, 34, 0.5), rgba(244, 108, 34, 0.07) 62%, transparent 75%);
}
.drive__cloud {
  position: absolute; width: 110px; height: 24px; border-radius: 100px;
  background: #fff;
  box-shadow: 26px 9px 0 -4px #fff, -22px 11px 0 -6px #fff, 0 10px 24px rgba(27, 25, 23, 0.06);
  will-change: transform;
}
.drive__sky { position: absolute; left: -14%; width: 132%; will-change: transform; }
.drive__sky--far { bottom: 45.5%; height: 22%; fill: rgba(27, 25, 23, 0.06); }
.drive__sky--near { bottom: 43.5%; height: 27%; fill: rgba(27, 25, 23, 0.11); }
.drive__road {
  position: absolute; left: 0; right: 0; top: 56.5%; height: 76px;
  background: linear-gradient(180deg, #E9E5DE, #E0DBD2);
  border-top: 2px solid rgba(27, 25, 23, 0.25);
}
.drive__road::after {
  content: ''; position: absolute; left: 0; right: 0; top: 46%; height: 5px;
  background: repeating-linear-gradient(90deg, #fff 0 46px, transparent 46px 96px);
  animation: roadMove 0.5s linear infinite;
}
@keyframes roadMove { to { background-position: -96px 0; } }
.drive__truck { position: absolute; left: 50%; top: 57.5%; width: min(540px, 76vw); will-change: transform; }
.tk__box { fill: #fff; stroke: rgba(27, 25, 23, 0.85); stroke-width: 4; }
.tk__boxshade { fill: rgba(27, 25, 23, 0.05); }
.tk__stripe { fill: var(--orange); }
.tk__seam { stroke: rgba(27, 25, 23, 0.2); stroke-width: 2.5; }
.tk__logoframe { fill: none; stroke: rgba(27, 25, 23, 0.2); stroke-width: 2; }
.tk__cab { fill: #fff; stroke: rgba(27, 25, 23, 0.85); stroke-width: 4; stroke-linejoin: round; }
.tk__glass { fill: #F4EFE8; stroke: rgba(27, 25, 23, 0.7); stroke-width: 3.5; stroke-linejoin: round; }
.tk__cabseam { stroke: rgba(27, 25, 23, 0.25); stroke-width: 2.5; }
.tk__handle { fill: rgba(27, 25, 23, 0.55); }
.tk__light { fill: var(--orange); }
.tk__skirt, .tk__flap { fill: #3E3A35; }
.tk__tire { fill: #33302B; }
.tk__rim { fill: #fff; stroke: rgba(27, 25, 23, 0.8); stroke-width: 3.5; }
.tk__spoke { stroke: rgba(27, 25, 23, 0.55); stroke-width: 2.5; }
.tk__spin { transform-box: fill-box; transform-origin: center; animation: wheelSpin 0.55s linear infinite; }
@keyframes wheelSpin { to { transform: rotate(360deg); } }
.tk__fender { fill: none; stroke: rgba(27, 25, 23, 0.85); stroke-width: 4; stroke-linecap: round; }
.tk__shadow { fill: rgba(27, 25, 23, 0.15); }
.tk__speed {
  fill: none; stroke: var(--orange); stroke-width: 4; stroke-linecap: round; opacity: 0.7;
  stroke-dasharray: 20 26;
  animation: speedDash 0.4s linear infinite;
}
@keyframes speedDash { to { stroke-dashoffset: -46; } }

/* arrival set piece */
.portal--home { width: 480px; height: 560px; }
.motion__facade {
  position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: 460px; height: 470px; border-radius: 16px;
  background: linear-gradient(180deg, #FDFCFA, #F6F3EE);
  border: 1px solid rgba(27, 25, 23, 0.14);
  box-shadow: 0 40px 70px -40px rgba(27, 25, 23, 0.35), inset 0 -30px 50px rgba(27, 25, 23, 0.04);
}
.motion__lamp {
  position: absolute; left: 50%; top: 34px; transform: translateX(-50%);
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 24px 10px rgba(244, 108, 34, 0.30);
}
.motion__doorframe {
  position: absolute; left: 50%; top: 68px; transform: translateX(-50%);
  width: 230px; height: 380px; border-radius: 12px 12px 0 0;
  background: #fff; border: 2px solid rgba(27, 25, 23, 0.30); padding: 10px;
  box-shadow: 0 24px 44px -30px rgba(27, 25, 23, 0.45);
}
.motion__door {
  position: relative; width: 100%; height: 100%;
  border-radius: 9px 9px 0 0;
  background: linear-gradient(180deg, #F5F2ED, #EFEBE4);
  border: 1px solid rgba(27, 25, 23, 0.22);
}
.motion__panel {
  position: absolute; left: 18%; width: 64%; border-radius: 6px;
  border: 1px solid rgba(27, 25, 23, 0.16);
  box-shadow: inset 0 2px 6px rgba(27, 25, 23, 0.08);
  background: rgba(255, 255, 255, 0.35);
}
.motion__panel--top { top: 17%; height: 26%; }
.motion__panel--bottom { top: 56%; height: 30%; }
.motion__knob {
  position: absolute; right: 14px; top: 49%;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 2px 5px rgba(27, 25, 23, 0.3);
}
.motion__slot {
  position: absolute; right: 34px; top: 49.6%;
  width: 0; height: 0;
}
.motion__number { position: absolute; top: 24px; left: 50%; transform: translateX(-50%); color: var(--ink-soft); }
.motion__step {
  position: absolute; left: 50%; top: 448px; transform: translateX(-50%);
  width: 270px; height: 16px; border-radius: 5px;
  background: linear-gradient(180deg, #EDE9E2, #E3DED5);
  border: 1px solid rgba(27, 25, 23, 0.18);
}
.motion__mat {
  position: absolute; left: 50%; top: 474px; transform: translateX(-50%);
  width: 176px; padding: 9px 0; text-align: center; border-radius: 7px;
  background: var(--bg-orange); border: 1px solid rgba(244, 108, 34, 0.45);
  box-shadow: 0 12px 22px -14px rgba(27, 25, 23, 0.4);
}
.motion__mat .mono { color: var(--orange-deep); font-size: 0.58rem; }

/* speed streaks radiating past the camera */
.motion__stream { position: absolute; inset: 0; opacity: 0; }
.motion__stream span {
  position: absolute; left: 50%; top: 50%;
  width: 4px; height: 110px; border-radius: 3px;
  background: linear-gradient(180deg, rgba(244, 108, 34, 0), rgba(244, 108, 34, 0.65) 40%, rgba(27, 25, 23, 0.22));
  transform-origin: 50% 0;
  transform: rotate(var(--a)) translateY(90px);
  animation: streamOut 0.8s linear infinite;
}
.motion__stream span:nth-child(2n) { animation-delay: 0.27s; height: 58px; }
.motion__stream span:nth-child(3n) { animation-delay: 0.53s; }
@keyframes streamOut {
  from { transform: rotate(var(--a)) translateY(70px) scaleY(0.5); opacity: 0; }
  25% { opacity: 1; }
  to { transform: rotate(var(--a)) translateY(75vmax) scaleY(2); opacity: 0; }
}

/* the parcel + proof */
.motion__box { position: absolute; left: 50%; top: 50%; opacity: 0; will-change: transform, opacity; }
.motion__stamp {
  position: absolute; left: 50%; top: 20%;
  transform: translateX(-50%) rotate(-6deg) scale(1.5); opacity: 0;
  padding: 11px 20px; border-radius: 100px;
  background: var(--orange); color: #fff;
  transition: opacity 0.3s, transform 0.45s var(--ease-out);
}
.motion__stamp.is-on { opacity: 1; transform: translateX(-50%) rotate(-6deg) scale(1); }
.motion__flash { position: absolute; inset: 0; background: #fff; opacity: 0; pointer-events: none; }
.motion__flash.is-on { animation: flashPop 0.5s var(--ease-out); }
@keyframes flashPop { 0% { opacity: 0.85; } 100% { opacity: 0; } }

/* chapter rail */
.motion__rail {
  position: relative; z-index: 4; width: 100%; max-width: var(--container); margin: 0 auto;
  padding: 0 6vw 26px;
  display: flex; align-items: flex-end; gap: 24px;
}
.motion__chapters { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; flex: 1; }
.motion__chapter {
  position: relative; text-align: left; padding-top: 14px;
  color: var(--ink-dim); transition: color 0.3s;
}
.motion__chapter:hover, .motion__chapter.is-live { color: var(--ink); }
.motion__chapter .mono { display: block; font-size: 0.58rem; color: var(--orange-deep); margin-bottom: 4px; }
.motion__chapter strong { font-weight: 700; font-size: 0.98rem; }
.motion__chapter-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--line); display: block;
}
.motion__chapter-bar i {
  position: absolute; inset: 0; display: block;
  background: var(--orange);
  transform: scaleX(0); transform-origin: 0 0;
}
.motion__tc { color: var(--ink-dim); padding-bottom: 2px; white-space: nowrap; }

/* ═══════════════ SECTIONS ═══════════════ */
.section { position: relative; padding: 120px 0; }
.section__label {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--orange-deep); margin-bottom: 20px;
}
.section__tick { width: 26px; height: 1px; background: currentColor; display: inline-block; }
.section__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.8rem, 4.2vw, 3rem); line-height: 1.14;
  margin-bottom: 20px;
}
.section__sub { color: var(--ink-soft); max-width: 52ch; font-size: 1.04rem; }
.section__head { max-width: 720px; margin-bottom: 60px; }

/* ═══════════════ SERVICE TEASERS (index) ═══════════════ */
.teasers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.teaser {
  position: relative; display: flex; flex-direction: column; gap: 14px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 20px; padding: 34px 30px;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.45s;
  overflow: hidden;
}
.teaser:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: rgba(244, 108, 34, 0.45); }
.teaser__code { color: var(--ink-dim); }
.teaser h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
.teaser p { color: var(--ink-soft); font-size: 0.95rem; flex: 1; }
.teaser__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.92rem; color: var(--orange-deep);
  transition: color 0.3s, gap 0.3s var(--ease-out);
}
.teaser__link svg { width: 16px; height: 16px; }
.teaser:hover .teaser__link { color: var(--orange); gap: 13px; }

/* ═══════════════ TICKER ═══════════════ */
.ticker {
  overflow: hidden; padding: 15px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: #fff;
}
.ticker__track {
  display: flex; width: max-content; white-space: nowrap;
  will-change: transform;
  animation: tickerMove 56s linear infinite;
}
.ticker__track .mono { color: var(--ink-dim); font-size: 0.66rem; }
@keyframes tickerMove { to { transform: translateX(-50%); } }

/* ═══════════════ STAT BAND ═══════════════ */
.statband {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.statband__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
  padding-top: 46px; padding-bottom: 46px;
}

/* ═══════════════ TILT GLARE ═══════════════ */
[data-tilt] { position: relative; }
[data-tilt]::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(320px circle at var(--gx, 50%) var(--gy, 50%), rgba(244, 108, 34, 0.10), transparent 62%);
  opacity: 0; transition: opacity 0.3s;
}
[data-tilt]:hover::after { opacity: 1; }

/* ═══════════════ INDUSTRIES ═══════════════ */
.inds { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.ind {
  display: flex; flex-direction: column; gap: 12px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 20px; padding: 32px 28px; overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.45s;
}
.ind:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: rgba(244, 108, 34, 0.45); }
.ind__top { display: flex; justify-content: space-between; align-items: center; }
.ind__icon {
  width: 50px; height: 50px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--bg-soft); color: var(--ink-soft);
  transition: background 0.4s, color 0.4s;
}
.ind:hover .ind__icon { background: var(--bg-orange); color: var(--orange-deep); }
.ind__icon svg { width: 25px; height: 25px; }
.ind__code { color: var(--ink-dim); }
.ind h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; }
.ind > p { color: var(--ink-soft); font-size: 0.94rem; flex: 1; }
.ind__list { list-style: none; margin-top: 6px; border-top: 1px solid var(--line); }
.ind__list li {
  position: relative; padding: 9px 0 9px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem; color: var(--ink-soft);
}
.ind__list li::before {
  content: ''; position: absolute; left: 2px; top: 15px;
  width: 7px; height: 7px; border-radius: 2px;
  background: var(--orange); transform: rotate(45deg);
}

/* ═══════════════ FAQ ═══════════════ */
.faq { max-width: 780px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 0; font-weight: 700; font-size: 1.02rem;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq__chev {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong); color: var(--ink-soft);
  transition: transform 0.4s var(--ease-out), background 0.3s, color 0.3s, border-color 0.3s;
}
.faq__chev svg { width: 14px; height: 14px; }
.faq details[open] .faq__chev {
  transform: rotate(45deg);
  background: var(--bg-orange); color: var(--orange-deep);
  border-color: rgba(244, 108, 34, 0.4);
}
.faq__body p { color: var(--ink-soft); padding: 0 0 22px; max-width: 62ch; }
.faq details[open] .faq__body { animation: faqIn 0.45s var(--ease-out); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } }

/* ═══════════════ CTA BAND ═══════════════ */
.cta-band {
  position: relative; padding: 130px 0; overflow: hidden; text-align: center;
  background: radial-gradient(52% 90% at 50% 110%, var(--bg-orange) 0%, transparent 70%);
}
.cta-band__inner { position: relative; display: flex; flex-direction: column; align-items: center; gap: 40px; }
.cta-band__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 5.2vw, 3.9rem); line-height: 1.1;
}
.cta-band__title em { font-style: normal; color: var(--orange); }

/* ═══════════════ PAGE HERO (subpages) ═══════════════ */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 90px) 0 70px;
  background:
    radial-gradient(50% 70% at 85% 20%, var(--bg-orange) 0%, transparent 60%),
    var(--bg-soft);
  overflow: hidden;
}
.page-hero__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.2rem, 5.4vw, 4rem); line-height: 1.08;
  max-width: 16ch; margin-bottom: 18px;
}
.page-hero__title em { font-style: normal; color: var(--orange); }
.page-hero .section__sub { font-size: 1.06rem; }
.page-hero__crumb { color: var(--ink-dim); margin-bottom: 26px; display: inline-flex; gap: 10px; align-items: center; }
.page-hero__crumb a { color: var(--orange-deep); }
.page-hero__crumb a:hover { color: var(--orange); }

/* ═══════════════ SERVICE DETAIL (services page) ═══════════════ */
/* all three tiers sit side by side so they can be compared on one screen */
.svcs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.svc {
  display: flex; flex-direction: column; gap: 14px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 24px; padding: 34px 30px 30px;
  scroll-margin-top: calc(var(--nav-h) + 20px);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.45s;
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: rgba(244, 108, 34, 0.45); }
.svc__head { display: flex; justify-content: space-between; align-items: center; }
.svc__icon {
  width: 62px; height: 62px; border-radius: 18px;
  display: grid; place-items: center;
  background: var(--bg-soft); color: var(--ink-soft);
  transition: background 0.4s, color 0.4s;
}
.svc:hover .svc__icon { background: var(--bg-orange); color: var(--orange-deep); }
.svc__icon svg { width: 32px; height: 32px; }
.svc__num { color: var(--ink-dim); }
.svc h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
}
.svc > p { color: var(--ink-soft); font-size: 0.95rem; }
.svc .btn { align-self: flex-start; margin-top: auto; }
.svc__list { list-style: none; margin-bottom: 8px; }
.svc__list li {
  position: relative; padding: 10px 0 10px 26px;
  border-bottom: 1px solid var(--line); font-size: 0.95rem; color: var(--ink-soft);
}
.svc__list li::before {
  content: ''; position: absolute; left: 2px; top: 17px;
  width: 8px; height: 8px; border-radius: 2px;
  background: var(--orange); transform: rotate(45deg);
}

/* ═══════════════ ABOUT PAGE ═══════════════ */
.stat { background: #fff; padding: 28px 26px 24px; }
.stat__num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--ink);
  display: block; line-height: 1.1;
}
.stat__num i { font-style: normal; color: var(--orange); }
.stat__label { color: var(--ink-dim); display: block; margin-top: 6px; font-size: 0.6rem; }

/* ── story rows: commitment / story / mission ───────────── */
.story { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; padding: 64px 0; }
.story + .story { border-top: 1px solid var(--line); }
/* reversed rows flip the ratio too, so the photo keeps the same width on every row */
.story:nth-child(even) { grid-template-columns: 1.15fr 0.85fr; }
.story:nth-child(even) .story__visual { order: 2; }
.story__visual {
  position: relative; border-radius: 24px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  overflow: hidden;
}
.story__img {
  width: 100%; height: 100%; min-height: 260px;
  object-fit: cover; aspect-ratio: 4 / 3;
  transition: transform 0.7s var(--ease-out);
}
.story__visual:hover .story__img { transform: scale(1.035); }
/* the label sits on the photo, so it carries its own ground */
.story__code {
  position: absolute; top: 18px; left: 18px; z-index: 1;
  padding: 7px 13px; border-radius: 100px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: var(--ink-soft);
}
.story__body h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 16px;
}
.story__body p { color: var(--ink-soft); max-width: 58ch; }

/* ═══════════════ COOKIE NOTICE ═══════════════ */
.cookie {
  position: fixed; z-index: 90;
  left: 6vw; right: 6vw; bottom: 22px;
  max-width: 620px; margin: 0 auto;
  display: none; gap: 20px; align-items: center; flex-wrap: wrap;
  padding: 20px 24px; border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-lift);
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.cookie.is-active { display: flex; }
.cookie.is-in { opacity: 1; transform: none; }
.cookie__text { flex: 1 1 260px; color: var(--ink-soft); font-size: 0.93rem; line-height: 1.6; }
.cookie__text a { color: var(--orange-deep); font-weight: 400; text-decoration: underline; text-underline-offset: 3px; }
.cookie__text a:hover { color: var(--orange); }
.cookie__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie .btn { padding: 12px 22px; font-size: 0.9rem; }

@media (max-width: 520px) {
  .cookie { left: 14px; right: 14px; bottom: 14px; padding: 20px; }
  .cookie__actions { width: 100%; }
  .cookie__actions .btn { flex: 1; justify-content: center; }
}

/* ═══════════════ LEGAL PAGES ═══════════════ */
.legal { padding: 50px 0 120px; }
.legal article { max-width: 760px; }
.legal__updated { display: block; color: var(--ink-dim); margin-bottom: 34px; }
.legal h2 {
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem;
  margin: 44px 0 14px;
}
.legal p, .legal li { color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 12px; }
.legal ul { padding-left: 22px; margin-bottom: 16px; }
.legal a { color: var(--orange-deep); font-weight: 400; }
.legal a:hover { color: var(--orange); }

/* ═══════════════ CONTACT PAGE ═══════════════ */
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: start; }
.contact__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 40px; }
.contact__card {
  display: flex; flex-direction: column; gap: 8px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 16px; padding: 22px;
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
}
a.contact__card:hover { transform: translateY(-4px); border-color: var(--orange); box-shadow: var(--shadow-soft); }
.contact__card-k { color: var(--orange-deep); font-size: 0.58rem; }
.contact__card-v { font-weight: 700; font-size: 1rem; line-height: 1.45; }

.contact__form {
  background: #fff;
  border: 1px solid var(--line); border-radius: 24px; padding: 40px;
  box-shadow: var(--shadow-soft);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form__field { position: relative; margin-bottom: 18px; }
.form__field input, .form__field textarea, .form__field select {
  width: 100%;
  background: var(--bg-soft); border: 1px solid var(--line-strong);
  border-radius: 12px; padding: 24px 18px 10px; color: var(--ink);
  font: inherit; font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form__field textarea { resize: vertical; min-height: 110px; }
.form__field input:-webkit-autofill,
.form__field textarea:-webkit-autofill,
.form__field select:-webkit-autofill {
  -webkit-box-shadow: inset 0 0 0 1000px var(--bg-soft);
  -webkit-text-fill-color: var(--ink);
}
.form__field select {
  padding: 17px 18px; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23D95A12' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 18px center;
}
.form__field select:invalid { color: var(--ink-dim); }
.form__field input:focus, .form__field textarea:focus, .form__field select:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(244, 108, 34, 0.12);
}
.form__field label:not(.form__select-label) {
  position: absolute; left: 18px; top: 17px;
  color: var(--ink-dim); font-size: 0.95rem; pointer-events: none;
  transition: transform 0.25s var(--ease-out), font-size 0.25s, color 0.25s;
  transform-origin: 0 0;
}
.form__field input:focus + label,
.form__field input:not(:placeholder-shown) + label,
.form__field textarea:focus + label,
.form__field textarea:not(:placeholder-shown) + label {
  transform: translateY(-10px); font-size: 0.6rem;
  color: var(--orange-deep); letter-spacing: 0.12em; text-transform: uppercase;
  font-family: var(--font-mono);
}
.form__select-label {
  position: absolute; right: 44px; top: 21px; color: var(--ink-dim); pointer-events: none;
  font-size: 0.58rem;
}
.form__note { text-align: center; color: var(--ink-dim); margin-top: 16px; font-size: 0.62rem; }
.form__note a { color: var(--orange-deep); text-decoration: underline; text-underline-offset: 3px; }
.contact__form.is-sent .form__note { color: var(--orange-deep); }
/* offscreen rather than display:none, so bots still see it as fillable */
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact__form button[type="submit"][disabled] { opacity: 0.6; cursor: progress; transform: none; }

/* ═══════════════ FOOTER ═══════════════ */
.footer { border-top: 1px solid var(--line); background: var(--bg-soft); }
.footer__top {
  display: flex; justify-content: space-between; gap: 50px; flex-wrap: wrap;
  padding: 70px 0 50px;
}
.footer__brand { max-width: 260px; }
.footer__logo { width: 120px; border-radius: 10px; box-shadow: 0 10px 26px -12px rgba(244, 108, 34, 0.55); }
.footer__tag { color: var(--ink-dim); margin-top: 18px; font-size: 0.92rem; }
.footer__cols { display: flex; gap: 70px; flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col-k { color: var(--orange-deep); margin-bottom: 8px; font-size: 0.6rem; }
.footer__col a { color: var(--ink-soft); font-size: 0.94rem; width: fit-content; transition: color 0.3s, transform 0.3s var(--ease-out); }
.footer__col a:hover { color: var(--orange); transform: translateX(4px); }
.footer__bar {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 26px;
  border-top: 1px solid var(--line); padding: 24px 0;
  color: var(--ink-dim);
}
.footer__bar > span.mono { justify-self: center; }
.footer__bar .mono { font-size: 0.6rem; }
.footer__credit {
  justify-self: start;
  color: var(--ink-dim); font-size: 0.6rem; text-transform: none;
  transition: color 0.2s, text-shadow 0.2s;
}
.footer__credit:hover { color: var(--orange); text-shadow: 0 0 14px rgba(244, 108, 34, 0.55); }
.footer__credit:active { color: var(--orange-deep); }
.footer__top-btn { justify-self: end; letter-spacing: 0.14em; font-size: 0.6rem; color: var(--ink-dim); transition: color 0.3s; }
.footer__top-btn:hover { color: var(--orange); }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1080px) {
  .teasers { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; gap: 56px; }
  /* the nth-child rule above out-specifies a bare .story, so reset both here */
  .story, .story:nth-child(even) { grid-template-columns: 1fr; gap: 30px; padding: 48px 0; }
  .story:nth-child(even) .story__visual { order: 0; }
  .inds { grid-template-columns: 1fr 1fr; }
  .svcs { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 820px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__logo { width: 80px; }
  .section { padding: 84px 0; }
  .hero-film { height: 150vh; }
  .hero-film__veil {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.6) 45%, rgba(255, 255, 255, 0) 75%);
  }
  .hero-film__scrub { display: none; }
  .hero-map__stop text { display: none; }
  .statband__grid { grid-template-columns: 1fr 1fr; gap: 26px; padding-top: 36px; padding-bottom: 36px; }
  .motion { height: 360vh; }
  .motion__stage { --boxsize: 120px; }
  .gantry { left: 26%; }
  .motion__sub { font-size: 0.9rem; }
  .motion__chapters { gap: 10px; }
  .motion__chapter strong { font-size: 0.8rem; }
  .motion__tc { display: none; }
  .footer__bar { grid-template-columns: 1fr; gap: 12px; text-align: center; }
  .footer__credit, .footer__top-btn, .footer__bar > span.mono { justify-self: center; }
  .contact__form { padding: 28px 22px; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .contact__cards { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .btn--lg { padding: 15px 26px; font-size: 0.92rem; }
  .inds { grid-template-columns: 1fr; }
  .motion__chapter .mono { display: none; }
  .dock__sign { display: none; }
  .footer__cols { gap: 40px; }
}

/* ═══════════════ REDUCED MOTION ═══════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .hero__line > span { clip-path: none !important; opacity: 1 !important; transform: none !important; }
  .cursor { display: none; }
  body, a, button, input, select, textarea, label { cursor: auto; }
  .motion { height: auto; }
  .motion__sticky { position: static; height: auto; min-height: 100svh; }
  .motion__stage { min-height: 760px; }
  .motion__title { position: relative; inset: auto; padding: 100px 6vw 10px; }
  .motion__scene { clip-path: none !important; }
  .portal--home { display: block; opacity: 1; transform: translate(-50%, -50%) scale(0.8); }
  .motion__stream, .motion__lens, .motion__env { display: none; }
  .motion__stamp { opacity: 1; transform: translateX(-50%) rotate(-6deg) scale(1); }
  .motion__box { opacity: 1; transform: translate(-50%, -100%) translateY(150px) scale(0.62); }
  .hero-map__stamp { opacity: 1; }
  .hero-film { height: auto; }
  .hero-film__sticky { position: static; height: auto; min-height: 100svh; }
}
