/* ================================================================
   BFC - A CINEMATIC LOGISTICS BRAND SITE
   Photography first. Editorial paper, deep ink frames, one orange.
   Motion like a film: slow zoom, crossfade, drawn route lines.
   Fraunces (display) - Archivo (text) - IBM Plex Mono (labels)
   ================================================================ */

:root {
  --paper: #F1EDE5;
  --paper-2: #E9E4D9;
  --ink: #111318;
  --ink-2: #1A1D23;
  --ink-dim: #575C63;
  --bone: #EDE8DE;
  --bone-dim: #9C978C;
  --orange: #F2600C;
  --amber: #FFB25E;
  --rule: rgba(17, 19, 24, 0.16);
  --rule-ink: rgba(237, 232, 222, 0.16);
  --font-display: 'Nunito', 'Manrope', 'Segoe UI', sans-serif;
  --font-text: 'Nunito', 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  --font-mono: 'Quicksand', 'Nunito', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --wrap: min(1360px, calc(100% - 48px));
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-text);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: rgba(242, 96, 12, 0.25); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
a, button { touch-action: manipulation; }

:focus-visible { outline: 3px solid rgba(242, 96, 12, 0.85); outline-offset: 3px; }

/* film grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9980;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

.wrap { width: var(--wrap); margin: 0 auto; }

.skip-link {
  position: fixed;
  top: -60px; left: 16px;
  z-index: 10001;
  background: var(--orange);
  color: #fff;
  padding: 12px 20px;
  font-weight: 700;
  transition: top 0.3s;
}
.skip-link:focus { top: 16px; }

/* ================================================================
   TYPE
   ================================================================ */

.display {
  font-family: var(--font-display);
  font-weight: 540;
  font-variation-settings: "opsz" 140;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.display em { font-style: italic; font-weight: 400; color: var(--orange); }

.mono {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.mono.accent { color: var(--orange); }

.lede { font-size: 17px; line-height: 1.75; max-width: 52ch; color: var(--ink-dim); }

/* ================================================================
   TOP BAR + FULLSCREEN MENU
   ================================================================ */

.bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(20px, 3.5vw, 44px);
  background: rgba(247, 243, 235, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow 0.4s;
}

.bar.scrolled {
  box-shadow: 0 10px 34px rgba(17, 19, 24, 0.08);
}

/* over the film hero, the bar is light-on-dark until scrolled */
body[data-page="home"] .bar:not(.scrolled) .menu-btn { color: var(--ink); }

.bar-logo {
  display: inline-block;
  background: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  border: 1.5px solid var(--ink);
  box-shadow: 0 2px 0 var(--ink);
}

.bar-logo img { height: 28px; width: auto; }

.bar-right { display: flex; align-items: center; gap: 20px; }

.bar-cta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: var(--orange);
  padding: 13px 24px;
  transition: background 0.3s, transform 0.3s var(--ease);
}

.bar-cta:hover { background: #D9550A; transform: translateY(-2px); }

.menu-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 10px 4px;
  transition: color 0.4s;
}

.menu-btn .lines { display: grid; gap: 5px; width: 26px; }
.menu-btn .lines span { height: 2px; background: currentColor; transition: width 0.3s; }
.menu-btn:hover .lines span:nth-child(2) { width: 60%; }

.menu {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: var(--ink);
  color: var(--bone);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 56px);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.7s var(--ease);
  visibility: hidden;
}

body.menu-open .menu { clip-path: inset(0 0 0 0); visibility: visible; }
body.menu-open { overflow: hidden; }

.menu-top { display: flex; justify-content: space-between; align-items: center; }

.menu-close {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone);
  padding: 10px;
}

.menu-close:hover { color: var(--orange); }

.menu-links { list-style: none; display: grid; gap: 2px; }

.menu-links a {
  display: flex;
  align-items: baseline;
  gap: 22px;
  font-family: var(--font-display);
  font-weight: 480;
  font-size: clamp(34px, 6.4vh, 72px);
  line-height: 1.12;
  color: var(--bone);
  opacity: 0;
  transform: translateY(26px);
  transition: color 0.3s;
}

body.menu-open .menu-links a { animation: menu-in 0.7s var(--ease) forwards; }
body.menu-open .menu-links li:nth-child(1) a { animation-delay: 0.16s; }
body.menu-open .menu-links li:nth-child(2) a { animation-delay: 0.22s; }
body.menu-open .menu-links li:nth-child(3) a { animation-delay: 0.28s; }
body.menu-open .menu-links li:nth-child(4) a { animation-delay: 0.34s; }
body.menu-open .menu-links li:nth-child(5) a { animation-delay: 0.40s; }
body.menu-open .menu-links li:nth-child(6) a { animation-delay: 0.46s; }

@keyframes menu-in { to { opacity: 1; transform: none; } }

.menu-links a i {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--orange);
}

.menu-links a:hover, .menu-links a.active { color: var(--orange); }

.menu-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

.menu-foot a:hover { color: var(--orange); }

/* ================================================================
   SCENE I - THE FILM HERO (real photography, slow cinema)
   ================================================================ */

.film {
  position: relative;
  height: 100svh;
  overflow: hidden;
  background: var(--ink);
  color: var(--bone);
  perspective: 1200px;
  isolation: isolate;
}

.film-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease;
  z-index: 0;
}

.film-frame.on { opacity: 1; }

.film-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(1.02) contrast(1.05);
  transform: scale(1.02);
}

.film-frame.on img { animation: kenburns 9s ease-out forwards; }

@keyframes kenburns { from { transform: scale(1.02); } to { transform: scale(1.12); } }

/* cinematic grade */
.film::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to top, rgba(17, 19, 24, 0.82) 0%, rgba(17, 19, 24, 0.25) 34%, transparent 55%),
    linear-gradient(to bottom, rgba(17, 19, 24, 0.5), transparent 26%);
  pointer-events: none;
}

.film::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(circle at 74% 42%, rgba(232, 182, 111, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(12, 18, 25, 0.84), rgba(12, 18, 25, 0.42), rgba(12, 18, 25, 0.18)),
    repeating-linear-gradient(90deg, rgba(245, 239, 228, 0.055) 0 1px, transparent 1px 118px);
  mix-blend-mode: screen;
}

.landing-3d {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0.92;
  pointer-events: none;
}

.hero-depth-ui {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  transform-style: preserve-3d;
}

.hud-line {
  position: absolute;
  left: 50%;
  bottom: -12vh;
  width: 1px;
  height: 82vh;
  background: linear-gradient(to top, rgba(232, 182, 111, 0), rgba(232, 182, 111, 0.82), rgba(232, 182, 111, 0));
  transform-origin: bottom center;
  opacity: 0.52;
  filter: drop-shadow(0 0 12px rgba(232, 182, 111, 0.55));
}

.hud-line.h1 { transform: rotateZ(-34deg) rotateX(66deg) translateZ(90px); }
.hud-line.h2 { transform: rotateZ(0deg) rotateX(66deg) translateZ(120px); }
.hud-line.h3 { transform: rotateZ(34deg) rotateX(66deg) translateZ(90px); }

.hud-card {
  position: absolute;
  z-index: 5;
  min-width: 146px;
  padding: 16px 18px;
  border: 1px solid rgba(245, 239, 228, 0.22);
  border-radius: 22px;
  background: rgba(245, 239, 228, 0.1);
  color: var(--bone);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  animation: hud-float 5.5s var(--ease) infinite alternate;
}

.hud-card b {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.hud-card span {
  display: block;
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.68);
}

.hud-a {
  right: clamp(22px, 8vw, 150px);
  top: 22vh;
}

.hud-b {
  right: clamp(70px, 15vw, 280px);
  bottom: 20vh;
  animation-delay: 0.8s;
}

.hud-c {
  right: clamp(18px, 5vw, 80px);
  bottom: 38vh;
  animation-delay: 1.4s;
}

@keyframes hud-float {
  from { transform: translate3d(0, -8px, 0) rotateX(0deg); }
  to { transform: translate3d(0, 12px, 0) rotateX(3deg); }
}

.film-inner {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 6;
  width: var(--wrap);
  margin: 0 auto;
  padding-bottom: clamp(40px, 8vh, 90px);
}

.film-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: var(--amber);
}

.film-kicker .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(242, 96, 12, 0.5); }
  50% { box-shadow: 0 0 0 9px rgba(242, 96, 12, 0); }
}

.film h1 {
  font-size: clamp(48px, 7.4vw, 116px);
  color: #F6F2E9;
  max-width: 10.5em;
  text-wrap: balance;
}

.film h1 em { color: var(--amber); }

.film .lede { color: rgba(237, 232, 222, 0.8); margin-top: 24px; max-width: 46ch; }

.film-actions { display: flex; align-items: center; gap: 30px; margin-top: 38px; flex-wrap: wrap; }

/* frame indicator - like a film counter */
.film-counter {
  position: absolute;
  right: clamp(20px, 3.5vw, 44px);
  bottom: clamp(40px, 8vh, 90px);
  z-index: 6;
  display: grid;
  gap: 10px;
  justify-items: end;
}

.film-counter .mono { color: var(--bone-dim); }

.film-dots { display: flex; gap: 8px; }

.film-dots button {
  width: 34px; height: 3px;
  background: rgba(237, 232, 222, 0.25);
  transition: background 0.3s;
}

.film-dots button.active { background: var(--amber); }

/* headline reveal */
.film .rise { overflow: hidden; }
.film .rise > span { display: block; transform: translateY(110%); transition: transform 1.1s var(--ease); }
.film.ready .rise > span { transform: none; }
.film.ready .rise.d2 > span { transition-delay: 0.12s; }
.film.ready .rise.d3 > span { transition-delay: 0.24s; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: var(--orange);
  padding: 19px 36px;
  box-shadow: 0 14px 34px rgba(242, 96, 12, 0.3);
  transition: background 0.3s, transform 0.35s var(--ease), box-shadow 0.35s;
}

.btn:hover { background: #D9550A; transform: translateY(-3px); box-shadow: 0 20px 44px rgba(242, 96, 12, 0.38); }
.btn .arr { transition: transform 0.35s var(--ease); }
.btn:hover .arr { transform: translateX(5px); }

.link-line {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 6px;
  border-bottom: 2px solid var(--orange);
}

.link-line:hover { color: var(--orange); }
.link-line.light { color: #F6F2E9; }

/* ================================================================
   SCENE II - THE STATEMENT
   ================================================================ */

.act-statement { padding: clamp(110px, 16vh, 200px) 0; }

.statement { display: grid; gap: 0.1em; }

.statement .line {
  font-family: var(--font-display);
  font-weight: 540;
  font-size: clamp(42px, 7.2vw, 120px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  overflow: hidden;
}

.statement .line span { display: block; transform: translateY(110%); transition: transform 1.2s var(--ease); }
.statement.in .line span { transform: none; }
.statement.in .line:nth-child(2) span { transition-delay: 0.16s; }
.statement.in .line:nth-child(3) span { transition-delay: 0.32s; }

.statement .line.indent { padding-left: clamp(40px, 14vw, 260px); }
.statement .line em { font-style: italic; font-weight: 400; color: var(--orange); }

.statement-foot { margin-top: 44px; padding-left: clamp(40px, 14vw, 260px); max-width: 520px; }

/* ================================================================
   SCENE III - THE SPREAD (editorial photo composition)
   ================================================================ */

.act-spread { position: relative; padding: clamp(40px, 8vh, 110px) 0 clamp(110px, 15vh, 190px); }

.spread { position: relative; height: clamp(640px, 118vh, 1100px); }

.plate { position: absolute; overflow: hidden; background: var(--ink); }

.plate img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.05);
  transform: scale(1.1);
  will-change: transform;
}

.plate .cap {
  position: absolute;
  z-index: 2;
  left: 18px; bottom: 14px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #F5F1E8;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
}

.plate-a { left: 0; top: 0; width: 64%; height: 58%; }
.plate-b { right: 6%; top: 34%; width: 42%; height: 44%; box-shadow: -30px 40px 80px rgba(17, 19, 24, 0.28); }
.plate-c { left: 12%; bottom: 0; width: 34%; height: 34%; box-shadow: 0 40px 90px rgba(17, 19, 24, 0.3); }

.spread-caption {
  position: absolute;
  left: 68%;
  top: 4%;
  width: min(300px, 26vw);
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--ink-dim);
}

.spread-caption .mono { display: block; margin-bottom: 14px; }

/* ================================================================
   SCENE IV - THE CHAPTERS (services as film scenes)
   ================================================================ */

.chapter {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.chapter.ink { background: var(--ink); color: var(--bone); }
.chapter.paper { background: var(--paper-2); color: var(--ink); }

.ch-media { position: absolute; top: 0; bottom: 0; width: 58%; overflow: hidden; }

.chapter:nth-child(odd) .ch-media { right: 0; clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%); }
.chapter:nth-child(even) .ch-media { left: 0; clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%); }

.ch-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.06);
  transform: scale(1.1);
  will-change: transform;
}

.chapter.ink .ch-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17, 19, 24, 0.35), transparent 45%);
}

.ch-num {
  position: absolute;
  z-index: 2;
  top: 8vh;
  font-family: var(--font-text);
  font-weight: 700;
  font-size: clamp(120px, 20vh, 220px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px currentColor;
  opacity: 0.3;
  user-select: none;
}

.chapter:nth-child(odd) .ch-num { left: clamp(20px, 4vw, 60px); }
.chapter:nth-child(even) .ch-num { right: clamp(20px, 4vw, 60px); }

.ch-body {
  position: relative;
  z-index: 3;
  width: 46%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10vh clamp(24px, 4vw, 64px) 12vh;
}

.chapter:nth-child(even) .ch-body { margin-left: auto; align-items: flex-end; text-align: right; }

.ch-kicker { margin-bottom: 18px; color: var(--orange); }

.ch-title {
  font-family: var(--font-display);
  font-weight: 520;
  font-size: clamp(40px, 5.6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  max-width: 8em;
}

.chapter:nth-child(even) .ch-title { max-width: 9em; }

.ch-text { margin-top: 22px; font-size: 15.5px; line-height: 1.75; max-width: 42ch; }
.chapter.ink .ch-text { color: var(--bone-dim); }
.chapter.paper .ch-text { color: var(--ink-dim); }

.ch-facts {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  line-height: 2.4;
}

/* ================================================================
   SCENE V - THE CORRIDORS (route lines drawn on paper, map depth)
   ================================================================ */

.act-map { padding: clamp(100px, 14vh, 180px) 0; }

.map-head { max-width: 760px; margin-bottom: 54px; }
.map-head h2 { font-size: clamp(40px, 5.4vw, 84px); margin: 14px 0 18px; }

.map-stage { perspective: 1400px; }

.map-tilt {
  transform: rotateX(9deg);
  transform-origin: center top;
  transition: transform 1s var(--ease);
}

.map-stage:hover .map-tilt { transform: rotateX(3deg); }

.routemap { position: relative; }

.routemap svg { display: block; width: 100%; height: auto; }

.rm-leg { fill: none; stroke: rgba(17, 19, 24, 0.28); stroke-width: 1.4; stroke-dasharray: 2 8; }

.rm-draw {
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: var(--len, 600);
  stroke-dashoffset: var(--len, 600);
  transition: stroke-dashoffset 2.2s var(--ease);
}

.routemap.in .rm-draw { stroke-dashoffset: 0; }

.rm-dot { fill: var(--orange); }

.rm-node .rm-ring { fill: none; stroke: rgba(242, 96, 12, 0.5); stroke-width: 1.2; transform-box: fill-box; transform-origin: center; }
.rm-node.hub .rm-ring { stroke: var(--orange); stroke-width: 1.6; animation: node-pulse 3s ease-in-out infinite; }
.rm-node .rm-core { fill: var(--ink); }
.rm-node.hub .rm-core { fill: var(--orange); }

.rm-node text {
  fill: var(--ink);
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rm-node.hub text { fill: var(--orange); font-size: 15px; font-weight: 500; }

@keyframes node-pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.3); opacity: 0.4; } }

.map-notes {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.map-notes b { color: var(--orange); font-weight: 500; }

/* ================================================================
   SCENE VI - PROOF + VOICE
   ================================================================ */

.act-proof { padding: clamp(90px, 12vh, 160px) 0 40px; }

.proof-rows { display: grid; }

.proof-row {
  display: flex;
  align-items: baseline;
  gap: clamp(20px, 4vw, 60px);
  padding: clamp(20px, 4vh, 44px) 0;
  border-bottom: 1px solid var(--rule);
}

.proof-row:first-child { border-top: 1px solid var(--rule); }
.proof-row:nth-child(even) { justify-content: flex-end; text-align: right; }

.proof-num {
  font-family: var(--font-display);
  font-weight: 540;
  font-size: clamp(80px, 13vw, 220px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.proof-num small {
  font-family: var(--font-mono);
  font-size: 0.16em;
  letter-spacing: 0.2em;
  color: var(--orange);
  vertical-align: super;
}

.proof-lbl {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-dim);
  max-width: 200px;
  line-height: 2;
}

.act-voice { padding: clamp(70px, 10vh, 140px) 0; }

.voice { max-width: 1000px; }

.voice blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 420;
  font-size: clamp(28px, 4.2vw, 56px);
  line-height: 1.22;
  color: var(--ink);
  min-height: 3.8em;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.voice.fade blockquote { opacity: 0; transform: translateY(12px); }

.voice figcaption {
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.voice figcaption b { color: var(--orange); font-weight: 500; }

.voice-dots { display: flex; gap: 10px; margin-top: 30px; }
.voice-dots button { width: 34px; height: 3px; background: var(--rule); transition: background 0.3s; }
.voice-dots button.active { background: var(--orange); }

/* ================================================================
   SCENE VII - THE FINALE
   ================================================================ */

.act-finale {
  position: relative;
  min-height: 96svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--bone);
}

.finale-media { position: absolute; inset: 0; }

.finale-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.42) saturate(0.95);
  transform: scale(1.08);
  will-change: transform;
}

.finale-media::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(70% 80% at 50% 60%, transparent 30%, rgba(17, 19, 24, 0.55));
}

.finale-inner {
  position: relative;
  z-index: 2;
  width: var(--wrap);
  margin: 0 auto;
  text-align: center;
  padding: 16vh 0;
}

.finale-inner .mono { display: block; margin-bottom: 22px; color: var(--amber); }

.finale-inner h2 { font-size: clamp(46px, 7.2vw, 116px); color: #F6F2E9; max-width: 11em; margin: 0 auto; }
.finale-inner h2 em { color: var(--amber); }

.finale-inner .lede { margin: 26px auto 0; color: rgba(237, 232, 222, 0.75); }

.finale-actions { display: flex; justify-content: center; align-items: center; gap: 30px; margin-top: 44px; flex-wrap: wrap; }

.finale-tel {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: rgba(237, 232, 222, 0.75);
  margin-top: 30px;
}

.finale-tel a { color: var(--amber); border-bottom: 1px solid currentColor; }

/* ================================================================
   FOOTER
   ================================================================ */

footer {
  background: var(--ink);
  color: var(--bone-dim);
  border-top: 1px solid var(--rule-ink);
  padding: 34px 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-line { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer-line a:hover { color: var(--amber); }
.footer-line .f-links { display: flex; gap: 22px; flex-wrap: wrap; }

/* ================================================================
   SUBPAGES - editorial interiors with photographic heroes
   ================================================================ */

.page-hero {
  position: relative;
  min-height: 62svh;
  display: flex;
  align-items: flex-end;
  padding: 170px 0 64px;
  overflow: hidden;
  background: var(--ink);
  color: var(--bone);
}

.page-hero .ph-media { position: absolute; inset: 0; }

.page-hero .ph-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(1.0) contrast(1.05);
  transform: scale(1.06);
  will-change: transform;
}

.page-hero .ph-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17, 19, 24, 0.85) 0%, rgba(17, 19, 24, 0.2) 45%, transparent 65%);
}

.page-hero .wrap { position: relative; z-index: 2; }

.page-hero h1 { font-size: clamp(44px, 6.4vw, 100px); max-width: 11em; margin: 14px 0 20px; color: #F6F2E9; }
.page-hero h1 em { color: var(--amber); }
.page-hero .lede { color: rgba(237, 232, 222, 0.8); }
.page-hero .stamp, .page-hero .mono { color: var(--amber); }

.leg { position: relative; padding: clamp(80px, 11vh, 140px) 0; }

/* services index */
.svc-index { border-top: 1px solid var(--rule); }
.svc-row { border-bottom: 1px solid var(--rule); }

.svc-head-btn {
  width: 100%;
  display: grid;
  grid-template-columns: 74px 1fr 40px;
  align-items: center;
  gap: 20px;
  padding: 30px 4px;
  text-align: left;
  transition: padding 0.35s var(--ease);
}

.svc-head-btn:hover { padding-left: 16px; }

.svc-num { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.18em; color: var(--orange); }

.svc-title {
  font-family: var(--font-display);
  font-weight: 470;
  font-size: clamp(26px, 3.4vw, 46px);
  line-height: 1.05;
  color: var(--ink);
  transition: color 0.3s;
}

.svc-row:hover .svc-title { color: var(--orange); }

.svc-arrow { justify-self: end; width: 34px; height: 34px; display: grid; place-items: center; color: var(--ink-dim); transition: transform 0.4s var(--ease), color 0.3s; }
.svc-row.open .svc-arrow { transform: rotate(45deg); color: var(--orange); }

.svc-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.5s var(--ease); }
.svc-row.open .svc-body { grid-template-rows: 1fr; }
.svc-body-in { overflow: hidden; }

.svc-body-grid { display: grid; grid-template-columns: 74px 1fr 1fr; gap: 20px; padding: 0 4px 34px; }
.svc-body p { font-size: 15.5px; line-height: 1.75; color: var(--ink-dim); max-width: 46ch; }

.svc-proof { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); line-height: 2.2; }

/* columns */
.log-cols, .commit-cols { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--rule); }
.log-col, .commit-col { padding: 34px 34px 14px 0; border-right: 1px solid var(--rule); }
.log-col:last-child, .commit-col:last-child { border-right: none; }
.log-col + .log-col, .commit-col + .commit-col { padding-left: 34px; }

.log-time, .commit-col .idx { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.22em; color: var(--orange); display: block; margin-bottom: 14px; }
.log-col h3, .commit-col h3 { font-family: var(--font-display); font-weight: 500; font-size: 27px; color: var(--ink); margin-bottom: 12px; }
.log-col p, .commit-col p { font-size: 14.5px; line-height: 1.75; color: var(--ink-dim); }
.log-facts { margin-top: 18px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); line-height: 2.3; }

/* ledger */
.ledger { border-top: 1px solid var(--rule); }

.ledger-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: baseline;
  gap: 24px;
  padding: 26px 4px;
  border-bottom: 1px solid var(--rule);
}

.ledger-row .idx { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em; color: var(--ink-dim); }
.ledger-row .lbl { font-size: 14px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-dim); }
.ledger-row .val { font-family: var(--font-display); font-weight: 540; font-size: clamp(44px, 6vw, 92px); line-height: 1; color: var(--ink); font-variant-numeric: tabular-nums; }
.ledger-row .val small { font-family: var(--font-mono); font-size: 0.24em; letter-spacing: 0.2em; color: var(--orange); vertical-align: super; }

/* destination board */
.dest-board { border-top: 1px solid var(--rule); }

.dest-row {
  display: grid;
  grid-template-columns: 120px 1fr 1.2fr 40px;
  align-items: center;
  gap: 22px;
  padding: 26px 4px;
  border-bottom: 1px solid var(--rule);
  transition: padding 0.35s var(--ease), background 0.3s;
}

.dest-row:hover { padding-left: 16px; background: rgba(242, 96, 12, 0.05); }

.dest-zone { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); }
.dest-city { font-family: var(--font-display); font-weight: 500; font-size: clamp(24px, 2.8vw, 38px); color: var(--ink); }
.dest-focus { font-size: 14px; line-height: 1.6; color: var(--ink-dim); }
.dest-arr { color: var(--orange); opacity: 0; transform: translateX(-8px); transition: opacity 0.3s, transform 0.35s var(--ease); }
.dest-row:hover .dest-arr { opacity: 1; transform: none; }

/* stencil strip */
.stencil-strip {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 26px 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.stencil-track { display: flex; align-items: center; gap: 44px; width: max-content; animation: ticker 40s linear infinite; white-space: nowrap; }
.stencil-track span { font-size: 22px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink); }
.stencil-track i { color: var(--orange); font-style: normal; font-size: 14px; }

@keyframes ticker { to { transform: translateX(-50%); } }

/* leaders */
.duo-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.duo-photo { border: 1px solid rgba(17, 19, 24, 0.16); box-shadow: 18px 20px 0 rgba(242, 96, 12, 0.16), 0 30px 70px rgba(17, 19, 24, 0.2); overflow: hidden; background: #fff; }
.duo-photo img { width: 100%; height: auto; display: block; }

.leaders { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(28px, 4vw, 56px); border-top: 1px solid var(--rule); padding-top: 44px; }
.leader { padding: 0 0 10px; }

.leader-photo { width: 100%; aspect-ratio: 1 / 1.15; overflow: hidden; border: 1px solid rgba(17, 19, 24, 0.16); background: #fff; margin-bottom: 22px; box-shadow: 0 22px 50px rgba(17, 19, 24, 0.16); }
.leader-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.9s var(--ease); }
.leader:hover .leader-photo img { transform: scale(1.04); }

.leader .type { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--orange); }
.leader h3 { font-family: var(--font-display); font-weight: 500; font-size: 30px; color: var(--ink); margin: 12px 0 8px; }
.leader p { font-size: 14.5px; line-height: 1.7; color: var(--ink-dim); }

.registration-line { margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--rule); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; line-height: 1.9; color: var(--ink-dim); }
.registration-line b { color: var(--orange); font-weight: 500; }

/* photo pair + generic shot */
.photo-pair { display: grid; grid-template-columns: 1.35fr 1fr; gap: 4px; }
.photo-pair .shot { height: clamp(300px, 44vw, 480px); }
.photo-pair .shot:last-child { clip-path: polygon(0 0, 100% 0, 100% 100%, 8% 100%); }

.shot { position: relative; overflow: hidden; background: var(--ink); }
.shot img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.0) contrast(1.05); transform: scale(1.08); will-change: transform; }
.shot .fig { position: absolute; left: 16px; bottom: 12px; z-index: 2; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase; color: #F5F1E8; text-shadow: 0 1px 10px rgba(0,0,0,0.7); }

/* contact - proposal desk */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.contact-info { display: grid; border-top: 1px solid var(--rule); }
.info-row { padding: 22px 4px; border-bottom: 1px solid var(--rule); }
.info-row b { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.info-row span { font-size: 15px; line-height: 1.6; color: var(--ink-dim); }

.quote-form { border: 1.5px solid var(--ink); background: #FBF8F2; box-shadow: 14px 16px 0 rgba(17, 19, 24, 0.14); padding: clamp(28px, 4vw, 48px); display: grid; gap: 22px; }
.quote-form .form-head { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-dim); padding-bottom: 16px; border-bottom: 1.5px dashed var(--rule); }
.quote-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.quote-form label { display: grid; gap: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-dim); }
.quote-form input, .quote-form select, .quote-form textarea { font-family: var(--font-text); font-size: 15.5px; color: var(--ink); padding: 12px 2px; border: none; border-bottom: 1.5px solid var(--rule); background: transparent; outline: none; border-radius: 0; transition: border-color 0.3s; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-bottom-color: var(--orange); }
.form-note { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.1em; color: var(--ink-dim); }
.form-success { display: none; padding: 14px 18px; border: 1.5px solid #1E7B33; color: #1E7B33; font-weight: 600; font-size: 14px; }

/* legacy aliases */
.stamp { font-family: var(--font-mono); font-size: 11.5px; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--orange); }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 40px; flex-wrap: wrap; }
.arrival { padding-bottom: clamp(100px, 13vh, 160px); }
.contact-line { margin-top: 30px; font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.16em; color: var(--ink-dim); }
.contact-line a { color: var(--orange); border-bottom: 1px solid currentColor; }
.milestone { display: none; }
.sky { display: none; }
.footer-grid, .footer-base { display: none; }

/* ================================================================
   REVEALS
   ================================================================ */

.reveal { opacity: 0; transform: translateY(16px); filter: blur(7px); transition: opacity 1.15s var(--ease), transform 1.15s var(--ease), filter 1.15s var(--ease); }
.reveal.in { opacity: 1; transform: none; filter: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .statement .line span, .film .rise > span { opacity: 1; transform: none; filter: none; transition: none; }
  .stencil-track { animation: none; }
  .film-frame.on img { animation: none; }
  body.menu-open .menu-links a { animation: none; opacity: 1; transform: none; }
  .menu { transition: none; }
  .map-tilt { transform: none; }
  .rm-draw { stroke-dashoffset: 0; transition: none; }
}

/* ================================================================
   RESPONSIVE - recomposed, not shrunk
   ================================================================ */

@media (max-width: 1020px) {
  .film h1 { font-size: clamp(40px, 9vw, 72px); }
  .film-counter { display: none; }

  .spread { height: auto; display: grid; gap: 12px; }
  .plate { position: relative; inset: auto !important; width: 100% !important; height: 300px !important; box-shadow: none !important; }
  .spread-caption { position: relative; left: auto; top: auto; width: auto; margin-top: 12px; }

  .chapter { position: relative; min-height: 0; display: block; }
  .ch-media { position: relative; width: 100%; height: 46svh; clip-path: none !important; }
  .ch-num { top: 10px; font-size: 90px; }
  .ch-body { width: 100%; padding: 34px 24px 56px; margin: 0 !important; align-items: flex-start !important; text-align: left !important; }

  .map-tilt { transform: none; }
  .rm-node text { font-size: 19px; }

  .proof-row:nth-child(even) { justify-content: flex-start; text-align: left; }

  .log-cols, .commit-cols { grid-template-columns: 1fr; }
  .log-col, .commit-col { border-right: none; border-bottom: 1px solid var(--rule); padding: 28px 0 22px; }
  .log-col + .log-col, .commit-col + .commit-col { padding-left: 0; }

  .svc-body-grid { grid-template-columns: 74px 1fr; }
  .svc-proof { grid-column: 2; }

  .duo-grid, .contact-grid, .photo-pair { grid-template-columns: 1fr; }
  .photo-pair .shot { height: 260px; clip-path: none !important; }
  .dest-row { grid-template-columns: 90px 1fr 30px; }
  .dest-focus { display: none; }
}

@media (max-width: 720px) {
  .bar { padding: 12px 16px; }
  .bar-logo img { height: 22px; }
  .bar-cta { padding: 11px 14px; font-size: 10.5px; }
  .menu-btn { font-size: 0; gap: 0; }

  .film h1 { font-size: clamp(34px, 10vw, 48px); }
  .film-actions { gap: 18px; }

  .statement .line { font-size: clamp(34px, 10vw, 52px); }
  .statement .line.indent { padding-left: 10vw; }
  .statement-foot { padding-left: 10vw; }

  .ch-title { font-size: clamp(32px, 9vw, 44px); }
  .ch-media { height: 38svh; }

  .rm-node text { font-size: 24px; }
  .proof-num { font-size: clamp(64px, 19vw, 96px); }

  .leaders { grid-template-columns: 1fr; }
  .quote-form .row { grid-template-columns: 1fr; }
  .stencil-track span { font-size: 17px; }
  .leg { padding: 64px 0; }
  .page-hero { padding: 140px 0 44px; min-height: 56svh; }
  .finale-inner h2 { font-size: clamp(36px, 11vw, 54px); }
  .ledger-row { grid-template-columns: 1fr auto; }
  .ledger-row .idx { display: none; }
  .footer-line { justify-content: center; text-align: center; }
}

/* ================================================================
   SMOOTH SANS TYPE SYSTEM (Manrope / Plus Jakarta / DM Mono)
   ================================================================ */

.display {
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.04;
  font-variation-settings: normal;
}

.display em, h1 em, h2 em, .ch-title em, .statement .line em {
  font-style: normal;
  font-weight: 800;
  color: var(--orange);
}

.statement .line { font-weight: 800; letter-spacing: -0.03em; }
.svc-title, .dest-city, .leader h3, .log-col h3, .commit-col h3 { font-weight: 700; }
.ledger-row .val, .proof-num { font-weight: 800; letter-spacing: -0.03em; }
.voice blockquote { font-style: normal; font-weight: 600; letter-spacing: -0.01em; }
.menu-links a { font-weight: 700; }
.mark-line, .convoy-line { font-weight: 700; }

/* ================================================================
   HERO 3D - the freight corridor
   ================================================================ */

.hero3d {
  position: relative;
  height: 100svh;
  overflow: hidden;
  background: #090D13;
  color: #EAF0F6;
}

#corridor-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* cinematic grade over the scene */
.hero3d::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(9, 13, 19, 0.86) 0%, rgba(9, 13, 19, 0.25) 30%, transparent 52%),
    linear-gradient(to bottom, rgba(9, 13, 19, 0.6), transparent 22%),
    radial-gradient(120% 90% at 50% 110%, transparent 55%, rgba(9, 13, 19, 0.5));
}

.hero3d .h3d-inner {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  width: var(--wrap);
  margin: 0 auto;
  padding-bottom: clamp(40px, 8vh, 88px);
  will-change: transform, opacity;
}

.h3d-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: #FFB25E;
}

.h3d-kicker .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2.4s ease-in-out infinite;
}

.hero3d h1 {
  font-size: clamp(44px, 6.8vw, 104px);
  color: #F4F7FA;
  max-width: 11em;
  text-wrap: balance;
}

.hero3d .lede {
  color: rgba(226, 233, 240, 0.78);
  margin-top: 22px;
  max-width: 46ch;
}

.h3d-actions { display: flex; align-items: center; gap: 30px; margin-top: 36px; flex-wrap: wrap; }

/* subtle stat markers, like distance boards along the corridor */
.h3d-stats {
  position: absolute;
  right: clamp(20px, 3.5vw, 44px);
  bottom: clamp(40px, 8vh, 88px);
  z-index: 3;
  display: grid;
  gap: 16px;
  text-align: right;
}

.h3d-stats .st b {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 2vw, 30px);
  letter-spacing: -0.02em;
  color: #F4F7FA;
}

.h3d-stats .st span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(226, 233, 240, 0.55);
}

.h3d-scroll {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(226, 233, 240, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.h3d-scroll::after {
  content: "";
  width: 1px; height: 36px;
  background: linear-gradient(var(--orange), transparent);
  animation: drip 2.2s ease-in-out infinite;
}

@keyframes drip {
  0% { transform: scaleY(0); transform-origin: top; }
  55% { transform: scaleY(1); }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* headline rise */
.hero3d .rise { overflow: hidden; display: block; }
.hero3d .rise > span { display: block; transform: translateY(110%); transition: transform 1.1s var(--ease); }
.hero3d.ready .rise > span { transform: none; }
.hero3d.ready .rise.d2 > span { transition-delay: 0.12s; }

/* fallback when WebGL is unavailable */
.hero3d.no3d #corridor-canvas { display: none; }
.hero3d.no3d {
  background:
    linear-gradient(to top, rgba(9, 13, 19, 0.9), rgba(9, 13, 19, 0.4)),
    url("assets/hero-fleet.jpg") center 60% / cover no-repeat #090D13;
}

@media (max-width: 1020px) {
  .h3d-stats { display: none; }
  .hero3d h1 { font-size: clamp(38px, 8.6vw, 64px); }
}

@media (max-width: 720px) {
  .hero3d h1 { font-size: clamp(32px, 9.6vw, 44px); }
  .h3d-actions { gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero3d .rise > span { transform: none; transition: none; }
  .h3d-scroll::after { animation: none; }
}


/* ================================================================
   FIRST LIGHT HERO (restored first draft) - namespaced fl-*
   ================================================================ */

.fl-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, #FBF7F1 0%, #EAF3FA 55%, #FDEBD7 100%);
  color: #123447;
}

#dawn-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }

.fl-inner {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 140px 0 100px;
}

.fl-eyebrow {
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #B35708;
}

.fl-display {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(46px, 6.4vw, 96px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  max-width: 11em;
  margin: 22px 0 24px;
  color: #123447;
}

.fl-display em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(90deg, #F2600C, #FFB25E);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fl-lede {
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.75;
  color: #3E5A6E;
  max-width: 46ch;
}

.fl-actions { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }

.fl-btn {
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #F2600C, #FFB25E);
  padding: 16px 32px;
  border-radius: 100px;
  box-shadow: 0 14px 34px rgba(242, 96, 12, 0.35);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  display: inline-block;
}

.fl-btn:hover { transform: translateY(-3px); box-shadow: 0 22px 44px rgba(242, 96, 12, 0.45); }

.fl-ghost {
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 600;
  color: #123447;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  padding: 16px 32px;
  border-radius: 100px;
  transition: transform 0.35s var(--ease), background 0.35s;
  display: inline-block;
}

.fl-ghost:hover { transform: translateY(-3px); background: rgba(255, 255, 255, 0.65); }

.fl-metrics {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 72px;
}

.fl-metric {
  font-family: var(--font-text);
  padding: 22px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.fl-metric b {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: 30px;
  display: block;
  color: #123447;
}

.fl-metric span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5F7A8C;
}

.fl-chip {
  position: absolute;
  right: 6%;
  bottom: 20%;
  z-index: 2;
  padding: 16px 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(18, 52, 71, 0.10);
  font-family: var(--font-text);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #123447;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fl-float 7s ease-in-out infinite;
}

.fl-chip .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #F2600C;
  box-shadow: 0 0 0 5px rgba(242, 96, 12, 0.16);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes fl-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.fl-scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(92px, 12vh, 128px);
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-text);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #7C93A3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.fl-scroll::after {
  content: "";
  width: 1px; height: 42px;
  background: linear-gradient(#F2600C, transparent);
  animation: drip 2.2s ease-in-out infinite;
}

/* split-char reveal for the dawn headline */
.fl-display .ch {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.55em) rotateX(-45deg);
  transform-origin: bottom;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fl-display.in .ch { opacity: 1; transform: none; }

.fl-display em .ch {
  background: linear-gradient(90deg, #F2600C, #FFB25E);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 1020px) {
  .fl-metrics { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .fl-chip { display: none; }
  .fl-metrics { grid-template-columns: 1fr 1fr; gap: 10px; }
  .fl-inner { padding: 120px 0 90px; }
  .fl-display { font-size: clamp(40px, 10.5vw, 56px); }
}

@media (prefers-reduced-motion: reduce) {
  .fl-display .ch { opacity: 1; transform: none; transition: none; }
  .fl-chip { animation: none; }
  .fl-scroll::after { animation: none; }
}

/* ================================================================
   PREMIUM POLISH PASS - cinematic opening + unified luxury detail
   ================================================================ */

/* ---- cinematic letterbox opening ---- */
.cine-bar {
  position: fixed;
  left: 0; right: 0;
  height: 14vh;
  background: #101216;
  z-index: 9500;
  transition: transform 1.4s cubic-bezier(0.7, 0, 0.2, 1) 0.25s;
  pointer-events: none;
}

.cine-top { top: 0; }
.cine-bot { bottom: 0; }

body.cine-open .cine-top { transform: translateY(-102%); }
body.cine-open .cine-bot { transform: translateY(102%); }

.cine-bloom {
  position: fixed;
  inset: 0;
  z-index: 9400;
  background: radial-gradient(80% 70% at 60% 45%, rgba(255, 236, 205, 0.95), rgba(251, 247, 241, 0.7) 45%, rgba(251, 247, 241, 0) 75%);
  opacity: 1;
  transition: opacity 1.6s ease 0.35s;
  pointer-events: none;
}

body.cine-open .cine-bloom { opacity: 0; }

/* ---- hairline scroll progress ---- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 9600;
  background: linear-gradient(90deg, #F2600C, #FFB25E);
  transform-origin: left;
  transform: scaleX(0);
  pointer-events: none;
}

/* ---- hero refinements ---- */
.fl-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(120% 100% at 50% 118%, transparent 60%, rgba(18, 52, 71, 0.07)),
    linear-gradient(to bottom, rgba(251, 247, 241, 0.35), transparent 16%);
}

.fl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.fl-eyebrow::before {
  content: "";
  width: 34px;
  height: 1.5px;
  background: linear-gradient(90deg, #F2600C, #FFB25E);
}

.fl-lede { text-wrap: pretty; }

.fl-btn { position: relative; overflow: hidden; }

.fl-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.35) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}

.fl-btn:hover::after { transform: translateX(120%); }

.fl-metric {
  box-shadow: 0 18px 44px rgba(18, 52, 71, 0.08);
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
}

.fl-metric:hover { transform: translateY(-4px); box-shadow: 0 26px 56px rgba(18, 52, 71, 0.13); }

.fl-metric b small {
  font-family: var(--font-text);
  font-size: 0.5em;
  color: #F2600C;
  vertical-align: super;
  margin-left: 1px;
}

/* ---- unify buttons site-wide with the hero language ---- */
.btn {
  border-radius: 100px;
  background: linear-gradient(90deg, #F2600C, #FFB25E);
  position: relative;
  overflow: hidden;
}

.btn:hover { background: linear-gradient(90deg, #E05608, #FFA945); }

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.35) 50%, transparent 65%);
  transform: translateX(-130%);
  transition: transform 0.7s var(--ease);
}

.btn:hover::after { transform: translateX(130%); }

.bar-cta { border-radius: 100px; }

/* ---- statement: quieter entrance, warmer accent ---- */
.act-statement {
  background: linear-gradient(to bottom, #FDEBD7 0%, var(--paper) 26%);
}

.statement .line em {
  background: linear-gradient(90deg, #F2600C, #FFB25E);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---- spread plates: gallery mounting ---- */
.plate {
  border: 1px solid rgba(17, 19, 24, 0.14);
  box-shadow: 0 30px 70px rgba(17, 19, 24, 0.18);
}

.plate img { transition: transform 1.4s var(--ease); }
.plate:hover img { transform: scale(1.16); }

.plate-c { transform: rotate(-1.2deg); }

/* ---- chapters: stacked-film depth ---- */
.chapter { box-shadow: 0 -30px 60px rgba(17, 19, 24, 0.22); }

.ch-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.ch-kicker::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: currentColor;
  opacity: 0.7;
}

.chapter:nth-child(even) .ch-kicker { flex-direction: row-reverse; }

/* ---- route map: drafting-table presentation ---- */
.routemap {
  background: linear-gradient(160deg, #FBF8F2, #F3EEE4);
  border: 1px solid rgba(17, 19, 24, 0.14);
  box-shadow: 0 34px 80px rgba(17, 19, 24, 0.14);
  padding: clamp(16px, 3vw, 40px);
}

/* ---- voice: an opening quote mark ---- */
.voice { position: relative; padding-top: 10px; }

.voice::before {
  content: "\201C";
  position: absolute;
  top: -0.28em;
  left: -0.06em;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(110px, 14vw, 200px);
  line-height: 1;
  color: rgba(242, 96, 12, 0.16);
  pointer-events: none;
}

/* ---- finale: cinematic vignette ---- */
.act-finale .finale-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(90% 80% at 50% 50%, transparent 40%, rgba(9, 12, 17, 0.55));
  pointer-events: none;
}

.finale-inner h2 em {
  background: linear-gradient(90deg, #FFB25E, #FFD9A6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---- nav: quieter, finer ---- */
.bar.scrolled { box-shadow: 0 10px 40px rgba(17, 19, 24, 0.07); }

.menu-links a { transition: color 0.3s, transform 0.4s var(--ease); }
.menu-links a:hover { transform: translateX(10px); }

/* ---- page-hero headline accent unification ---- */
.page-hero h1 em {
  background: linear-gradient(90deg, #FFB25E, #FFD9A6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---- footer hairline glow ---- */
footer { border-top: 1px solid rgba(242, 96, 12, 0.25); }

@media (prefers-reduced-motion: reduce) {
  .cine-bar, .cine-bloom { display: none; }
  .plate img { transition: none; }
}

@media (max-width: 720px) {
  .cine-bar { height: 9vh; }
  .voice::before { font-size: 90px; }
}

/* ================================================================
   HANDCRAFT PASS - the details templates never have
   ================================================================ */

/* ---- crafted scrollbar ---- */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: #EDE8DE; }
::-webkit-scrollbar-thumb {
  background: #1A1D23;
  border-radius: 6px;
  border: 3px solid #EDE8DE;
}
::-webkit-scrollbar-thumb:hover { background: #F2600C; }

/* ---- reveals settle out of a blur, not just a slide ---- */
.reveal {
  filter: blur(7px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease);
}
.reveal.in { filter: blur(0); }

/* ---- testimonial auto-advance progress ---- */
.v-track {
  width: 132px;
  height: 2px;
  margin-top: 16px;
  background: rgba(17, 19, 24, 0.12);
  overflow: hidden;
}

.v-prog { display: block; height: 100%; width: 100%; background: linear-gradient(90deg, #F2600C, #FFB25E); transform: scaleX(0); transform-origin: left; }
.v-prog.run { animation: v-run 7s linear forwards; }

@keyframes v-run { to { transform: scaleX(1); } }

main { position: relative; z-index: 1; }

@media (prefers-reduced-motion: reduce) {
  .reveal { filter: none; }
  .v-prog.run { animation: none; }
}


/* ================================================================
   SMOOTHER TYPE PASS - softer weights, gentler tracking
   ================================================================ */

body { font-weight: 400; }

.display {
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.08;
}

.display em, h1 em, h2 em { font-weight: 700; }

.statement .line { font-weight: 700; letter-spacing: -0.02em; }
.svc-title, .dest-city, .leader h3, .log-col h3, .commit-col h3 { font-weight: 600; }
.ledger-row .val, .proof-num { font-weight: 700; letter-spacing: -0.02em; }
.menu-links a { font-weight: 600; }
.lede { line-height: 1.85; }
.btn, .bar-cta, .link-line { letter-spacing: 0.1em; }
.mono { letter-spacing: 0.2em; }
.stamp { letter-spacing: 0.2em; }
.fl-eyebrow { letter-spacing: 0.24em; }

/* ================================================================
   SERVICES DEEP - full-page unique service editorial
   ================================================================ */

.svcd {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(26px, 4vw, 70px);
  padding: clamp(40px, 6vh, 64px) 0;
  border-top: 1px solid var(--rule);
}

.svcd:last-child { border-bottom: 1px solid var(--rule); }

.svcd-head { display: flex; gap: 22px; align-items: flex-start; }

.svcd-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-top: 8px;
}

.svcd-body p { font-size: 15.5px; line-height: 1.85; color: var(--ink-dim); max-width: 58ch; }

.svcd-lbl { display: block; margin: 26px 0 12px; color: var(--ink-dim); }

.svcd-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 26px;
}

.svcd-list li {
  font-size: 14.5px;
  color: var(--ink);
  padding-left: 18px;
  position: relative;
}

.svcd-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.52em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: linear-gradient(90deg, #F2600C, #FFB25E);
}

.svcd-best { margin-top: 22px; font-size: 14px; }
.svcd-best b { color: var(--orange); font-weight: 600; }

/* network fact rows */
.nf-val { font-size: clamp(34px, 4.4vw, 64px) !important; }
.nf-note {
  display: block;
  font-style: normal;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-dim);
  margin-top: 6px;
  max-width: 44ch;
}

/* about story columns */
.story-cols { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1020px) {
  .svcd { grid-template-columns: 1fr; }
  .story-cols { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .svcd-list { grid-template-columns: 1fr; }
}

/* ================================================================
   INDIA CORRIDOR MAP - geo-accurate, crisp, no tilt
   ================================================================ */

.map-tilt { transform: none !important; }
.map-stage { perspective: none; }

.routemap {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(20px, 3vw, 44px) !important;
}

.in-land {
  fill: rgba(17, 19, 24, 0.045);
  stroke: rgba(17, 19, 24, 0.55);
  stroke-width: 1.3;
  stroke-linejoin: round;
}

.rm-oda {
  fill: rgba(242, 96, 12, 0.55);
  animation: oda-pulse 3.5s ease-in-out infinite;
}

@keyframes oda-pulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.9; }
}

.rm-node text {
  font-size: 17px;
  font-weight: 600;
  font-family: var(--font-text);
  letter-spacing: 0.04em;
  text-transform: none;
  paint-order: stroke;
  stroke: #F1EDE5;
  stroke-width: 4px;
}

.rm-node.hub text { font-size: 18px; font-weight: 700; }

.rm-legend {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 40px);
  flex-wrap: wrap;
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.rm-legend i {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: -1px;
}

.lg-hub { background: var(--orange); box-shadow: 0 0 0 3px rgba(242, 96, 12, 0.25); }
.lg-city { background: var(--ink); }
.lg-oda { background: rgba(242, 96, 12, 0.5); }

@media (max-width: 720px) {
  .rm-node text { font-size: 22px; }
  .routemap { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  .rm-oda { animation: none; }
}

/* ---- BFC compact mark: blended into the bar, no plate ---- */
.bar-logo {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}

.bar-logo img { height: 40px; width: auto; }

@media (max-width: 720px) {
  .bar-logo img { height: 30px; }
}

/* photo caption overlays retired */
.plate .cap, .shot .fig, .photo-pair .fig { display: none; }

/* ================================================================
   HEADER TABS - primary nav visible in the bar
   ================================================================ */

.bar-tabs {
  display: flex;
  gap: 2px;
  list-style: none;
  align-items: center;
}

.bar-tabs a {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-dim);
  padding: 10px 15px;
  position: relative;
  transition: color 0.3s;
}

.bar-tabs a::after {
  content: "";
  position: absolute;
  left: 15px; right: 15px; bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #F2600C, #FFB25E);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.bar-tabs a:hover { color: var(--ink); }
.bar-tabs a:hover::after, .bar-tabs a.active::after { transform: scaleX(1); }
.bar-tabs a.active { color: var(--ink); }

/* desktop: tabs visible, menu button retired */
@media (min-width: 1021px) {
  .menu-btn { display: none; }
}

/* mobile: tabs collapse, fullscreen menu takes over */
@media (max-width: 1020px) {
  .bar-tabs { display: none; }
  .menu-btn { display: flex; }
}

/* ================================================================
   ORGANIC EDITORIAL PASS - soft radii + glossy bento
   ================================================================ */

/* soften every surface: no sharp rectangles left */
.plate, .shot, .photo-pair .shot, .duo-photo, .leader-photo, .routemap,
.quote-form, .ph-media img { border-radius: 22px; }
.plate, .shot { overflow: hidden; }
.page-hero .ph-media img { border-radius: 0; }
.plate-a { clip-path: none; }
.photo-pair .shot:last-child { clip-path: none; }
.ch-media, .chapter:nth-child(odd) .ch-media, .chapter:nth-child(even) .ch-media { clip-path: none; border-radius: 26px; }
.chapter .ch-media { top: 6vh; bottom: 6vh; width: 55%; }
.chapter:nth-child(odd) .ch-media { right: 3vw; }
.chapter:nth-child(even) .ch-media { left: 3vw; }
.mono, .stamp { letter-spacing: 0.16em; }

/* ---------------- the glossy bento ---------------- */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 168px;
  gap: 18px;
}

.bt {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(155deg, #FFFDF8 0%, #F4EEE3 100%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    inset 0 1.5px 0 rgba(255, 255, 255, 0.9),
    0 2px 6px rgba(17, 19, 24, 0.05),
    0 24px 48px rgba(17, 19, 24, 0.09);
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
}

/* gloss sheen */
.bt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 12% 0%, rgba(255, 255, 255, 0.75), transparent 46%);
  pointer-events: none;
}

.bt::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.35) 50%, transparent 60%);
  transform: translateX(-130%);
  transition: transform 0.9s var(--ease);
  pointer-events: none;
}

.bt:hover { transform: translateY(-6px); box-shadow: inset 0 1.5px 0 rgba(255,255,255,0.9), 0 6px 14px rgba(17,19,24,0.07), 0 34px 64px rgba(17,19,24,0.14); }
.bt:hover::after { transform: translateX(130%); }

.bt-in {
  position: relative;
  height: 100%;
  padding: clamp(20px, 2.2vw, 30px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  will-change: transform;
}

.bt-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}

.bt-kicker.light { color: rgba(255, 244, 230, 0.9); }

.bt-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(64px, 6.4vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.bt-num.sm { font-size: clamp(44px, 3.6vw, 64px); }

.bt-num small { font-size: 0.42em; color: var(--orange); font-weight: 700; vertical-align: 0.5em; }

.bt-mid {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.bt-sub { font-size: 13.5px; line-height: 1.6; color: var(--ink-dim); max-width: 34ch; }
.bt-sub.light { color: rgba(255, 244, 230, 0.85); }

/* tile placements */
.bt-hero { grid-column: span 2; grid-row: span 2; }
.bt-photo { grid-column: span 1; grid-row: span 2; }
.bt-india { grid-column: span 1; grid-row: span 2; }
.bt-stat { grid-column: span 1; }
.bt-quote { grid-column: span 2; }
.bt-team { grid-column: span 1; }
.bt-cta { grid-column: span 4; grid-row: span 1; }

.bt-photo img {
  position: absolute;
  inset: 0;
  width: 100%; height: 106%;
  object-fit: cover;
  will-change: transform;
}

.bt-photo-grade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 19, 24, 0.55), transparent 45%);
}

.bt-tag {
  position: absolute;
  left: 18px; bottom: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FFF4E6;
}

.bt-india svg {
  position: absolute;
  right: -14%;
  top: -6%;
  height: 92%;
  opacity: 0.9;
}

.bt-india svg path { fill: rgba(242, 96, 12, 0.10); stroke: rgba(242, 96, 12, 0.55); stroke-width: 2; }

.bt-quote p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.45;
  color: var(--ink);
}

.bt-cta {
  background: linear-gradient(120deg, #F2600C 0%, #FF8A3D 55%, #FFB25E 100%);
  border-color: rgba(255, 255, 255, 0.5);
}

.bt-cta .bt-mid { color: #fff; display: flex; align-items: center; gap: 12px; }
.bt-cta .arr { transition: transform 0.35s var(--ease); }
.bt-cta:hover .arr { transform: translateX(6px); }
.bt-cta .bt-in { flex-direction: row; align-items: center; justify-content: space-between; flex-wrap: wrap; }

/* ---------------- mobile sticky quote bar ---------------- */
.mob-cta { display: none; }

@media (max-width: 720px) {
  .mob-cta {
    position: fixed;
    left: 14px; right: 14px; bottom: 14px;
    z-index: 350;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(90deg, #F2600C, #FFB25E);
    box-shadow: 0 16px 40px rgba(242, 96, 12, 0.4);
  }
  body { padding-bottom: 74px; }
  footer { padding-bottom: 90px; }
}

@media (max-width: 1020px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .bt-hero { grid-column: span 2; }
  .bt-quote { grid-column: span 2; }
  .bt-cta { grid-column: span 2; }
  .chapter .ch-media { position: relative; inset: auto; width: calc(100% - 32px); margin: 16px auto 0; height: 42svh; }
}

@media (prefers-reduced-motion: reduce) {
  .bt::after { display: none; }
}

/* ================================================================
   BRANCH NETWORK MAP v2 + CLIENTS STRIP
   ================================================================ */

.rm-leg2 {
  fill: none;
  stroke: rgba(17, 19, 24, 0.20);
  stroke-width: 1.1;
  stroke-linecap: round;
}

.rm-b .rm-core { fill: var(--ink); }
.rm-b.hub .rm-core { fill: var(--orange); }
.rm-b.mj .rm-core { fill: var(--orange); }
.rm-b .rm-ring { fill: none; stroke: rgba(242, 96, 12, 0.5); stroke-width: 1.2; transform-box: fill-box; transform-origin: center; }
.rm-b.hub .rm-ring { stroke: var(--orange); stroke-width: 1.6; animation: node-pulse 3s ease-in-out infinite; }

.rm-b text {
  font-family: var(--font-text);
  font-weight: 600;
  letter-spacing: 0.02em;
  fill: var(--ink);
  paint-order: stroke;
  stroke: #F1EDE5;
  stroke-width: 3.4px;
}

.rm-b.hub text { font-size: 15px; font-weight: 700; fill: var(--orange); }
.rm-b.mj text { font-size: 12px; }
.rm-b.mn text { font-size: 9.6px; font-weight: 500; fill: var(--ink-dim); }

.routemap { max-width: 820px; }

@media (max-width: 720px) {
  .rm-b.mn text { font-size: 13px; }
  .rm-b.mj text { font-size: 15px; }
  .rm-b.hub text { font-size: 17px; }
}

/* clients strip */
.act-clients { padding: clamp(70px, 10vh, 130px) 0; }

.client-strip {
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 22px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.client-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: ticker 56s linear infinite;
  white-space: nowrap;
}

.client-track.rev { animation-direction: reverse; animation-duration: 64s; }

.client-track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(19px, 2vw, 27px);
  letter-spacing: 0.01em;
  color: var(--ink);
  opacity: 0.82;
  transition: opacity 0.3s;
}

.client-track span:hover { opacity: 1; }

.client-track i { color: var(--orange); font-style: normal; font-size: 9px; vertical-align: 3px; }

.client-strip:hover .client-track { animation-play-state: paused; }

/* ================================================================
   CLIENT WALL - logo-ready glossy tiles
   ================================================================ */

.client-wall {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.cl-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(155deg, #FFFDF8 0%, #F4EEE3 100%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    inset 0 1.5px 0 rgba(255, 255, 255, 0.9),
    0 2px 5px rgba(17, 19, 24, 0.04),
    0 16px 34px rgba(17, 19, 24, 0.07);
  transition: transform 0.45s var(--ease), box-shadow 0.45s;
}

.cl-tile:hover {
  transform: translateY(-5px);
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,0.9), 0 5px 12px rgba(17,19,24,0.06), 0 26px 48px rgba(17,19,24,0.12);
}

.cl-tile span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(14px, 1.25vw, 18px);
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--ink);
  opacity: 0.75;
  transition: opacity 0.3s;
}

.cl-tile:hover span { opacity: 1; }

.cl-tile img {
  max-height: 44px;
  max-width: 82%;
  object-fit: contain;
  transition: transform 0.4s var(--ease);
}

.cl-tile:hover img { transform: scale(1.06); }

@media (max-width: 1020px) {
  .client-wall { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .client-wall { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cl-tile { min-height: 72px; }
}

/* ================================================================
   THE ROAD SO FAR - serpentine 3D timeline
   ================================================================ */

.roadmap { margin-top: 44px; }

.tl-stage { position: relative; }

.tl-stage svg { display: block; width: 100%; height: auto; overflow: visible; }

/* the road: asphalt body with depth */
.tl-road-shadow {
  fill: none;
  stroke: rgba(17, 19, 24, 0.28);
  stroke-width: 58;
  stroke-linecap: round;
  transform: translateY(9px);
  filter: blur(7px);
}

.tl-road {
  fill: none;
  stroke: #2A323C;
  stroke-width: 56;
  stroke-linecap: round;
}

.tl-dash {
  fill: none;
  stroke: #F7F3EB;
  stroke-width: 3.6;
  stroke-linecap: round;
  stroke-dasharray: 16 20;
  animation: tl-drive 2.6s linear infinite;
}

@keyframes tl-drive { to { stroke-dashoffset: -36; } }

/* milestone circles */
.tl-circle {
  fill: #FDFBF6;
  stroke: rgba(17, 19, 24, 0.14);
  stroke-width: 1.5;
  filter: drop-shadow(0 8px 14px rgba(17, 19, 24, 0.3));
}

.tl-year {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  fill: var(--orange);
}

.tl-stem { stroke: rgba(17, 19, 24, 0.3); stroke-width: 1.6; }
.tl-dot { fill: var(--orange); }
.tl-node:nth-child(even) .tl-dot { fill: #FFB25E; }

.tl-pulse {
  fill: #FFB25E;
  filter: drop-shadow(0 0 6px rgba(255, 178, 94, 0.9));
}

/* text blocks anchored to the stems */
.tl-blocks { position: absolute; inset: 0; pointer-events: none; }

.tl-block {
  position: absolute;
  width: 230px;
  transform: translateX(-50%);
  text-align: center;
}

.tl-block.up { transform: translate(-50%, -100%); }

.tl-block p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink-dim);
}

.tl-block-year { display: none; }

/* mobile: vertical rail, same story */
@media (max-width: 1020px) {
  .tl-stage svg { display: none; }
  .tl-blocks { position: static; }

  .tl-block {
    position: static;
    width: auto;
    transform: none !important;
    text-align: left;
    padding: 0 0 26px 30px;
    border-left: 3px dashed rgba(17, 19, 24, 0.25);
    margin-left: 10px;
    position: relative;
  }

  .tl-block::before {
    content: "";
    position: absolute;
    left: -11px; top: 2px;
    width: 19px; height: 19px;
    border-radius: 50%;
    background: #FDFBF6;
    border: 5px solid var(--orange);
    box-shadow: 0 4px 10px rgba(17, 19, 24, 0.2);
  }

  .tl-block-year {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 19px;
    color: var(--orange);
    margin-bottom: 6px;
  }

  .tl-block p { font-size: 14.5px; }
}

/* ================================================================
   ONE CONTINUOUS ROUTE - section rhythm, overlaps, waypoints
   The page reads as a single journey: each act is a sheet laid
   over the last, stitched by a dashed corridor line (the same
   language as the India map legs and the road timeline).
   ================================================================ */

/* ---- waypoint connectors: a corridor stitch entering each act ---- */
.act-map, .act-proof, .act-voice, .act-clients { position: relative; }

.act-map::before, .act-proof::before, .act-voice::before, .act-clients::before {
  content: "";
  position: absolute;
  top: 0;
  width: 2px;
  height: clamp(64px, 9vh, 108px);
  background-image: repeating-linear-gradient(to bottom, rgba(242, 96, 12, 0.55) 0 6px, transparent 6px 14px);
  pointer-events: none;
}

.act-map::after, .act-proof::after, .act-voice::after, .act-clients::after {
  content: "";
  position: absolute;
  top: clamp(64px, 9vh, 108px);
  width: 9px;
  height: 9px;
  margin-left: -3.5px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(242, 96, 12, 0.14);
  pointer-events: none;
}

.act-map::before, .act-map::after { left: 11%; }
.act-proof::before, .act-proof::after { left: 76%; }
.act-voice::before, .act-voice::after { left: 18%; }
.act-clients::before, .act-clients::after { left: 68%; }

@media (prefers-reduced-motion: no-preference) {
  .act-map::before, .act-proof::before, .act-voice::before, .act-clients::before {
    animation: route-crawl 2.6s linear infinite;
  }
}

@keyframes route-crawl { to { background-position: 0 14px; } }

/* ---- act I to II: the statement is a paper sheet rising over the dawn ---- */
.act-statement {
  position: relative;
  z-index: 5;
  margin-top: calc(-1 * clamp(48px, 7vh, 84px));
  border-radius: clamp(26px, 4vw, 44px) clamp(26px, 4vw, 44px) 0 0;
  padding-top: clamp(120px, 16vh, 210px);
}

/* ---- photography as texture: a field print pinned beside the claim ---- */
.act-statement .wrap { position: relative; }

.statement-chip {
  position: absolute;
  right: clamp(0px, 2vw, 30px);
  top: -16px;
  width: clamp(150px, 15vw, 230px);
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  transform: rotate(-2.5deg);
  border: 1px solid rgba(17, 19, 24, 0.14);
  box-shadow: 0 26px 60px rgba(17, 19, 24, 0.2);
}

.statement-chip.reveal { transform: rotate(-2.5deg) translateY(16px); }
.statement-chip.reveal.in { transform: rotate(-2.5deg); }

.statement-chip img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%; }

/* ---- act III: the spread hangs over the first chapter ---- */
.act-spread { z-index: 6; padding-bottom: 0; }
.spread { margin-bottom: calc(-1 * clamp(56px, 9vh, 120px)); }

.plate { border-radius: 20px; }
.plate-a img { object-position: 50% 62%; }
.plate-b img { object-position: 50% 55%; }
.plate-c img { object-position: 50% 22%; }

/* ---- act IV: chapters slide over each other as rounded sheets ---- */
.chapter { border-radius: clamp(24px, 3.5vw, 40px) clamp(24px, 3.5vw, 40px) 0 0; }

@media (min-width: 1021px) {
  .chapter .ch-media {
    top: clamp(24px, 6svh, 64px);
    bottom: clamp(24px, 6svh, 64px);
    width: 55%;
  }
  .chapter:nth-child(odd) .ch-media { right: 0; clip-path: none; border-radius: 28px 0 0 28px; }
  .chapter:nth-child(even) .ch-media { left: 0; clip-path: none; border-radius: 0 28px 28px 0; }
}

.chapter:nth-child(1) .ch-media img { object-position: 50% 62%; }
.chapter:nth-child(2) .ch-media img { object-position: 50% 58%; }
.chapter:nth-child(3) .ch-media img { object-position: 50% 45%; }
.chapter:nth-child(4) .ch-media img { object-position: 50% 55%; }

/* ---- act V: the map sheet sits off-axis ---- */
.act-map { padding-top: clamp(120px, 16vh, 200px); }
.map-head { margin-left: clamp(0px, 5vw, 110px); }
.routemap { border-radius: 30px; }

/* ---- act VI: proof gets more air, voice reads from the right ---- */
.act-proof { padding-top: clamp(110px, 15vh, 190px); }
.act-voice { padding-top: clamp(100px, 14vh, 170px); }
.voice { margin-left: clamp(0px, 10vw, 220px); }

/* ---- act VII: clients breathe, finale rises as the closing sheet ---- */
.act-clients { padding-top: clamp(100px, 14vh, 170px); }

.act-finale {
  border-radius: clamp(26px, 4vw, 44px) clamp(26px, 4vw, 44px) 0 0;
  margin-top: calc(-1 * clamp(28px, 4vh, 52px));
  z-index: 4;
}

/* ---- recompose on small screens ---- */
@media (max-width: 1020px) {
  .act-statement { margin-top: -30px; border-radius: 22px 22px 0 0; padding-top: 90px; }
  .statement-chip { display: none; }
  .act-spread { padding-bottom: 60px; }
  .spread { margin-bottom: 0; }
  .chapter { border-radius: 22px 22px 0 0; }
  .map-head, .voice { margin-left: 0; }
  .act-finale { margin-top: -18px; border-radius: 22px 22px 0 0; }
  .act-map::before, .act-proof::before, .act-voice::before, .act-clients::before { height: 52px; }
  .act-map::after, .act-proof::after, .act-voice::after, .act-clients::after { top: 52px; }
}

/* clients act now follows the statement near the top of the page */
.act-statement { padding-bottom: clamp(70px, 10vh, 130px); }
.act-clients { padding-top: clamp(60px, 9vh, 110px); }
.act-clients::before { height: clamp(48px, 7vh, 80px); }
.act-clients::after { top: clamp(48px, 7vh, 80px); }

/* ================================================================
   FIRST LIGHT HERO - photography breathing in the dawn
   Real BFC prints float in the morning air: feathered masks melt
   them into the sky, parallax gives them depth against the WebGL
   corridor. Never a flat background.
   ================================================================ */

.fl-photos { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.fl-photo {
  position: absolute;
  overflow: hidden;
  border-radius: 26px;
  will-change: transform;
}

.fl-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) brightness(1.05) contrast(0.97);
}

.fl-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(205deg, rgba(255, 200, 140, 0.28), rgba(253, 235, 215, 0.05) 45%, rgba(234, 243, 250, 0.18));
  mix-blend-mode: screen;
}

.fl-photo-a {
  right: clamp(-30px, 2.5vw, 70px);
  top: 15%;
  width: clamp(250px, 23vw, 400px);
  aspect-ratio: 4 / 5;
  transform: rotate(2.2deg);
  -webkit-mask-image: radial-gradient(135% 135% at 45% 42%, #000 52%, transparent 96%);
  mask-image: radial-gradient(135% 135% at 45% 42%, #000 52%, transparent 96%);
  opacity: 0.95;
}

.fl-photo-a img { object-position: 50% 60%; }

.fl-photo-b {
  right: clamp(180px, 20vw, 350px);
  top: 51%;
  width: clamp(140px, 12vw, 210px);
  aspect-ratio: 1 / 1.1;
  transform: rotate(-3deg);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 30px 70px rgba(18, 52, 71, 0.18);
  -webkit-mask-image: radial-gradient(150% 150% at 50% 40%, #000 62%, transparent 100%);
  mask-image: radial-gradient(150% 150% at 50% 40%, #000 62%, transparent 100%);
  opacity: 0.96;
}

.fl-photo-b img { object-position: 50% 18%; }

/* keep the live chip pinned above the large print */
.fl-chip { z-index: 3; }

@media (max-width: 1350px) {
  .fl-photo-a { width: clamp(230px, 20vw, 320px); opacity: 0.85; }
  .fl-photo-b { display: none; }
}

@media (max-width: 1020px) {
  .fl-photos { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .fl-photo { transform: none !important; }
}

/* ================================================================
   FIRST LIGHT HERO v3 - the dawn film plate
   A full-bleed BFC convoy plate breathes below an alpha-blended
   shader sky. Route ribbons and dust render OVER the photograph,
   grain and a light vignette grade the whole frame like film.
   ================================================================ */

/* layer order: film plate 1 < WebGL air 2 < copy 3 < chip 4 < grade 5-6 */
.fl-film {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 64svh;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to top, #000 56%, transparent 100%);
  mask-image: linear-gradient(to top, #000 56%, transparent 100%);
  will-change: transform;
}

.fl-film img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 66%;
  filter: saturate(1.06) brightness(1.04) contrast(1.02);
  transform-origin: 55% 62%;
  animation: fl-kenburns 46s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes fl-kenburns {
  from { transform: scale(1.1); }
  to { transform: scale(1.22) translate(-2.2%, -1.8%); }
}

/* dawn grade over the plate: warm sunlight from the upper right,
   a whisper of cool shadow at the base for the metric glass */
.fl-film::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(205deg, rgba(255, 196, 130, 0.34), rgba(255, 240, 220, 0.08) 42%, rgba(18, 52, 71, 0.12) 96%);
}

/* a slow shaft of morning light sweeping the convoy */
.fl-film::before {
  content: "";
  position: absolute; inset: -10% -30%;
  z-index: 1;
  background: linear-gradient(78deg, transparent 42%, rgba(255, 226, 180, 0.5) 50%, transparent 58%);
  mix-blend-mode: soft-light;
  animation: fl-shaft 13s ease-in-out infinite;
}

@keyframes fl-shaft {
  0%, 12% { transform: translateX(-46%); }
  55%, 100% { transform: translateX(46%); }
}

#dawn-canvas { z-index: 2; pointer-events: none; }
.fl-inner { z-index: 3; }
.fl-scroll { z-index: 3; }
.fl-chip { z-index: 4; }

/* film grade: soft light-bloom vignette + fine grain */
.fl-hero::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 5;
  pointer-events: none;
  background: radial-gradient(125% 105% at 50% 44%, transparent 58%, rgba(255, 244, 230, 0.42) 100%);
}

.fl-hero::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 6;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='180' height='180' filter='url(%23n)' opacity='0.55'/></svg>");
}

/* secondary action steps back to a quiet text link - one true CTA */
.fl-textlink {
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #123447;
  padding: 16px 4px;
  border-bottom: 2px solid rgba(242, 96, 12, 0.55);
  display: inline-block;
  transition: color 0.3s, border-color 0.3s;
}

.fl-textlink:hover { color: #F2600C; border-color: #F2600C; }

/* metrics float on the plate: lighter glass, softer edge */
.fl-metric {
  background: rgba(253, 250, 244, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 18px 44px rgba(18, 52, 71, 0.12);
}

@media (max-width: 1020px) {
  .fl-film { height: 52svh; }
  .fl-film img { object-position: 62% 66%; }
}

@media (prefers-reduced-motion: reduce) {
  .fl-film img, .fl-film::before { animation: none; }
}

/* ================================================================
   FIRST LIGHT HERO v4 - lens depth, choreography, credit-line metrics
   ================================================================ */

/* ---- near-field blur pass: soft foreground, sharp midground ---- */
.fl-near {
  position: absolute;
  left: -4%; right: -4%; bottom: -6%;
  height: 30svh;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to top, #000 42%, transparent 100%);
  mask-image: linear-gradient(to top, #000 42%, transparent 100%);
  will-change: transform;
  opacity: 0.85;
}

.fl-near img {
  width: 100%; height: 165%;
  object-fit: cover;
  object-position: 50% 88%;
  filter: blur(13px) saturate(1.1) brightness(1.05);
  transform: scale(1.2);
}

/* ---- entrance choreography: the shot develops on load ---- */
@keyframes fl-enter {
  from { opacity: 0; transform: translateY(26px); filter: blur(10px); }
  to { opacity: 1; transform: none; filter: none; }
}

@keyframes fl-plate-in {
  from { opacity: 0; transform: translateY(3.5%) scale(1.03); }
  to { opacity: 1; transform: none; }
}

.fl-film { animation: fl-plate-in 1.8s var(--ease) backwards; }
.fl-near { animation: fl-plate-in 2.2s var(--ease) backwards; }
.fl-eyebrow { animation: fl-enter 1s var(--ease) 0.15s both; }
.fl-lede { animation: fl-enter 1.1s var(--ease) 0.75s both; }
.fl-actions { animation: fl-enter 1.1s var(--ease) 0.95s both; }
.fl-metrics { animation: fl-enter 1.2s var(--ease) 1.2s both; }
.fl-chip { animation: fl-enter 1.2s var(--ease) 1.5s both, fl-float 7s ease-in-out 2.7s infinite; }
.fl-scroll { animation: fl-enter 1.2s var(--ease) 1.8s both; }

/* ---- metrics: one frosted credit line, not four cards ---- */
.fl-metrics {
  display: flex;
  gap: 0;
  margin-top: 64px;
  border-radius: 20px;
  background: rgba(253, 250, 244, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(18, 52, 71, 0.13);
  overflow: hidden;
  max-width: 880px;
}

.fl-metric {
  flex: 1 1 0;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 20px 26px;
}

.fl-metric + .fl-metric { border-left: 1px solid rgba(18, 52, 71, 0.1); }

.fl-metric b { font-size: 32px; }

@media (max-width: 1020px) {
  .fl-near { display: none; }
  .fl-metrics { display: grid; grid-template-columns: 1fr 1fr; max-width: none; }
  .fl-metric + .fl-metric { border-left: none; }
  .fl-metric:nth-child(even) { border-left: 1px solid rgba(18, 52, 71, 0.1); }
  .fl-metric:nth-child(n+3) { border-top: 1px solid rgba(18, 52, 71, 0.1); }
}

@media (prefers-reduced-motion: reduce) {
  .fl-film, .fl-near, .fl-eyebrow, .fl-lede, .fl-actions, .fl-metrics, .fl-chip, .fl-scroll {
    animation: none;
  }
}

/* ================================================================
   FIRST LIGHT HERO v5 - one frame of a brand film
   One photograph, three quiet motion layers: a breathing plate,
   a sunrise bloom, a single route line. Nothing else moves.
   ================================================================ */

/* the plate: full-screen, top edge dissolving into the dawn sky */
.fl-plate {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  will-change: transform;
  -webkit-mask-image: linear-gradient(to top, #000 60%, rgba(0, 0, 0, 0.4) 84%, transparent 100%);
  mask-image: linear-gradient(to top, #000 60%, rgba(0, 0, 0, 0.4) 84%, transparent 100%);
  animation: fl-plate-in 1.8s var(--ease) backwards;
}

.fl-plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 64%;
  filter: saturate(1.05) brightness(1.03);
  transform-origin: 56% 58%;
  animation: fl-kb2 55s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes fl-kb2 {
  from { transform: scale(1.05); }
  to { transform: scale(1.12) translate(-1.4%, -1%); }
}

/* sunrise bloom breathing over the horizon */
.fl-dawn {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(58% 44% at 71% 40%, rgba(255, 196, 120, 0.5), rgba(255, 214, 170, 0.24) 42%, transparent 72%);
  animation: fl-bloom 9s ease-in-out infinite;
}

@keyframes fl-bloom { 0%, 100% { opacity: 0.75; } 50% { opacity: 1; } }

/* one route line easing toward the sun */
.fl-route {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#flr {
  stroke: rgba(242, 96, 12, 0.38);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 2 10;
  animation: flr-drift 2.8s linear infinite;
}

@keyframes flr-drift { to { stroke-dashoffset: -12; } }

.flr-halo { fill: rgba(255, 178, 94, 0.28); }
.flr-dot { fill: #F2600C; }

/* quieter grade: soft bloom vignette only, no grain layer */
.fl-hero::after { content: none; }

.fl-hero::before {
  background: radial-gradient(130% 110% at 50% 42%, transparent 62%, rgba(255, 244, 230, 0.3) 100%);
}

.fl-inner { padding: 150px 0 190px; }

/* metric strip: a quiet credit line resting on the frame's base */
.fl-band {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  padding: 18px 0 calc(24px + clamp(48px, 7vh, 84px));
  background: linear-gradient(to top, rgba(15, 22, 30, 0.44), rgba(15, 22, 30, 0.12) 68%, transparent);
}

.fl-band .fl-metrics {
  display: flex;
  gap: 0;
  margin: 0 auto;
  max-width: var(--wrap);
  width: var(--wrap);
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: visible;
}

.fl-band .fl-metric {
  flex: 1 1 0;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 6px 26px 2px;
}

.fl-band .fl-metric:first-child { padding-left: 0; }
.fl-band .fl-metric + .fl-metric { border-left: 1px solid rgba(255, 255, 255, 0.22); }

.fl-band .fl-metric b { color: #FFF8EE; font-size: 30px; text-shadow: 0 1px 12px rgba(9, 14, 20, 0.45); }
.fl-band .fl-metric b small { color: #FFB25E; }
.fl-band .fl-metric span { color: rgba(255, 246, 235, 0.82); }

@media (max-width: 1020px) {
  .fl-plate img { object-position: 60% 62%; }
  .fl-inner { padding: 120px 0 40px; }
  .fl-band { position: relative; padding: 10px 0 64px; background: linear-gradient(to top, rgba(15, 22, 30, 0.5), rgba(15, 22, 30, 0.2)); }
  .fl-band .fl-metrics { display: grid; grid-template-columns: 1fr 1fr; }
  .fl-band .fl-metric { padding: 12px 18px; border: none; }
  .fl-band .fl-metric:first-child { padding-left: 18px; }
  .fl-band .fl-metric + .fl-metric { border: none; }
  .fl-band .fl-metric:nth-child(even) { border-left: 1px solid rgba(255, 255, 255, 0.2); }
  .fl-band .fl-metric:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, 0.2); }
  .fl-hero { display: flex; flex-direction: column; justify-content: flex-end; }
  .fl-inner { width: calc(100% - 48px); }
}

@media (prefers-reduced-motion: reduce) {
  .fl-plate, .fl-plate img, .fl-dawn, #flr { animation: none; }
  .flr-mover { display: none; }
}

/* ================================================================
   FIRST LIGHT HERO v6 - the luxury cut
   Fewer, slower movements. More air. One calm rise per element.
   ================================================================ */

/* slower, softer entrance language */
@keyframes fl-enter {
  from { opacity: 0; transform: translateY(18px); filter: blur(5px); }
  to { opacity: 1; transform: none; filter: none; }
}

@keyframes fl-kb2 {
  from { transform: scale(1.035); }
  to { transform: scale(1.085) translate(-1%, -0.8%); }
}

.fl-plate { animation-duration: 2.4s; }

.fl-plate img {
  animation-duration: 75s;
  filter: saturate(1.07) contrast(1.05) brightness(1.03);
}

.fl-dawn {
  animation-duration: 14s;
  background: radial-gradient(58% 44% at 71% 40%, rgba(255, 196, 120, 0.42), rgba(255, 214, 170, 0.2) 42%, transparent 72%);
}

/* the route line whispers; the halo was decoration - gone */
#flr { stroke: rgba(242, 96, 12, 0.26); animation-duration: 6s; }
.flr-halo { display: none; }
.flr-dot { fill: rgba(242, 96, 12, 0.85); }

/* lighter grade */
.fl-hero::before {
  background: radial-gradient(130% 110% at 50% 42%, transparent 66%, rgba(255, 244, 230, 0.22) 100%);
}

/* generous air */
.fl-inner { padding: clamp(170px, 21vh, 250px) 0 190px; }

.fl-display {
  margin: 28px 0 30px;
  line-height: 1.06;
  animation: fl-enter 1.5s var(--ease) 0.4s both;
}

.fl-lede { font-size: 17.5px; line-height: 1.8; }

.fl-actions { margin-top: 46px; gap: 18px; }

/* stretched, calmer choreography */
.fl-eyebrow { animation: fl-enter 1.1s var(--ease) 0.2s both; }
.fl-lede { animation: fl-enter 1.2s var(--ease) 1s both; }
.fl-actions { animation: fl-enter 1.2s var(--ease) 1.25s both; }
.fl-metrics { animation: fl-enter 1.3s var(--ease) 1.55s both; }

/* the credit line rests lighter */
.fl-band {
  padding-top: 24px;
  background: linear-gradient(to top, rgba(15, 22, 30, 0.38), rgba(15, 22, 30, 0.1) 68%, transparent);
}

@media (prefers-reduced-motion: reduce) {
  .fl-display, .fl-eyebrow, .fl-lede, .fl-actions, .fl-metrics { animation: none; }
}

/* ================================================================
   MIDPAGE MOTION - calm editorial scroll
   Chapters flow normally now (no sticky sheet stacking) and
   reveals are a simple, quiet fade-rise. No blur while scrolling.
   ================================================================ */

.chapter {
  position: relative;
  top: auto;
  min-height: 88svh;
  box-shadow: 0 -16px 40px rgba(17, 19, 24, 0.08);
}

.reveal {
  filter: none;
  transform: translateY(14px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

/* ================================================================
   HERO v7 - THE EDITORIAL SPLIT
   Type lives on calm cream; the fleet is hung like a photograph.
   The two meet in a feathered dawn seam. Text is always readable,
   the image is always art, and only three things move - slowly.
   ================================================================ */

.fh-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(460px, 46%) 1fr;
  background: linear-gradient(165deg, #FDFAF4 0%, #F8F2E7 55%, #FBEEDC 100%);
  overflow: hidden;
}

/* ---------------- the copy panel ---------------- */
.fh-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(120px, 15vh, 180px);
  padding-bottom: clamp(90px, 12vh, 150px);
  padding-right: clamp(30px, 4vw, 72px);
  padding-left: max(24px, calc((100vw - 1360px) / 2));
}

.fh-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #B65708;
  display: flex;
  align-items: center;
  gap: 14px;
}

.fh-eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #F2600C, #FFB25E);
}

.fh-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(48px, 4.9vw, 92px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #15222D;
  margin: 30px 0 28px;
}

.fh-title em {
  font-style: italic;
  background: linear-gradient(90deg, #E4560A, #FF9E3D);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fh-lede {
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.85;
  color: #3D5568;
  max-width: 47ch;
}

.fh-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.fh-btn {
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(92deg, #F2600C, #FF9E3D);
  padding: 17px 38px;
  border-radius: 100px;
  box-shadow: 0 16px 38px rgba(242, 96, 12, 0.28);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  display: inline-block;
}

.fh-btn:hover { transform: translateY(-3px); box-shadow: 0 24px 48px rgba(242, 96, 12, 0.36); }

.fh-link {
  font-family: var(--font-text);
  font-size: 14.5px;
  font-weight: 700;
  color: #15222D;
  padding: 4px 2px;
  border-bottom: 2px solid rgba(242, 96, 12, 0.5);
  transition: color 0.3s, border-color 0.3s;
}

.fh-link:hover { color: #F2600C; border-color: #F2600C; }

/* metrics: a quiet ledger row under a hairline */
.fh-metrics {
  display: flex;
  gap: clamp(28px, 3.4vw, 60px);
  margin-top: clamp(48px, 8vh, 86px);
  padding-top: 28px;
  border-top: 1px solid rgba(21, 34, 45, 0.12);
}

.fh-metrics .fl-metric {
  flex: 0 1 auto;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.fh-metrics .fl-metric b {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 2.4vw, 38px);
  color: #15222D;
  display: block;
}

.fh-metrics .fl-metric b small { color: #F2600C; font-size: 0.62em; }

.fh-metrics .fl-metric span {
  display: block;
  margin-top: 5px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6B7F8E;
}

/* ---------------- the photograph ---------------- */
.fh-stage { position: relative; z-index: 1; min-height: 100svh; }

.fh-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 18%);
  mask-image: linear-gradient(to right, transparent 0, #000 18%);
  animation: fh-in 2s var(--ease) backwards;
  will-change: transform;
}

.fh-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% 62%;
  filter: saturate(1.04) brightness(1.02);
  transform-origin: 45% 60%;
  animation: fh-kb 70s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes fh-kb {
  from { transform: scale(1.04); }
  to { transform: scale(1.1) translate(-1.2%, -0.8%); }
}

@keyframes fh-in {
  from { opacity: 0; transform: scale(1.015); }
  to { opacity: 1; transform: none; }
}

/* dawn grade on the photograph only */
.fh-dawn {
  position: absolute;
  inset: 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 18%);
  mask-image: linear-gradient(to right, transparent 0, #000 18%);
  background:
    radial-gradient(52% 42% at 66% 32%, rgba(255, 192, 116, 0.48), rgba(255, 214, 170, 0.2) 45%, transparent 72%),
    linear-gradient(200deg, rgba(255, 206, 150, 0.22), transparent 45%, rgba(21, 34, 45, 0.16) 100%);
  animation: fl-bloom 14s ease-in-out infinite;
}

/* one route line, drawn across the photograph */
.fh-route { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }

#fhr {
  stroke: rgba(255, 216, 170, 0.6);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 2 9;
  animation: flr-drift 6s linear infinite;
}

.fhr-dot { fill: #FFD9A6; }

/* ---------------- entrance: one calm sequence ---------------- */
.fh-eyebrow { animation: fl-enter 1s var(--ease) 0.2s both; }
.fh-title { animation: fl-enter 1.4s var(--ease) 0.4s both; }
.fh-lede { animation: fl-enter 1.2s var(--ease) 0.85s both; }
.fh-actions { animation: fl-enter 1.2s var(--ease) 1.05s both; }
.fh-metrics { animation: fl-enter 1.3s var(--ease) 1.3s both; }

/* ---------------- responsive ---------------- */
@media (max-width: 1200px) {
  .fh-hero { grid-template-columns: minmax(420px, 50%) 1fr; }
}

@media (max-width: 1020px) {
  .fh-hero { grid-template-columns: 1fr; }
  .fh-copy { padding: 130px 24px 48px; }
  .fh-stage { min-height: 54svh; order: 2; }
  .fh-media, .fh-dawn {
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 16%);
    mask-image: linear-gradient(to bottom, transparent 0, #000 16%);
  }
  .fh-media img { object-position: 50% 62%; }
  .fh-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 480px) {
  .fh-title { font-size: clamp(40px, 11vw, 52px); }
}

@media (prefers-reduced-motion: reduce) {
  .fh-media, .fh-media img, .fh-dawn, #fhr,
  .fh-eyebrow, .fh-title, .fh-lede, .fh-actions, .fh-metrics { animation: none; }
  .fh-route g { display: none; }
}

/* ================================================================
   HERO v8 - THE DAWN FREIGHT ATLAS
   A bright embossed atlas at sunrise. One glowing route crosses
   India, one convoy marker travels it. The route IS the motion.
   ================================================================ */

.fa-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: #15222D;
}

/* ---- sky: pearl to sunrise gold, sun breathing upper right ---- */
.fa-sky {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(178deg, #F2F7FA 0%, #FAF6EE 48%, #FCEBD3 100%);
}

.fa-sky::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(46% 38% at 76% 24%, rgba(255, 196, 120, 0.5), rgba(255, 216, 170, 0.2) 45%, transparent 72%);
  animation: fa-bloom 15s ease-in-out infinite;
}

@keyframes fa-bloom { 0%, 100% { opacity: 0.75; } 50% { opacity: 1; } }

/* ---- the tilted atlas plane ---- */
.fa-par { position: absolute; inset: 0; z-index: 1; pointer-events: none; will-change: transform; }

.fa-stage {
  position: absolute;
  inset: 0;
  perspective: 1500px;
  animation: fa-settle 2.4s var(--ease) backwards;
}

@keyframes fa-settle {
  from { opacity: 0; transform: translateY(34px); }
  to { opacity: 1; transform: none; }
}

.fa-plane {
  position: absolute;
  left: -8%; right: -8%;
  top: -6%; bottom: -14%;
  transform: rotateX(26deg) rotateZ(-3deg);
  transform-origin: 50% 64%;
}

.fa-plane svg { width: 100%; height: 100%; }

/* distance haze at the top of the plane */
.fa-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(244, 248, 251, 0.95), rgba(244, 248, 251, 0.4) 26%, transparent 46%);
}

/* ---- atlas linework: embossed, quiet ---- */
.fa-mesh { stroke: #FFFFFF; stroke-width: 2; opacity: 0.85; }
.fa-mesh-sh { stroke: #D3DDE4; stroke-width: 2; opacity: 0.7; }

.fa-alt { stroke: #B9C6CF; stroke-width: 2; stroke-dasharray: 3 11; opacity: 0.65; stroke-linecap: round; }

/* ---- the route: warm glow, gradient core, slow draw-in ---- */
.fa-glow { stroke: #FFB25E; stroke-linecap: round; }
.fa-glow path:nth-child(1) { opacity: 0.14; }
.fa-glow path:nth-child(2) { opacity: 0.3; }
.fa-glow { animation: fa-fadein 1.6s ease 1.6s backwards; }

#fa-route {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: fa-draw 3s var(--ease) 0.9s forwards;
}

@keyframes fa-draw { to { stroke-dashoffset: 0; } }
@keyframes fa-fadein { from { opacity: 0; } }

/* ---- pins ---- */
.fa-pin { animation: fa-fadein 1.2s ease 2.4s backwards; }
.fa-pin-core { fill: #F2600C; }
.fa-pin-ring { fill: none; stroke: rgba(242, 96, 12, 0.45); stroke-width: 2; }
.fa-pin-ring2 { stroke: rgba(242, 96, 12, 0.22); }

.fa-truck { animation: fa-fadein 1s ease 3s backwards; }

/* ---- copy ---- */
.fa-copy {
  position: relative;
  z-index: 3;
  max-width: 640px;
  padding-top: clamp(150px, 18vh, 230px);
  padding-left: max(24px, calc((100vw - 1360px) / 2));
  padding-right: 24px;
}

.fa-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #B65708;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: fl-enter 1s var(--ease) 0.2s both;
}

.fa-eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #F2600C, #FFB25E);
}

.fa-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(48px, 5.2vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #15222D;
  margin: 28px 0 26px;
  animation: fl-enter 1.4s var(--ease) 0.4s both;
}

.fa-title em {
  font-style: italic;
  background: linear-gradient(90deg, #E4560A, #FF9E3D);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fa-lede {
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.85;
  color: #3D5568;
  max-width: 44ch;
  animation: fl-enter 1.2s var(--ease) 0.8s both;
}

.fa-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 42px;
  flex-wrap: wrap;
  animation: fl-enter 1.2s var(--ease) 1s both;
}

.fa-btn {
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(92deg, #F2600C, #FF9E3D);
  padding: 17px 38px;
  border-radius: 100px;
  box-shadow: 0 16px 38px rgba(242, 96, 12, 0.26);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  display: inline-block;
}

.fa-btn:hover { transform: translateY(-3px); box-shadow: 0 24px 48px rgba(242, 96, 12, 0.34); }

.fa-link {
  font-family: var(--font-text);
  font-size: 14.5px;
  font-weight: 700;
  color: #15222D;
  padding: 4px 2px;
  border-bottom: 2px solid rgba(242, 96, 12, 0.5);
  transition: color 0.3s, border-color 0.3s;
}

.fa-link:hover { color: #F2600C; border-color: #F2600C; }

/* ---- the credit line ---- */
.fa-strip {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  padding: 20px 0 calc(26px + clamp(48px, 7vh, 84px));
  background: linear-gradient(to top, rgba(253, 250, 244, 0.92), rgba(253, 250, 244, 0.4) 70%, transparent);
  animation: fl-enter 1.3s var(--ease) 1.3s both;
}

.fa-strip-row {
  display: flex;
  gap: clamp(28px, 4vw, 70px);
  border-top: 1px solid rgba(21, 34, 45, 0.12);
  padding-top: 22px;
}

.fa-m b {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(26px, 2.3vw, 36px);
  color: #15222D;
  display: block;
}

.fa-m b small { color: #F2600C; font-size: 0.62em; }

.fa-m span {
  display: block;
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5E7484;
}

/* ---- responsive ---- */
@media (max-width: 1020px) {
  .fa-plane { transform: rotateX(16deg) rotateZ(-2deg); left: -20%; right: -20%; }
  .fa-copy { padding-top: 130px; max-width: none; }
  .fa-strip { position: relative; margin-top: 56svh; padding: 0 0 30px; }
  .fa-strip-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
}

@media (max-width: 720px) {
  .fa-title { font-size: clamp(42px, 11vw, 56px); }
  .fa-strip { margin-top: 46svh; }
}

@media (prefers-reduced-motion: reduce) {
  .fa-sky::after, .fa-stage, .fa-glow, .fa-pin, .fa-truck,
  .fa-eyebrow, .fa-title, .fa-lede, .fa-actions, .fa-strip { animation: none; }
  #fa-route { animation: none; stroke-dashoffset: 0; }
  .fa-truck { display: none; }
}

/* ================================================================
   HERO v8.1 - THE LUXURY CUT + ALIGNMENT CLEANUP
   40% less linework. The route is the only story. Slower, calmer.
   ================================================================ */

/* ---- quieter atlas: fewer, fainter lines ---- */
.fa-mesh { opacity: 0.5; }
.fa-mesh-sh { opacity: 0.32; }

.fa-mesh path:nth-child(4), .fa-mesh-sh path:nth-child(4),
.fa-mesh path:nth-child(7), .fa-mesh-sh path:nth-child(7),
.fa-mesh path:nth-child(9), .fa-mesh-sh path:nth-child(9) { display: none; }

/* deeper, more believable distance */
.fa-plane { transform: rotateX(30deg) rotateZ(-3deg); }

.fa-stage::after {
  background: linear-gradient(to bottom, rgba(244, 248, 251, 0.98), rgba(244, 248, 251, 0.55) 30%, transparent 54%);
}

.fa-stage { animation-duration: 3s; }

/* softer sun */
.fa-sky::after {
  background: radial-gradient(46% 38% at 76% 24%, rgba(255, 196, 120, 0.38), rgba(255, 216, 170, 0.16) 45%, transparent 72%);
  animation-duration: 18s;
}

/* the route: tighter glow, stronger core, slower draw */
.fa-glow path:nth-child(1) { stroke-width: 20; opacity: 0.12; }
.fa-glow path:nth-child(2) { stroke-width: 9; opacity: 0.26; }

#fa-route { stroke-width: 5; animation-duration: 4.2s; animation-delay: 1.1s; }

.fa-pin-ring { stroke: rgba(242, 96, 12, 0.35); }

/* ---- calmer type, more air ---- */
.fa-copy { padding-top: clamp(160px, 20vh, 260px); max-width: 660px; }

.fa-title {
  font-size: clamp(46px, 4.9vw, 88px);
  line-height: 1.08;
  letter-spacing: -0.005em;
  margin: 34px 0 30px;
  animation-duration: 1.6s;
  animation-delay: 0.5s;
}

.fa-eyebrow { letter-spacing: 0.24em; color: #A85206; }

.fa-lede { line-height: 1.9; max-width: 42ch; animation-duration: 1.4s; animation-delay: 1s; }

.fa-actions { margin-top: 48px; animation-duration: 1.4s; animation-delay: 1.25s; }

.fa-strip { animation-duration: 1.5s; animation-delay: 1.6s; }

/* ================================================================
   ALIGNMENT CLEANUP - straighten what read as untidy
   ================================================================ */

/* the pinned print sits square now */
.statement-chip { transform: none; top: 4px; }
.statement-chip.reveal { transform: translateY(14px); }
.statement-chip.reveal.in { transform: none; }

/* no tilted plates */
.plate-c { transform: none; }

/* section headers return to the grid */
.map-head { margin-left: 0; }
.voice { margin-left: 0; }

/* gentler photo-spread overlap into the chapters */
.spread { margin-bottom: calc(-1 * clamp(32px, 5vh, 60px)); }

/* ================================================================
   HERO v9 - CINEMATIC DAWN LOGISTICS WORLD
   A low aerial camera over a pearl terrain at sunrise. One glass-
   glow route sweeps to the upper right; one convoy crosses it.
   Copy holds the left six columns of a disciplined grid.
   ================================================================ */

.cw-hero {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  overflow: hidden;
  color: #15222D;
}

.cw-sky {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(176deg, #F1F6FA 0%, #F9F5ED 46%, #FBE9CF 100%);
}

#cw-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  animation: cw-in 2.2s var(--ease) backwards;
}

@keyframes cw-in { from { opacity: 0; } to { opacity: 1; } }

/* atmosphere: far fog above, warm settle below */
.cw-haze {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(243, 248, 251, 0.92), rgba(243, 248, 251, 0.3) 24%, transparent 44%),
    linear-gradient(to top, rgba(252, 244, 232, 0.85), transparent 30%);
}

/* readability veil behind the copy columns only */
.cw-haze::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(247, 244, 238, 0.88) 0%, rgba(247, 244, 238, 0.55) 34%, transparent 58%);
}

/* static fallback frame (no WebGL / reduced motion) */
.cw-hero.cw-still .cw-sky {
  background:
    radial-gradient(50% 40% at 74% 30%, rgba(255, 196, 120, 0.45), transparent 70%),
    linear-gradient(176deg, #F1F6FA 0%, #F9F5ED 46%, #FBE9CF 100%);
}

/* ---- the 12-column stage ---- */
.cw-grid {
  position: relative;
  z-index: 3;
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  min-height: 100%;
  align-items: center;
}

.cw-copy { grid-column: 1 / span 6; padding: 140px 0 110px; }

.cw-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #A85206;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: fl-enter 1s var(--ease) 0.3s both;
}

.cw-eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #F2600C, #FFB25E);
}

.cw-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(46px, 4.6vw, 82px);
  line-height: 1.08;
  letter-spacing: -0.005em;
  color: #15222D;
  margin: 32px 0 28px;
  animation: fl-enter 1.6s var(--ease) 0.5s both;
}

.cw-title em {
  font-style: italic;
  background: linear-gradient(90deg, #E4560A, #FF9E3D);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cw-lede {
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.9;
  color: #3D5568;
  max-width: 42ch;
  animation: fl-enter 1.4s var(--ease) 1s both;
}

.cw-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 44px;
  flex-wrap: wrap;
  animation: fl-enter 1.4s var(--ease) 1.25s both;
}

.cw-btn {
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(92deg, #F2600C, #FF9E3D);
  padding: 17px 38px;
  border-radius: 100px;
  box-shadow: 0 16px 38px rgba(242, 96, 12, 0.26);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  display: inline-block;
}

.cw-btn:hover { transform: translateY(-3px); box-shadow: 0 24px 48px rgba(242, 96, 12, 0.34); }

.cw-link {
  font-family: var(--font-text);
  font-size: 14.5px;
  font-weight: 700;
  color: #15222D;
  padding: 4px 2px;
  border-bottom: 2px solid rgba(242, 96, 12, 0.5);
  transition: color 0.3s, border-color 0.3s;
}

.cw-link:hover { color: #F2600C; border-color: #F2600C; }

/* metrics: hairline ledger, 48px under the actions */
.cw-metrics {
  display: flex;
  gap: clamp(26px, 3vw, 52px);
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(21, 34, 45, 0.12);
  animation: fl-enter 1.5s var(--ease) 1.55s both;
}

.cw-m b {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(25px, 2.1vw, 34px);
  color: #15222D;
  display: block;
}

.cw-m b small { color: #F2600C; font-size: 0.62em; }

.cw-m span {
  display: block;
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5E7484;
}

/* ---- responsive ---- */
@media (max-width: 1200px) {
  .cw-copy { grid-column: 1 / span 7; }
}

@media (max-width: 1020px) {
  .cw-grid { display: block; min-height: 0; }
  .cw-copy { padding: 130px 0 60px; }
  .cw-hero { min-height: 100svh; }
  #cw-canvas { opacity: 0.85; }
  .cw-haze::after { background: linear-gradient(180deg, rgba(247, 244, 238, 0.8) 0%, rgba(247, 244, 238, 0.45) 55%, transparent 80%); }
  .cw-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
}

@media (max-width: 480px) {
  .cw-title { font-size: clamp(40px, 10.5vw, 52px); }
}

@media (prefers-reduced-motion: reduce) {
  #cw-canvas, .cw-eyebrow, .cw-title, .cw-lede, .cw-actions, .cw-metrics { animation: none; }
}

/* ================================================================
   HERO v10 - premium light command frame
   Real BFC photography leads. Motion is layered and restrained:
   photo depth, route light, and a cinematic opening beat.
   ================================================================ */

.cw-hero {
  --mx: 0;
  --my: 0;
  --sy: 0;
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: #12202B;
  background: #F8F3EA;
  isolation: isolate;
}

.cw-backdrop {
  position: absolute;
  inset: -6% -4%;
  z-index: 0;
  opacity: 0.18;
  filter: saturate(0.85) contrast(0.94) blur(1px);
  transform: translate3d(calc(var(--mx) * -8px), calc(var(--my) * -5px + var(--sy) * 1px), 0) scale(1.04);
}

.cw-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cw-light-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(760px 420px at 74% 18%, rgba(255, 174, 89, 0.34), transparent 64%),
    radial-gradient(700px 420px at 54% 78%, rgba(255, 255, 255, 0.78), transparent 70%),
    linear-gradient(92deg, rgba(248, 243, 234, 0.98) 0%, rgba(248, 243, 234, 0.86) 39%, rgba(248, 243, 234, 0.28) 66%, rgba(248, 243, 234, 0.72) 100%);
}

.cw-light-field::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(18, 32, 43, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 32, 43, 0.12) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(to right, transparent, #000 35%, #000 82%, transparent);
}

.cw-grid {
  position: relative;
  z-index: 2;
  width: min(1480px, calc(100% - 56px));
  min-height: 100svh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, 0.88fr) minmax(520px, 1.12fr);
  gap: 52px;
  align-items: center;
  padding: 122px 0 118px;
}

.cw-copy {
  grid-column: auto;
  padding: 0;
  max-width: 650px;
}

.cw-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-text);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #A64B05;
  animation: premium-rise 900ms var(--ease) 160ms both;
}

.cw-eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #F2600C, #FFB25E);
}

.cw-title {
  margin: 28px 0 24px;
  max-width: 10.6em;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 82px;
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 400;
  color: #12202B;
  text-wrap: balance;
  animation: premium-rise 1100ms var(--ease) 330ms both;
}

.cw-title em {
  font-style: italic;
  color: #F2600C;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}

.cw-lede {
  max-width: 44ch;
  color: #4C6170;
  font-size: 18px;
  line-height: 1.82;
  animation: premium-rise 1000ms var(--ease) 520ms both;
}

.cw-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 38px;
  flex-wrap: wrap;
  animation: premium-rise 1000ms var(--ease) 700ms both;
}

.cw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, #111D28, #263748);
  color: #fff;
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 20px 42px rgba(18, 32, 43, 0.2), inset 0 1px rgba(255, 255, 255, 0.18);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
}

.cw-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 52px rgba(18, 32, 43, 0.28), inset 0 1px rgba(255, 255, 255, 0.22);
}

.cw-link {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 2px;
  border-bottom: 2px solid rgba(242, 96, 12, 0.45);
  color: #12202B;
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 800;
  transition: color 260ms var(--ease), border-color 260ms var(--ease);
}

.cw-link:hover {
  color: #E95B0B;
  border-color: #E95B0B;
}

.cw-stage {
  position: relative;
  min-height: 640px;
  perspective: 1400px;
  transform: translate3d(calc(var(--mx) * 6px), calc(var(--my) * 4px), 0);
  animation: premium-stage 1200ms var(--ease) 220ms both;
}

.cw-frame {
  position: absolute;
  inset: 72px 4% 64px 0;
  overflow: hidden;
  border-radius: 8px;
  background: #E9E1D6;
  box-shadow:
    0 44px 90px rgba(18, 32, 43, 0.18),
    0 16px 28px rgba(18, 32, 43, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.62);
  transform: rotateX(calc(var(--my) * -1.6deg)) rotateY(calc(var(--mx) * 2.2deg)) translateY(calc(var(--sy) * -10px));
  transform-style: preserve-3d;
}

.cw-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(18, 32, 43, 0.46), transparent 34%, rgba(255, 255, 255, 0.08)),
    linear-gradient(to top, rgba(18, 32, 43, 0.22), transparent 50%);
  pointer-events: none;
}

.cw-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.05);
  transform: scale(1.045) translate3d(calc(var(--mx) * -7px), calc(var(--my) * -4px), 0);
}

.cw-route-map {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  overflow: visible;
  mix-blend-mode: screen;
}

.cw-road {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.cw-road-shadow {
  stroke: rgba(0, 0, 0, 0.42);
  stroke-width: 18;
  filter: blur(9px);
  opacity: 0.45;
}

.cw-road-main {
  stroke: #FF7A1A;
  stroke-width: 7;
  stroke-dasharray: 980;
  stroke-dashoffset: 980;
  filter: drop-shadow(0 0 12px rgba(255, 109, 22, 0.72));
  animation: route-draw 1500ms var(--ease) 760ms both;
}

.cw-road-glint {
  stroke: #FFE4BC;
  stroke-width: 2;
  stroke-dasharray: 82 220;
  animation: route-glide 3600ms linear 1600ms infinite;
}

.cw-node {
  fill: rgba(255, 120, 26, 0.92);
  stroke: rgba(255, 235, 206, 0.96);
  stroke-width: 4;
  filter: drop-shadow(0 0 16px rgba(255, 109, 22, 0.7));
  transform-origin: center;
  animation: node-pulse 2600ms ease-in-out infinite;
}

.cw-node-b { animation-delay: 600ms; }

.cw-frame-shine {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(112deg, transparent 0%, rgba(255, 255, 255, 0.16) 44%, transparent 58%);
  transform: translateX(-130%);
  animation: frame-shine 5200ms var(--ease) 1700ms infinite;
}

.cw-orbit,
.cw-mini-photo {
  position: absolute;
  z-index: 5;
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 48px rgba(18, 32, 43, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.cw-orbit {
  min-width: 208px;
  padding: 16px 18px;
  color: #12202B;
}

.cw-orbit span {
  display: block;
  margin-bottom: 5px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #A64B05;
}

.cw-orbit b {
  font-size: 17px;
  line-height: 1.25;
}

.cw-orbit-one {
  top: 18px;
  left: 9%;
  transform: translate3d(calc(var(--mx) * 14px), calc(var(--my) * 8px), 0);
}

.cw-orbit-two {
  right: 0;
  bottom: 40px;
  transform: translate3d(calc(var(--mx) * -12px), calc(var(--my) * -6px), 0);
}

.cw-mini-photo {
  left: 0;
  bottom: 0;
  width: 210px;
  height: 144px;
  overflow: hidden;
  padding: 6px;
  transform: translate3d(calc(var(--mx) * 9px), calc(var(--my) * 6px), 0);
}

.cw-mini-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.cw-metrics {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 36px;
  width: min(1180px, calc(100% - 56px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.72);
  box-shadow: 0 22px 55px rgba(18, 32, 43, 0.11);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  animation: premium-fade 1000ms var(--ease) 880ms both;
}

.cw-m {
  padding: 0 22px;
  border-right: 1px solid rgba(18, 32, 43, 0.12);
}

.cw-m:last-child { border-right: 0; }

.cw-m b {
  display: block;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 38px;
  line-height: 1;
  font-weight: 400;
  color: #12202B;
}

.cw-m b small {
  color: #F2600C;
  font-size: 0.6em;
}

.cw-m span {
  display: block;
  margin-top: 7px;
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #617382;
}

@keyframes premium-rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes premium-stage {
  from { opacity: 0; transform: translateY(34px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes premium-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes route-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes route-glide {
  to { stroke-dashoffset: -302; }
}

@keyframes node-pulse {
  0%, 100% { opacity: 0.72; }
  50% { opacity: 1; }
}

@keyframes frame-shine {
  0%, 42% { transform: translateX(-130%); }
  68%, 100% { transform: translateX(130%); }
}

@media (max-width: 1180px) {
  .cw-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 116px;
    padding-bottom: 190px;
  }

  .cw-copy {
    max-width: 780px;
  }

  .cw-title {
    font-size: 70px;
    max-width: 11.5em;
  }

  .cw-stage {
    min-height: 500px;
  }

  .cw-frame {
    inset: 30px 0 42px 0;
  }
}

@media (max-width: 760px) {
  .cw-grid {
    width: min(100% - 32px, 680px);
    padding-top: 104px;
    padding-bottom: 292px;
  }

  .cw-title {
    font-size: 54px;
    line-height: 1.02;
  }

  .cw-lede {
    font-size: 16px;
    line-height: 1.72;
  }

  .cw-actions {
    gap: 14px;
  }

  .cw-btn,
  .cw-link {
    min-height: 50px;
  }

  .cw-stage {
    min-height: 410px;
  }

  .cw-frame {
    inset: 32px 0 44px 0;
  }

  .cw-orbit {
    min-width: 170px;
    padding: 13px 14px;
  }

  .cw-orbit b {
    font-size: 15px;
  }

  .cw-orbit-one {
    left: 0;
  }

  .cw-mini-photo {
    width: 168px;
    height: 112px;
  }

  .cw-metrics {
    grid-template-columns: repeat(2, 1fr);
    width: min(100% - 32px, 560px);
    bottom: 20px;
    padding: 14px;
  }

  .cw-m {
    padding: 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(18, 32, 43, 0.1);
  }

  .cw-m:nth-child(odd) {
    border-right: 1px solid rgba(18, 32, 43, 0.1);
  }

  .cw-m:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .cw-m b {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .cw-title {
    font-size: 42px;
  }

  .cw-stage {
    min-height: 340px;
  }

  .cw-orbit-two {
    right: 0;
    bottom: 22px;
  }

  .cw-mini-photo {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cw-backdrop,
  .cw-stage,
  .cw-frame,
  .cw-frame img,
  .cw-orbit,
  .cw-mini-photo {
    transform: none;
  }

  .cw-eyebrow,
  .cw-title,
  .cw-lede,
  .cw-actions,
  .cw-stage,
  .cw-metrics,
  .cw-road-main,
  .cw-road-glint,
  .cw-node,
  .cw-frame-shine {
    animation: none;
  }

  .cw-road-main {
    stroke-dashoffset: 0;
  }
}

/* ================================================================
   HERO v11 - full-bleed brand film
   The fleet owns the entire first screen. Copy, route light, and
   operational instruments sit inside the same cinematic photograph.
   ================================================================ */

.cw-hero {
  min-height: 100svh;
  background: #F7F1E8;
  color: #101B25;
}

.cw-backdrop {
  opacity: 0;
}

.cw-cinema {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  transform: translate3d(calc(var(--mx) * -10px), calc(var(--my) * -5px + var(--sy) * 8px), 0) scale(1.035);
}

.cw-cinema img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(1.16) contrast(1.18) brightness(0.96);
  transform: scale(1.04);
}

.cw-cinema::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(248, 243, 234, 0.98) 0%, rgba(248, 243, 234, 0.88) 30%, rgba(248, 243, 234, 0.2) 54%, transparent 78%),
    linear-gradient(to bottom, rgba(255, 250, 242, 0.24), transparent 38%, rgba(12, 20, 29, 0.34) 100%);
}

.cw-cinema::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -9%;
  height: 27%;
  z-index: 4;
  background: inherit;
  background-image: url("assets/hero-fleet.jpg");
  background-size: cover;
  background-position: 62% bottom;
  filter: blur(18px) saturate(1.08);
  transform: scale(1.08) translateY(calc(var(--sy) * -18px));
  opacity: 0.72;
  mask-image: linear-gradient(to top, #000 16%, transparent 100%);
}

.cw-cinema-glass {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background:
    linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.18) 50%, transparent 68%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 7px);
  mix-blend-mode: soft-light;
  opacity: 0.65;
}

.cw-light-field {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(255, 251, 244, 0.68) 0%, rgba(255, 251, 244, 0.08) 42%, rgba(255, 238, 210, 0.18) 100%),
    linear-gradient(90deg, rgba(248, 243, 234, 0.9) 0%, rgba(248, 243, 234, 0.54) 33%, rgba(248, 243, 234, 0.04) 62%, transparent 100%);
}

.cw-light-field::before {
  opacity: 0.18;
  background-size: 92px 92px;
  mask-image: linear-gradient(to right, #000 0%, #000 46%, transparent 88%);
}

.cw-grid {
  z-index: 6;
  width: min(1480px, calc(100% - 56px));
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  padding: 118px 0 158px;
  align-items: center;
}

.cw-copy {
  grid-column: 1 / span 5;
  max-width: 610px;
}

.cw-eyebrow {
  color: #AA4B05;
  text-shadow: 0 1px rgba(255, 255, 255, 0.62);
}

.cw-title {
  max-width: 9.6em;
  font-size: 92px;
  line-height: 0.96;
  color: #101B25;
  text-shadow: 0 1px rgba(255, 255, 255, 0.56);
}

.cw-lede {
  max-width: 43ch;
  color: #3E5362;
  text-shadow: 0 1px rgba(255, 255, 255, 0.5);
}

.cw-stage {
  grid-column: 7 / span 6;
  min-height: 620px;
  z-index: 7;
  pointer-events: none;
}

.cw-stage .cw-frame {
  display: none;
}

.cw-route-cinema {
  z-index: 3;
  inset: 0;
  opacity: 1;
  mix-blend-mode: screen;
  transform: translate3d(calc(var(--mx) * 18px), calc(var(--my) * 10px), 0);
}

.cw-route-cinema .cw-road-shadow {
  stroke-width: 28;
  opacity: 0.58;
}

.cw-route-cinema .cw-road-main {
  stroke-width: 10;
  filter: drop-shadow(0 0 16px rgba(255, 109, 22, 0.95)) drop-shadow(0 0 34px rgba(255, 109, 22, 0.56));
}

.cw-route-cinema .cw-road-glint {
  stroke-width: 3.2;
}

.cw-orbit,
.cw-mini-photo {
  pointer-events: none;
  background: rgba(255, 252, 246, 0.68);
  border-color: rgba(255, 255, 255, 0.74);
  box-shadow: 0 26px 70px rgba(12, 20, 29, 0.18), inset 0 1px rgba(255, 255, 255, 0.62);
}

.cw-orbit-one {
  top: 16%;
  left: 6%;
}

.cw-orbit-two {
  right: 2%;
  bottom: 22%;
}

.cw-mini-photo {
  left: 4%;
  bottom: 12%;
  width: 226px;
  height: 150px;
}

.cw-metrics {
  z-index: 8;
  bottom: 58px;
  background: rgba(255, 252, 246, 0.66);
  box-shadow: 0 22px 70px rgba(12, 20, 29, 0.16), inset 0 1px rgba(255, 255, 255, 0.64);
}

@media (max-width: 1180px) {
  .cw-cinema img {
    object-position: 66% center;
  }

  .cw-grid {
    grid-template-columns: 1fr;
    padding: 106px 0 260px;
  }

  .cw-copy {
    grid-column: auto;
    max-width: 760px;
  }

  .cw-title {
    font-size: 76px;
    max-width: 10.2em;
  }

  .cw-stage {
    position: absolute;
    inset: auto 24px 160px 24px;
    min-height: 320px;
  }
}

@media (max-width: 760px) {
  .cw-cinema img {
    object-position: 68% center;
  }

  .cw-cinema::before {
    background:
      linear-gradient(180deg, rgba(248, 243, 234, 0.98) 0%, rgba(248, 243, 234, 0.9) 42%, rgba(248, 243, 234, 0.34) 70%, rgba(12, 20, 29, 0.34) 100%),
      linear-gradient(90deg, rgba(248, 243, 234, 0.94) 0%, rgba(248, 243, 234, 0.5) 100%);
  }

  .cw-grid {
    width: min(100% - 32px, 620px);
    padding: 104px 0 350px;
  }

  .cw-title {
    font-size: 49px;
    max-width: 9.4em;
  }

  .cw-stage {
    inset: auto 16px 122px 16px;
    min-height: 280px;
  }

  .cw-orbit-one {
    top: 6px;
    left: 0;
  }

  .cw-orbit-two {
    right: 0;
    bottom: 24px;
  }

  .cw-route-cinema {
    transform: none;
  }

  .cw-metrics {
    bottom: 18px;
  }
}

@media (max-width: 480px) {
  .cw-title {
    font-size: 41px;
  }

  .cw-stage {
    min-height: 250px;
  }

  .cw-mini-photo {
    display: none;
  }
}

/* ================================================================
   HERO v12 - light isometric logistics world
   This is the "extraordinary" mode: a premium 3D-feeling route
   universe, with real BFC imagery reduced to supporting proof.
   ================================================================ */

.cw-hero {
  background:
    linear-gradient(180deg, #FBF7EF 0%, #F4EDE3 100%);
}

.cw-cinema {
  opacity: 0.1;
  transform: none;
}

.cw-cinema::before,
.cw-cinema::after,
.cw-cinema-glass,
.cw-route-cinema {
  display: none;
}

.cw-light-field {
  background:
    linear-gradient(90deg, rgba(251, 247, 239, 0.98) 0%, rgba(251, 247, 239, 0.9) 34%, rgba(251, 247, 239, 0.08) 74%, transparent 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, transparent 42%, rgba(255, 229, 190, 0.38) 100%);
}

.cw-iso-world {
  position: absolute;
  z-index: 4;
  top: 8%;
  right: -9%;
  width: min(1020px, 70vw);
  height: min(680px, 74vh);
  perspective: 1300px;
  transform: translate3d(calc(var(--mx) * 10px), calc(var(--my) * 6px), 0);
  pointer-events: none;
}

.cw-iso-shadow {
  position: absolute;
  left: 11%;
  right: 6%;
  bottom: 2%;
  height: 18%;
  border-radius: 50%;
  background: rgba(19, 31, 42, 0.18);
  filter: blur(30px);
  transform: rotate(-8deg);
}

.cw-iso-plane {
  position: absolute;
  inset: 5% 0 2% 0;
  border-radius: 8px;
  overflow: hidden;
  transform: rotateX(62deg) rotateZ(-15deg) translate3d(0, 24px, 0);
  transform-style: preserve-3d;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(239, 234, 224, 0.86)),
    repeating-linear-gradient(0deg, rgba(30, 47, 60, 0.08) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(90deg, rgba(30, 47, 60, 0.08) 0 1px, transparent 1px 46px);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow:
    0 70px 110px rgba(18, 32, 43, 0.2),
    inset 0 1px rgba(255, 255, 255, 0.9),
    inset 0 -40px 90px rgba(242, 96, 12, 0.08);
  animation: iso-land 1150ms var(--ease) 260ms both;
}

.cw-iso-plane::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(26deg, transparent 0 24%, rgba(18, 32, 43, 0.05) 24.2% 24.7%, transparent 25% 47%, rgba(18, 32, 43, 0.05) 47.2% 47.7%, transparent 48%),
    linear-gradient(112deg, transparent 0 18%, rgba(18, 32, 43, 0.06) 18.2% 18.7%, transparent 19% 72%, rgba(18, 32, 43, 0.05) 72.2% 72.7%, transparent 73%);
  opacity: 0.92;
}

.cw-iso-routes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.cw-iso-road,
.cw-iso-route,
.cw-iso-pulse {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.cw-iso-road {
  stroke: rgba(38, 55, 68, 0.24);
  stroke-width: 5;
}

.cw-iso-road.thin {
  stroke-width: 3;
  opacity: 0.54;
}

.cw-iso-route {
  stroke: #FF6A12;
  stroke-width: 9;
  stroke-dasharray: 1180;
  stroke-dashoffset: 1180;
  filter: drop-shadow(0 0 10px rgba(255, 106, 18, 0.95)) drop-shadow(0 0 28px rgba(255, 106, 18, 0.52));
  animation: iso-route-draw 1500ms var(--ease) 720ms both;
}

.cw-iso-pulse {
  stroke: #FFE5BF;
  stroke-width: 3;
  stroke-dasharray: 90 330;
  filter: drop-shadow(0 0 12px rgba(255, 229, 191, 0.9));
  animation: iso-pulse 3300ms linear 1500ms infinite;
}

.cw-iso-pulse.pulse-b {
  animation-delay: 2300ms;
}

.cw-iso-pin circle:first-child {
  fill: #FF6A12;
  stroke: #FFF2DF;
  stroke-width: 5;
  filter: drop-shadow(0 0 14px rgba(255, 106, 18, 0.9));
}

.cw-iso-pin circle:last-child {
  fill: none;
  stroke: rgba(255, 106, 18, 0.5);
  stroke-width: 2;
  animation: iso-pin 2400ms ease-out infinite;
}

.cw-iso-truck {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 96px;
  height: 54px;
  transform: translate(-50%, -50%) rotateZ(8deg) translateZ(70px);
  transform-style: preserve-3d;
  animation: truck-drive 8200ms var(--ease) 1400ms infinite;
}

.cw-iso-truck span {
  position: absolute;
  display: block;
}

.truck-box {
  left: 8px;
  top: 8px;
  width: 58px;
  height: 34px;
  border-radius: 4px;
  background: linear-gradient(135deg, #FFFFFF, #DDE8EF);
  box-shadow: inset 0 -8px 0 rgba(242, 96, 12, 0.88), 0 16px 24px rgba(18, 32, 43, 0.22);
}

.truck-cab {
  right: 6px;
  top: 14px;
  width: 26px;
  height: 26px;
  border-radius: 4px;
  background: linear-gradient(135deg, #152534, #314456);
  box-shadow: inset -5px -5px 0 rgba(255, 255, 255, 0.08);
}

.truck-wheel {
  width: 13px;
  height: 13px;
  bottom: 5px;
  border-radius: 50%;
  background: #111B24;
  box-shadow: inset 0 0 0 3px #364756;
}

.truck-wheel.w1 { left: 20px; }
.truck-wheel.w2 { right: 18px; }

.cw-iso-hub {
  position: absolute;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 250, 242, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.88);
  color: #10202D;
  box-shadow: 0 20px 34px rgba(18, 32, 43, 0.16), inset 0 0 0 10px rgba(242, 96, 12, 0.08);
  transform: translateZ(54px);
}

.cw-iso-hub b {
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 900;
}

.hub-a { left: 5%; bottom: 15%; }
.hub-b { right: 4%; top: 30%; }
.hub-c { left: 43%; top: 15%; }

.cw-grid {
  z-index: 7;
}

.cw-copy {
  grid-column: 1 / span 5;
}

.cw-stage {
  z-index: 8;
}

.cw-orbit-one {
  top: 18%;
  left: 14%;
}

.cw-orbit-two {
  right: 4%;
  bottom: 30%;
}

.cw-mini-photo {
  left: 20%;
  bottom: 19%;
}

.cw-metrics {
  z-index: 9;
}

@keyframes iso-land {
  from { opacity: 0; transform: rotateX(62deg) rotateZ(-15deg) translate3d(0, 70px, 0) scale(0.96); }
  to { opacity: 1; transform: rotateX(62deg) rotateZ(-15deg) translate3d(0, 24px, 0) scale(1); }
}

@keyframes iso-route-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes iso-pulse {
  to { stroke-dashoffset: -420; }
}

@keyframes iso-pin {
  from { opacity: 0.75; transform: scale(0.35); transform-origin: center; }
  to { opacity: 0; transform: scale(1.15); transform-origin: center; }
}

@keyframes truck-drive {
  0%, 100% { left: 40%; top: 57%; }
  46% { left: 63%; top: 36%; }
  72% { left: 78%; top: 42%; }
}

@media (max-width: 1180px) {
  .cw-iso-world {
    top: auto;
    right: -18%;
    bottom: 160px;
    width: 920px;
    height: 430px;
  }

  .cw-copy {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .cw-iso-world {
    right: -88%;
    bottom: 94px;
    width: 780px;
    height: 370px;
    opacity: 0.88;
  }

  .cw-stage {
    display: none;
  }

  .cw-grid {
    padding-bottom: 338px;
  }

  .cw-light-field {
    background:
      linear-gradient(180deg, rgba(251, 247, 239, 0.98) 0%, rgba(251, 247, 239, 0.88) 48%, rgba(251, 247, 239, 0.24) 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cw-iso-plane,
  .cw-iso-route,
  .cw-iso-pulse,
  .cw-iso-pin circle:last-child,
  .cw-iso-truck {
    animation: none;
  }

  .cw-iso-route {
    stroke-dashoffset: 0;
  }
}

/* ================================================================
   HERO v13 - professional executive logistics
   Reset after the experimental versions: no toy 3D, no gimmicks.
   This is premium, credible, and enterprise-worthy.
   ================================================================ */

.cw-hero {
  --mx: 0;
  --my: 0;
  --sy: 0;
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  color: #111B24;
  background: #F7F3EA;
}

.cw-backdrop,
.cw-cinema,
.cw-light-field,
.cw-iso-world,
.cw-route-map,
.cw-frame,
.cw-orbit,
.cw-mini-photo {
  display: none;
}

.cw-executive-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(247, 243, 234, 0.98) 0%, rgba(247, 243, 234, 0.92) 43%, rgba(247, 243, 234, 0.58) 100%),
    url("assets/yard-aerial.jpg") right center / cover no-repeat;
}

.cw-executive-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(17, 27, 36, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 27, 36, 0.055) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(to right, #000 0%, #000 55%, transparent 100%);
}

.cw-executive-bg::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 26%;
  background: linear-gradient(to top, rgba(247, 243, 234, 0.96), transparent);
}

.cw-grid {
  position: relative;
  z-index: 2;
  width: min(1440px, calc(100% - 64px));
  min-height: 100svh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(430px, 0.86fr) minmax(580px, 1.14fr);
  gap: 72px;
  align-items: center;
  padding: 104px 0 130px;
}

.cw-copy {
  grid-column: auto;
  max-width: 650px;
  padding: 0;
}

.cw-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #B54D06;
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  animation: premium-rise 850ms var(--ease) 100ms both;
}

.cw-eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: #F2600C;
}

.cw-title {
  max-width: 11.2em;
  margin: 28px 0 26px;
  color: #111B24;
  font-family: var(--font-text);
  font-size: 68px;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
  animation: premium-rise 950ms var(--ease) 230ms both;
}

.cw-lede {
  max-width: 47ch;
  color: #4D5F6B;
  font-family: var(--font-text);
  font-size: 18px;
  line-height: 1.76;
  animation: premium-rise 900ms var(--ease) 360ms both;
}

.cw-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 38px;
  flex-wrap: wrap;
  animation: premium-rise 900ms var(--ease) 480ms both;
}

.cw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 8px;
  color: #fff;
  background: #111B24;
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(17, 27, 36, 0.2);
  transition: transform 260ms var(--ease), background 260ms var(--ease), box-shadow 260ms var(--ease);
}

.cw-btn:hover {
  transform: translateY(-2px);
  background: #F2600C;
  box-shadow: 0 24px 48px rgba(242, 96, 12, 0.24);
}

.cw-link {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  color: #111B24;
  border-bottom: 2px solid rgba(242, 96, 12, 0.52);
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 800;
  transition: color 260ms var(--ease), border-color 260ms var(--ease);
}

.cw-link:hover {
  color: #F2600C;
  border-color: #F2600C;
}

.cw-stage {
  position: relative;
  grid-column: auto;
  min-height: 640px;
  z-index: 3;
  transform: translate3d(calc(var(--mx) * 5px), calc(var(--my) * 4px), 0);
  animation: premium-stage 950ms var(--ease) 180ms both;
}

.cw-photo-panel {
  position: absolute;
  inset: 0 0 72px 0;
  overflow: hidden;
  border-radius: 8px;
  background: #D8D1C5;
  box-shadow: 0 44px 90px rgba(17, 27, 36, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.74);
}

.cw-photo-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(17, 27, 36, 0.14), transparent 46%),
    linear-gradient(to top, rgba(17, 27, 36, 0.42), transparent 48%);
}

.cw-photo-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.08);
  transform: scale(1.035) translate3d(calc(var(--mx) * -6px), calc(var(--my) * -4px), 0);
}

.cw-photo-caption {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  padding: 18px 20px;
  border-radius: 8px;
  color: #fff;
  background: rgba(17, 27, 36, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.cw-photo-caption span,
.ops-head span,
.ops-list span {
  display: block;
  color: #F7A66D;
  font-family: var(--font-text);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cw-photo-caption b {
  display: block;
  margin-top: 7px;
  font-family: var(--font-text);
  font-size: 18px;
  line-height: 1.35;
}

.cw-ops-panel {
  position: absolute;
  right: 38px;
  bottom: 0;
  width: min(420px, 62%);
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 58px rgba(17, 27, 36, 0.15);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

.ops-head {
  padding: 20px 22px;
  border-bottom: 1px solid rgba(17, 27, 36, 0.1);
}

.ops-head b {
  display: block;
  margin-top: 8px;
  color: #111B24;
  font-family: var(--font-text);
  font-size: 20px;
  line-height: 1.3;
}

.ops-list {
  display: grid;
}

.ops-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(17, 27, 36, 0.08);
}

.ops-list div:last-child {
  border-bottom: 0;
}

.ops-list span {
  color: #6B7780;
}

.ops-list b {
  color: #111B24;
  font-family: var(--font-text);
  font-size: 14px;
  text-align: right;
}

.cw-metrics {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 64px;
  width: min(1160px, calc(100% - 64px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 18px 20px;
  border: 1px solid rgba(17, 27, 36, 0.1);
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.88);
  box-shadow: 0 18px 46px rgba(17, 27, 36, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: premium-fade 850ms var(--ease) 620ms both;
}

.cw-m {
  padding: 0 22px;
  border-right: 1px solid rgba(17, 27, 36, 0.1);
}

.cw-m:last-child {
  border-right: 0;
}

.cw-m b {
  display: block;
  color: #111B24;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.cw-m b small {
  color: #F2600C;
  font-size: 0.58em;
}

.cw-m span {
  display: block;
  margin-top: 7px;
  color: #667682;
  font-family: var(--font-text);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .cw-hero {
    height: auto;
  }

  .cw-grid {
    width: min(100% - 44px, 960px);
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 116px 0 210px;
  }

  .cw-title {
    font-size: 58px;
  }

  .cw-stage {
    grid-column: auto;
    min-height: 520px;
  }
}

@media (max-width: 760px) {
  .cw-grid {
    width: min(100% - 32px, 620px);
    padding: 104px 0 310px;
    gap: 34px;
  }

  .cw-title {
    font-size: 39px;
    line-height: 1.08;
  }

  .cw-lede {
    font-size: 16px;
    line-height: 1.68;
  }

  .cw-actions {
    gap: 14px;
  }

  .cw-btn,
  .cw-link {
    min-height: 50px;
  }

  .cw-stage {
    min-height: 390px;
  }

  .cw-photo-panel {
    inset: 0 0 62px 0;
  }

  .cw-photo-caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }

  .cw-ops-panel {
    display: none;
  }

  .cw-metrics {
    width: min(100% - 32px, 560px);
    bottom: 18px;
    grid-template-columns: repeat(2, 1fr);
    padding: 12px;
  }

  .cw-m {
    padding: 13px 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 27, 36, 0.1);
  }

  .cw-m:nth-child(odd) {
    border-right: 1px solid rgba(17, 27, 36, 0.1);
  }

  .cw-m:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 460px) {
  .cw-title {
    font-size: 34px;
  }

  .cw-stage {
    min-height: 330px;
  }
}

/* ================================================================
   HERO overlap QA fixes
   Keep the hero, operations panel, metrics rail, and next section
   from occupying the same visual space.
   ================================================================ */

.cw-ops-panel {
  bottom: 108px;
}

.act-statement {
  margin-top: 0 !important;
}

@media (max-width: 760px) {
  body[data-page="home"] .mob-cta {
    display: none;
  }

  .cw-grid {
    padding-bottom: 292px;
  }

  .cw-metrics {
    bottom: 24px;
  }
}

/* ================================================================
   HERO visual appeal + overlap cleanup
   Full-color truck/sky background with separated panels.
   ================================================================ */

.cw-executive-bg {
  background:
    linear-gradient(90deg, rgba(247, 243, 234, 0.96) 0%, rgba(247, 243, 234, 0.82) 34%, rgba(247, 243, 234, 0.26) 62%, rgba(247, 243, 234, 0.08) 100%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.24), rgba(17, 27, 36, 0.16)),
    url("assets/hero-fleet.jpg") center center / cover no-repeat;
}

.cw-executive-bg::before {
  opacity: 0.42;
}

.cw-stage {
  display: grid;
  align-content: center;
  min-height: 560px;
}

.cw-photo-panel {
  position: relative;
  inset: auto;
  height: 360px;
}

.cw-photo-panel img {
  object-position: center 58%;
}

.cw-photo-caption {
  left: 22px;
  bottom: 22px;
}

.cw-ops-panel {
  position: relative;
  right: auto;
  bottom: auto;
  width: min(500px, 78%);
  margin: 18px 0 0 auto;
}

.cw-metrics {
  bottom: 42px;
}

@media (max-width: 1180px) {
  .cw-executive-bg {
    background:
      linear-gradient(180deg, rgba(247, 243, 234, 0.98) 0%, rgba(247, 243, 234, 0.86) 42%, rgba(247, 243, 234, 0.34) 100%),
      url("assets/hero-fleet.jpg") center center / cover no-repeat;
  }

  .cw-stage {
    min-height: 460px;
  }

  .cw-photo-panel {
    height: 360px;
  }

  .cw-ops-panel {
    width: min(520px, 100%);
  }
}

@media (max-width: 760px) {
  .cw-hero {
    height: auto;
    min-height: 100svh;
  }

  .cw-executive-bg {
    background:
      linear-gradient(180deg, rgba(247, 243, 234, 0.97) 0%, rgba(247, 243, 234, 0.8) 48%, rgba(247, 243, 234, 0.4) 100%),
      url("assets/hero-fleet.jpg") 58% center / cover no-repeat;
  }

  .cw-grid {
    padding-bottom: 306px;
  }

  .cw-stage {
    display: none;
  }

  .cw-metrics {
    bottom: 24px;
  }
}

/* ================================================================
   HERO background correction
   Restore the earlier aerial yard/truck image as the first-section
   background, keeping the image side full-color.
   ================================================================ */

.cw-executive-bg {
  background:
    linear-gradient(90deg, rgba(247, 243, 234, 0.97) 0%, rgba(247, 243, 234, 0.86) 34%, rgba(247, 243, 234, 0.18) 56%, rgba(247, 243, 234, 0.02) 100%),
    url("assets/yard-aerial.jpg") center center / cover no-repeat;
}

.cw-executive-bg::before {
  opacity: 0.28;
  mask-image: linear-gradient(to right, #000 0%, #000 42%, transparent 74%);
}

.cw-executive-bg::after {
  height: 20%;
  background: linear-gradient(to top, rgba(247, 243, 234, 0.76), transparent);
}

@media (max-width: 760px) {
  .cw-executive-bg {
    background:
      linear-gradient(180deg, rgba(247, 243, 234, 0.95) 0%, rgba(247, 243, 234, 0.78) 46%, rgba(247, 243, 234, 0.22) 100%),
      url("assets/yard-aerial.jpg") center center / cover no-repeat;
  }
}

/* ================================================================
   HERO no-fade background
   Keep the aerial image full-color. Readability belongs to the
   content block, not a half-screen image wash.
   ================================================================ */

.cw-executive-bg {
  background: url("assets/yard-aerial.jpg") center center / cover no-repeat;
}

.cw-executive-bg::before,
.cw-executive-bg::after {
  display: none;
}

.cw-copy {
  position: relative;
  padding: 28px 30px 30px;
  border-radius: 8px;
  background: rgba(247, 243, 234, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 22px 64px rgba(17, 27, 36, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cw-grid {
  padding-bottom: 158px;
}

.cw-metrics {
  bottom: 28px;
}

@media (max-width: 760px) {
  .cw-executive-bg {
    background: url("assets/yard-aerial.jpg") center center / cover no-repeat;
  }

  .cw-copy {
    padding: 22px 20px 24px;
    background: rgba(247, 243, 234, 0.86);
  }

  .cw-grid {
    padding-bottom: 316px;
  }

  .cw-metrics {
    bottom: 24px;
  }
}

/* ================================================================
   FINAL HERO NO-OVERLAP LAYOUT
   The metric rail now lives in normal flow, not over the content.
   ================================================================ */

.cw-hero {
  height: auto;
  min-height: 100svh;
  padding-bottom: 44px;
}

.cw-grid {
  min-height: 0;
  padding-top: 112px;
  padding-bottom: 28px;
  align-items: center;
}

.cw-copy {
  max-width: 620px;
}

.cw-title {
  font-size: 60px;
  line-height: 1.05;
}

.cw-stage {
  min-height: 600px;
}

.cw-photo-panel {
  height: 340px;
}

.cw-ops-panel {
  margin-top: 16px;
}

.cw-metrics {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  transform: none;
  width: min(1160px, calc(100% - 64px));
  margin: 0 auto;
  z-index: 5;
}

.act-statement {
  position: relative;
  z-index: 1;
}

@media (min-width: 1500px) {
  .cw-title {
    font-size: 64px;
  }

  .cw-grid {
    width: min(1500px, calc(100% - 88px));
    grid-template-columns: minmax(560px, 0.9fr) minmax(720px, 1.1fr);
    gap: 88px;
  }

  .cw-copy {
    max-width: 680px;
  }
}

@media (max-width: 1180px) {
  .cw-grid {
    padding-bottom: 32px;
  }

  .cw-stage {
    min-height: 470px;
  }
}

@media (max-width: 760px) {
  .cw-hero {
    padding-bottom: 24px;
  }

  .cw-grid {
    padding-top: 104px;
    padding-bottom: 24px;
  }

  .cw-title {
    font-size: 36px;
    line-height: 1.08;
  }

  .cw-stage {
    display: none;
  }

  .cw-metrics {
    position: relative;
    bottom: auto;
    width: min(100% - 32px, 560px);
    margin: 0 auto;
  }
}

/* ================================================================
   POLISH PASS - refined frames, calmer radii, softer shadows
   Photography sits in quiet 14px frames; no hard ink borders,
   no offset block-shadows, no diagonal clip gimmicks.
   ================================================================ */

.plate {
  border: none;
  border-radius: 14px;
  box-shadow: 0 22px 55px rgba(17, 19, 24, 0.13);
}

.photo-pair { gap: 14px; }
.photo-pair .shot { border-radius: 14px; }
.photo-pair .shot:last-child { clip-path: none; }
.shot { border-radius: 14px; }

.statement-chip {
  border-radius: 14px;
  border: 1px solid rgba(17, 19, 24, 0.08);
  box-shadow: 0 20px 48px rgba(17, 19, 24, 0.16);
}

.duo-photo, .duo-photo img { border-radius: 14px; overflow: hidden; }
.leader .frame, .leader img { border-radius: 14px; }

.routemap { border-radius: 16px; border-color: rgba(17, 19, 24, 0.08); box-shadow: 0 26px 60px rgba(17, 19, 24, 0.1); }

.quote-form {
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: 18px;
  box-shadow: 0 28px 64px rgba(17, 19, 24, 0.1);
}

.ph-media img { border-radius: 0; }
.bt { border-radius: 16px; }
.cl-tile { border-radius: 12px; }

@media (min-width: 1021px) {
  .chapter:nth-child(odd) .ch-media { border-radius: 16px 0 0 16px; }
  .chapter:nth-child(even) .ch-media { border-radius: 0 16px 16px 0; }
}

/* ================================================================
   HEADER POLISH - lighter glass, pill tabs, refined CTA
   ================================================================ */

.bar {
  padding: 12px clamp(20px, 3.5vw, 44px);
  background: rgba(250, 247, 240, 0.82);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  border-bottom: 1px solid rgba(17, 19, 24, 0.07);
}

.bar-tabs { gap: 4px; }

.bar-tabs a {
  border-radius: 100px;
  padding: 9px 16px;
  letter-spacing: 0.03em;
  transition: color 0.25s, background 0.25s;
}

.bar-tabs a::after { content: none; }

.bar-tabs a:hover { background: rgba(17, 19, 24, 0.05); color: var(--ink); }

.bar-tabs a.active {
  background: rgba(242, 96, 12, 0.1);
  color: #B4560A;
}

.bar-cta {
  background: linear-gradient(92deg, #F2600C, #FF9E3D);
  border-radius: 100px;
  box-shadow: 0 10px 24px rgba(242, 96, 12, 0.22);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.bar-cta:hover { background: linear-gradient(92deg, #E05608, #FF9330); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(242, 96, 12, 0.3); }

/* ================================================================
   SERVICE SUB-PAGES
   ================================================================ */

.sp-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.sp-body { margin-top: 26px; font-size: 17.5px; line-height: 1.9; color: var(--ink); max-width: 56ch; }
.sp-best { margin-top: 22px; font-size: 15px; line-height: 1.8; color: var(--ink-dim); }
.sp-best b { color: var(--orange); font-weight: 700; }

.sp-side {
  background: #FBF8F2;
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 18px;
  padding: clamp(26px, 3vw, 40px);
  box-shadow: 0 24px 56px rgba(17, 19, 24, 0.08);
}

.sp-list { margin-top: 18px; }

.sp-facts {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px dashed var(--rule);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}

.sp-others {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.sp-other {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 24px;
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: 16px;
  background: #FBF8F2;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.3s;
}

.sp-other b { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--ink); }
.sp-other .arr { color: var(--orange); }
.sp-other:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(17, 19, 24, 0.1); border-color: rgba(242, 96, 12, 0.35); }

.svcd-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink);
  border-bottom: 2px solid rgba(242, 96, 12, 0.5);
  padding-bottom: 4px;
  transition: color 0.3s, border-color 0.3s;
}

.svcd-link:hover { color: var(--orange); border-color: var(--orange); }

/* ================================================================
   INDUSTRIES - sector features with segregated clients
   ================================================================ */

.ind-secs { margin-top: 40px; display: grid; gap: clamp(28px, 4vh, 48px); }

.ind-sec {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  padding: clamp(24px, 3vw, 40px);
  background: #FBF8F2;
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 20px;
  box-shadow: 0 24px 56px rgba(17, 19, 24, 0.07);
}

.ind-sec.flip .ind-photo { order: 2; }

.ind-photo {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3.2;
}

.ind-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.ind-sec:hover .ind-photo img { transform: scale(1.05); }

.ind-info h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 34px);
  color: var(--ink);
  margin: 12px 0 12px;
  letter-spacing: -0.01em;
}

.ind-info > p { font-size: 15px; line-height: 1.8; color: var(--ink-dim); max-width: 52ch; }

.ind-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }

.ind-tags span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B4560A;
  background: rgba(242, 96, 12, 0.08);
  border-radius: 100px;
  padding: 7px 14px;
}

.ind-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(17, 19, 24, 0.08);
}

.ind-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  min-width: 86px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 12px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.ind-logo img { max-height: 30px; max-width: 96px; object-fit: contain; }
.ind-logo:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(17, 19, 24, 0.1); }
.ind-logo-txt { font-size: 13px; font-weight: 700; color: var(--ink-dim); }

/* ---- responsive ---- */
@media (max-width: 1020px) {
  .sp-grid { grid-template-columns: 1fr; gap: 34px; }
  .sp-others { grid-template-columns: 1fr; }
  .ind-sec { grid-template-columns: 1fr; }
  .ind-sec.flip .ind-photo { order: 0; }
  .ind-photo { aspect-ratio: 16 / 10; }
}

/* ================================================================
   SERVICES DROPDOWN - header
   ================================================================ */

.tab-drop { position: relative; }

.tab-drop > a { display: inline-flex; align-items: center; gap: 7px; }

.tab-drop .chev { transition: transform 0.3s var(--ease); opacity: 0.6; }
.tab-drop:hover .chev, .tab-drop:focus-within .chev { transform: rotate(180deg); }

.drop {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  padding-top: 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  z-index: 320;
}

.tab-drop:hover .drop, .tab-drop:focus-within .drop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.drop-in {
  min-width: 320px;
  background: rgba(252, 250, 245, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 16px;
  box-shadow: 0 26px 60px rgba(17, 19, 24, 0.16);
  padding: 10px;
}

.drop-in a {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  transition: background 0.25s;
}

.drop-in a:hover { background: rgba(242, 96, 12, 0.07); }

.drop-in a b {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
}

.drop-in a span { display: block; margin-top: 3px; font-size: 12px; color: var(--ink-dim); }

.drop-in .drop-all {
  margin-top: 6px;
  border-top: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 0 0 10px 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #B4560A;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px;
}

/* mobile menu: service sub-links under Services */
.menu-sub { list-style: none; margin: 6px 0 10px 46px; display: grid; gap: 2px; }

.menu-sub a {
  font-size: 16px;
  font-weight: 600;
  color: var(--bone-dim);
  padding: 7px 0;
  display: inline-block;
  transition: color 0.25s;
}

.menu-sub a:hover { color: #FFB25E; }

@media (prefers-reduced-motion: reduce) {
  .drop, .tab-drop .chev { transition: none; }
}

/* ================================================================
   SERVICE PAGE IDENTITY - breadcrumb + named headline
   ================================================================ */

.crumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.crumb a { color: rgba(246, 242, 233, 0.75); transition: color 0.25s; }
.crumb a:hover { color: #FFB25E; }
.crumb span { color: rgba(246, 242, 233, 0.45); }
.crumb b { color: #FFB25E; font-weight: 700; }

.ph-tag {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: clamp(17px, 1.6vw, 22px);
  color: rgba(246, 242, 233, 0.85);
  margin: 14px 0 10px;
}

.drop-in a.active { background: rgba(242, 96, 12, 0.1); }
.drop-in a.active b { color: #B4560A; }

/* timeline: the pulse became a BFC truck, seen from above */
.tl-truck { filter: drop-shadow(0 3px 5px rgba(17, 19, 24, 0.18)); }

@media (prefers-reduced-motion: reduce) {
  .tl-truck { display: none; }
}

/* ================================================================
   MEDIA ROOM + AWARDS
   ================================================================ */

.tl-truck-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 7.5px;
  letter-spacing: 0.08em;
}

.media-tiles { display: grid; grid-template-columns: 1.3fr 1fr; gap: 22px; }

.media-tile {
  display: flex;
  flex-direction: column;
  background: #FBF8F2;
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(17, 19, 24, 0.07);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

a.media-tile:hover { transform: translateY(-5px); box-shadow: 0 32px 70px rgba(17, 19, 24, 0.12); }

.mt-photo { height: 260px; overflow: hidden; }
.mt-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; transition: transform 1.2s var(--ease); }
a.media-tile:hover .mt-photo img { transform: scale(1.05); }

.mt-body { padding: clamp(24px, 3vw, 38px); display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.mt-body h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 2.2vw, 30px); color: var(--ink); }
.mt-body p { font-size: 14.5px; line-height: 1.8; color: var(--ink-dim); }

.awards { display: grid; gap: clamp(26px, 4vh, 44px); margin-top: 10px; }

.award {
  display: grid;
  grid-template-columns: 0.85fr 1.3fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  padding: clamp(24px, 3vw, 40px);
  background: #FBF8F2;
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 20px;
  box-shadow: 0 24px 56px rgba(17, 19, 24, 0.07);
}

.award.flip .award-photo { order: 2; }

.award-photo { border-radius: 14px; overflow: hidden; aspect-ratio: 4 / 3; background: #EFEAE0; }
.award-photo img { width: 100%; height: 100%; object-fit: cover; }

.award-year {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(30px, 3vw, 44px);
  color: var(--orange);
  display: block;
}

.award-info h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.3vw, 32px);
  color: var(--ink);
  margin: 10px 0 8px;
  letter-spacing: -0.01em;
}

.award-org { display: block; margin-bottom: 14px; }
.award-info p { font-size: 15px; line-height: 1.85; color: var(--ink-dim); max-width: 54ch; }

.awards-note {
  margin-top: 34px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

@media (max-width: 1020px) {
  .media-tiles { grid-template-columns: 1fr; }
  .award { grid-template-columns: 1fr; }
  .award.flip .award-photo { order: 0; }
  .award-photo { aspect-ratio: 16 / 10; }
}

/* ================================================================
   AWARDS - refined alignment
   ================================================================ */

.award { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr); }

.award-photo {
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  background: #EFEAE0;
  align-self: center;
  width: 100%;
}

.award-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%; display: block; }

/* object plates (trophies): shown whole on a soft pedestal, never cropped */
.award-photo.obj {
  background:
    radial-gradient(80% 55% at 50% 88%, rgba(17, 19, 24, 0.1), transparent 70%),
    linear-gradient(180deg, #FDFBF6, #F0EAE0);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8% 10%;
}

.award-photo.obj img {
  width: auto;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(17, 19, 24, 0.22));
}

.award-info { min-width: 0; }
.award-info h3 { max-width: 22ch; }

@media (max-width: 1020px) {
  .award-photo, .award-photo.obj { aspect-ratio: 16 / 10; }
}

/* ================================================================
   HEADER ALIGNMENT FIX + AWARDS TALL PORTRAITS
   ================================================================ */

/* every tab renders identically - one flex model, one height */
.bar-tabs { flex-wrap: nowrap; }

.bar-tabs a {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  white-space: nowrap;
}

.bar-right { display: flex; align-items: center; gap: 12px; }

.bar-cta { white-space: nowrap; }

/* 7 tabs need more room: compress gently, then hand over to the menu */
@media (max-width: 1360px) {
  .bar-tabs a { padding: 8px 11px; font-size: 12.5px; }
  .bar-tabs { gap: 2px; }
}

@media (max-width: 1180px) {
  .bar-tabs { display: none; }
  .menu-btn { display: flex; }
}

/* portrait award photos: never cropped into landscape */
.award-photo.tall {
  aspect-ratio: 3 / 3.9;
  max-width: 400px;
  justify-self: center;
}

.award-photo.tall img { object-position: 50% 20%; }

@media (max-width: 1020px) {
  .award-photo.tall { aspect-ratio: 3 / 3.4; max-width: 420px; }
}

/* ================================================================
   ROAD SCENE FOOTER - the BFC truck rides into every page's end.
   The truck holds still; the dawn town and the road move past it.
   ================================================================ */

.road-scene {
  position: relative;
  height: clamp(150px, 17vw, 200px);
  overflow: hidden;
  background: linear-gradient(180deg, #7FB1DC 0%, #A9CCE8 40%, #D3E5F2 72%, #EFE0C6 100%);
}

/* morning sun resting over the town */
.rs-sun {
  position: absolute;
  right: 12%;
  top: 8%;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 214, 150, 0.95), rgba(255, 204, 138, 0.35) 55%, transparent 72%);
  animation: fa-bloom 12s ease-in-out infinite;
}

/* passing town: two parallax line-art strips */
.rs-skyline {
  position: absolute;
  left: 0; right: 0;
  bottom: 30px;
  background-repeat: repeat-x;
  pointer-events: none;
}

.rs-far {
  height: 64px;
  opacity: 0.4;
  background-size: 520px 64px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='520' height='64'><g fill='none' stroke='%23FFFFFF' stroke-width='1.6'><rect x='18' y='26' width='40' height='38'/><path d='M18 26 L38 12 L58 26'/><rect x='96' y='16' width='30' height='48'/><rect x='104' y='24' width='6' height='6'/><rect x='116' y='24' width='6' height='6'/><rect x='104' y='38' width='6' height='6'/><rect x='116' y='38' width='6' height='6'/><rect x='170' y='34' width='44' height='30'/><path d='M170 34 L192 22 L214 34'/><rect x='258' y='20' width='26' height='44'/><rect x='265' y='28' width='5' height='5'/><rect x='275' y='28' width='5' height='5'/><rect x='265' y='42' width='5' height='5'/><rect x='330' y='30' width='48' height='34'/><path d='M330 30 L354 16 L378 30'/><rect x='430' y='18' width='32' height='46'/><rect x='438' y='26' width='6' height='6'/><rect x='450' y='26' width='6' height='6'/><rect x='438' y='40' width='6' height='6'/></g></svg>");
  animation: rs-drift 46s linear infinite;
}

.rs-near {
  height: 78px;
  opacity: 0.75;
  background-size: 640px 78px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='640' height='78'><g fill='none' stroke='%23FFFFFF' stroke-width='1.8'><circle cx='40' cy='40' r='14'/><path d='M40 54 L40 78'/><rect x='96' y='30' width='54' height='48'/><path d='M96 30 L123 14 L150 30'/><rect x='112' y='52' width='12' height='26'/><rect x='104' y='38' width='9' height='9'/><rect x='131' y='38' width='9' height='9'/><path d='M210 78 L210 30 L216 30 L216 78'/><path d='M204 30 L222 30'/><path d='M213 24 a6 6 0 1 1 0.1 0'/><circle cx='286' cy='36' r='16'/><path d='M286 52 L286 78'/><rect x='348' y='22' width='40' height='56'/><rect x='356' y='30' width='8' height='8'/><rect x='372' y='30' width='8' height='8'/><rect x='356' y='46' width='8' height='8'/><rect x='372' y='46' width='8' height='8'/><rect x='360' y='60' width='14' height='18'/><path d='M452 78 L452 34 L458 34 L458 78'/><path d='M446 34 L464 34'/><path d='M455 28 a6 6 0 1 1 0.1 0'/><rect x='512' y='34' width='50' height='44'/><path d='M512 34 L537 18 L562 34'/><circle cx='606' cy='42' r='13'/><path d='M606 54 L606 78'/></g></svg>");
  animation: rs-drift 26s linear infinite;
}

@keyframes rs-drift { from { background-position: 0 0; } to { background-position: -640px 0; } }
.rs-far { animation-name: rs-drift-far; }
@keyframes rs-drift-far { from { background-position: 0 0; } to { background-position: -520px 0; } }

/* the road: dark band, dashes rushing past */
.rs-road {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 30px;
  background: #253038;
  border-top: 2px solid #33414C;
}

.rs-road::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 12px;
  height: 4px;
  background-image: repeating-linear-gradient(90deg, #F6F2E9 0 34px, transparent 34px 78px);
  animation: rs-dash 0.9s linear infinite;
  opacity: 0.85;
}

@keyframes rs-dash { from { background-position: 0 0; } to { background-position: -78px 0; } }

/* the truck: parked in the frame, alive in the details */
.rs-body {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-54%);
  animation: rs-bob 2.2s ease-in-out infinite;
}

.rs-truck { width: clamp(170px, 20vw, 240px); height: auto; display: block; }

@keyframes rs-bob { 0%, 100% { transform: translateX(-54%) translateY(0); } 50% { transform: translateX(-54%) translateY(-1.4px); } }

.rs-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: 0.12em;
}

.rs-wheel {
  animation: rs-spin 1.1s linear infinite;
  transform-box: fill-box;
  transform-origin: center;
}

@keyframes rs-spin { to { transform: rotate(360deg); } }

/* footer text sits right under the scene */
footer { padding: 0; }
footer .footer-line { padding: 26px 0 30px; }

@media (max-width: 720px) {
  .road-scene { height: 130px; }
  .rs-skyline { bottom: 24px; }
  .rs-road { height: 24px; }
  .rs-road::after { top: 10px; }
  .rs-body { bottom: 16px; }
  .rs-sun { width: 60px; height: 60px; right: 8%; }
}

@media (prefers-reduced-motion: reduce) {
  .rs-far, .rs-near, .rs-road::after, .rs-body, .rs-wheel, .rs-sun { animation: none; }
}

/* awards: quiet hero without photography */
.page-hero.no-media {
  min-height: 44svh;
  background:
    radial-gradient(60% 80% at 78% 20%, rgba(255, 178, 94, 0.16), transparent 65%),
    linear-gradient(170deg, #171C23, #10151B);
}

/* dropdown breathing room - name and description clearly separated */
.drop-in { min-width: 344px; padding: 12px; }

.drop-in a {
  display: grid;
  gap: 5px;
  padding: 13px 16px;
}

.drop-in a + a { margin-top: 3px; }

.drop-in a b { font-size: 15px; line-height: 1.35; }

.drop-in a span {
  margin-top: 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: #66798A;
}

.drop-in .drop-all {
  display: flex;
  margin-top: 8px;
  padding: 14px 16px 12px;
  gap: 8px;
}

/* ================================================================
   THE NETWORK MAP - satellite night view
   India from orbit: deep space around the sheet, a faintly lit
   landmass, corridors burning like highways seen from above.
   ================================================================ */

.routemap {
  position: relative;
  overflow: hidden;
  background: radial-gradient(130% 100% at 72% 8%, #182842 0%, #0D1830 48%, #070F1D 100%);
  border: 1px solid rgba(122, 160, 210, 0.18);
  box-shadow:
    inset 0 0 80px rgba(10, 20, 40, 0.55),
    0 30px 70px rgba(10, 16, 28, 0.35);
}

/* starfield + atmospheric halo, painted beneath the map */
.routemap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(50% 46% at 50% 46%, rgba(88, 142, 220, 0.18), transparent 70%),
    radial-gradient(1.2px 1.2px at 24px 38px, rgba(255, 255, 255, 0.9), transparent 2px),
    radial-gradient(1px 1px at 128px 152px, rgba(255, 255, 255, 0.65), transparent 2px),
    radial-gradient(1.4px 1.4px at 212px 64px, rgba(215, 230, 255, 0.85), transparent 2.2px),
    radial-gradient(1px 1px at 66px 214px, rgba(255, 255, 255, 0.5), transparent 2px),
    radial-gradient(1.2px 1.2px at 250px 200px, rgba(255, 244, 224, 0.7), transparent 2px),
    radial-gradient(1px 1px at 166px 246px, rgba(255, 255, 255, 0.55), transparent 2px),
    radial-gradient(1.5px 1.5px at 300px 120px, rgba(255, 255, 255, 0.9), transparent 2.4px),
    radial-gradient(1px 1px at 340px 30px, rgba(205, 225, 255, 0.6), transparent 2px);
  background-size: 100% 100%, 380px 320px, 380px 320px, 380px 320px, 380px 320px, 380px 320px, 380px 320px, 380px 320px, 380px 320px;
  animation: rm-twinkle 7s ease-in-out infinite alternate;
}

@keyframes rm-twinkle { from { opacity: 0.75; } to { opacity: 1; } }

/* orbit vignette above the map */
.routemap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(105% 95% at 50% 45%, transparent 62%, rgba(4, 9, 18, 0.4) 100%);
}

/* the landmass, faintly lit against the dark ocean */
.in-land {
  fill: rgba(26, 44, 72, 0.75);
  stroke: rgba(142, 182, 235, 0.55);
  stroke-width: 1.4;
  filter: drop-shadow(0 0 16px rgba(92, 150, 235, 0.28));
}

/* quiet inter-branch legs */
.rm-leg2 { stroke: rgba(152, 186, 230, 0.2); }

/* glowing corridors + moving shipments */
.rm-draw { filter: drop-shadow(0 0 5px rgba(242, 96, 12, 0.6)); }
.rm-dot { fill: #FFC076; }

/* branches as city lights */
.rm-b .rm-core { fill: #E8F1FA; }
.rm-b.hub .rm-core, .rm-b.mj .rm-core { fill: var(--orange); }

.rm-b text {
  fill: #D9E5F1;
  stroke: rgba(6, 12, 24, 0.85);
}

.rm-b.hub text { fill: #FFB25E; }
.rm-b.mn text { fill: rgba(200, 216, 232, 0.8); }

/* ODA settlements: distant town lights */
.rm-oda { fill: rgba(255, 198, 124, 0.6); }

@media (prefers-reduced-motion: reduce) {
  .routemap::before { animation: none; }
}

/* orbit view, final grade: deeper star parallax + city-light bloom */
.routemap::before {
  background-image:
    radial-gradient(50% 46% at 50% 46%, rgba(88, 142, 220, 0.18), transparent 70%),
    radial-gradient(1.2px 1.2px at 24px 38px, rgba(255, 255, 255, 0.9), transparent 2px),
    radial-gradient(1px 1px at 128px 152px, rgba(255, 255, 255, 0.65), transparent 2px),
    radial-gradient(1.4px 1.4px at 212px 64px, rgba(215, 230, 255, 0.85), transparent 2.2px),
    radial-gradient(1px 1px at 66px 214px, rgba(255, 255, 255, 0.5), transparent 2px),
    radial-gradient(1.2px 1.2px at 250px 200px, rgba(255, 244, 224, 0.7), transparent 2px),
    radial-gradient(1px 1px at 166px 246px, rgba(255, 255, 255, 0.55), transparent 2px),
    radial-gradient(1.5px 1.5px at 300px 120px, rgba(255, 255, 255, 0.9), transparent 2.4px),
    radial-gradient(1px 1px at 340px 30px, rgba(205, 225, 255, 0.6), transparent 2px),
    radial-gradient(0.8px 0.8px at 90px 60px, rgba(255, 255, 255, 0.4), transparent 1.6px),
    radial-gradient(0.8px 0.8px at 420px 240px, rgba(255, 255, 255, 0.35), transparent 1.6px),
    radial-gradient(0.9px 0.9px at 250px 420px, rgba(220, 235, 255, 0.4), transparent 1.8px);
  background-size:
    100% 100%,
    380px 320px, 380px 320px, 380px 320px, 380px 320px,
    380px 320px, 380px 320px, 380px 320px, 380px 320px,
    520px 460px, 520px 460px, 520px 460px;
  animation: rm-twinkle 7s ease-in-out infinite alternate, rm-drift 120s linear infinite;
}

@keyframes rm-drift { to { background-position: 0 0, -380px 0, -380px 0, -380px 0, -380px 0, -380px 0, -380px 0, -380px 0, -380px 0, -520px 0, -520px 0, -520px 0; } }

/* branches bloom like real city lights */
.rm-b .rm-core { filter: drop-shadow(0 0 3.5px rgba(190, 220, 255, 0.9)); }
.rm-b.hub .rm-core, .rm-b.mj .rm-core { filter: drop-shadow(0 0 6px rgba(255, 165, 80, 0.9)); }

/* the hub ring glows on the dark */
.rm-b.hub .rm-ring { stroke: rgba(255, 178, 94, 0.9); filter: drop-shadow(0 0 4px rgba(255, 165, 80, 0.6)); }

@media (prefers-reduced-motion: reduce) {
  .routemap::before { animation: none; }
}

/* ================================================================
   OPENING SEQUENCE - the dock, three crates, and the morning run
   ================================================================ */

body.intro-lock { overflow: hidden; }

.bfc-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  background:
    radial-gradient(46% 36% at 72% 26%, rgba(255, 206, 140, 0.5), transparent 70%),
    linear-gradient(180deg, #8FBCE0 0%, #C7DFF1 46%, #EFE0C5 100%);
  cursor: pointer;
  transition: transform 0.65s var(--ease), opacity 0.65s;
  animation: ld-in 0.5s ease both;
}

@keyframes ld-in { from { opacity: 0; } to { opacity: 1; } }

.bfc-intro.done { transform: translateY(-100%); opacity: 0.6; pointer-events: none; }

.ld-scene { width: min(880px, 94vw); margin: 0 auto; }
.ld-scene svg { width: 100%; height: auto; display: block; }

.ld-dock-name {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.22em;
  fill: #8A7F6C;
}

.ld-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  letter-spacing: 0.1em;
}

/* crates hop from the dock into the container */
.ld-crate { opacity: 0; }
.ld-c1 { animation: ld-load 1.05s var(--ease) 0.45s both; }
.ld-c2 { animation: ld-load 1.05s var(--ease) 0.95s both; }
.ld-c3 { animation: ld-load 1.05s var(--ease) 1.45s both; }

@keyframes ld-load {
  0% { transform: translateX(0); opacity: 0; }
  14% { opacity: 1; }
  70% { transform: translateX(-138px); opacity: 1; }
  100% { transform: translateX(-165px); opacity: 0; }
}

/* dispatch: wheels bite, the run begins */
.ld-truck { animation: ld-drive 0.95s cubic-bezier(0.5, 0, 0.85, 0.6) 2.4s both; }

@keyframes ld-drive {
  from { transform: translateX(0); }
  to { transform: translateX(-980px); }
}

.ld-wheel {
  transform-box: fill-box;
  transform-origin: center;
  animation: ld-spin 0.45s linear 2.35s infinite;
}

@keyframes ld-spin { to { transform: rotate(-360deg); } }

/* brand + progress */
.ld-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 30px 0 44px;
}

.ld-foot img { height: 34px; width: auto; }

.ld-bar {
  width: 200px;
  height: 3px;
  border-radius: 3px;
  background: rgba(21, 34, 45, 0.15);
  overflow: hidden;
}

.ld-bar span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 3px;
  background: linear-gradient(90deg, #F2600C, #FFB25E);
  animation: ld-fill 2.5s var(--ease) 0.3s forwards;
}

@keyframes ld-fill { to { width: 100%; } }

.ld-cap {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #5E7484;
}

@media (max-width: 720px) {
  .ld-foot { padding: 22px 0 34px; }
  .ld-brand { font-size: 36px; }
}

/* ================================================================
   OPENING SEQUENCE v2 - full story arc: arrive, load, depart
   ================================================================ */

/* the truck pulls in first */
.ld-truck {
  animation:
    ld-arrive 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both,
    ld-drive 0.95s cubic-bezier(0.5, 0, 0.85, 0.6) 2.85s forwards;
}

@keyframes ld-arrive {
  from { transform: translateX(-560px); }
  to { transform: translateX(0); }
}

/* wheels spin on arrival, rest while loading, bite at departure */
.ld-wheel {
  animation:
    ld-spin 0.45s linear 0.1s 2,
    ld-spin 0.45s linear 2.8s infinite;
}

/* crates hop aboard with a small arc */
.ld-c1 { animation: ld-load 0.9s var(--ease) 1.05s both; }
.ld-c2 { animation: ld-load 0.9s var(--ease) 1.45s both; }
.ld-c3 { animation: ld-load 0.9s var(--ease) 1.85s both; }

@keyframes ld-load {
  0% { transform: translate(0, 0); opacity: 0; }
  16% { opacity: 1; }
  45% { transform: translate(-70px, -9px); }
  70% { transform: translate(-138px, 0); opacity: 1; }
  100% { transform: translate(-165px, 0); opacity: 0; }
}

/* a breath of exhaust as it leaves */
.ld-puff {
  opacity: 0;
  animation: ld-puff 0.8s ease-out 2.9s;
}

@keyframes ld-puff {
  0% { opacity: 0; transform: translate(0, 0) scale(0.5); }
  25% { opacity: 0.9; }
  100% { opacity: 0; transform: translate(-26px, -14px) scale(1.5); }
}

/* progress rides the full story */
.ld-bar span { animation: ld-fill 3.3s var(--ease) 0.25s forwards; }

/* award photo pending: a quiet plaque holds the spot */
.award-photo.ph {
  background:
    radial-gradient(70% 60% at 50% 30%, rgba(255, 178, 94, 0.18), transparent 70%),
    linear-gradient(170deg, #1B222B, #10151B);
  display: flex;
  align-items: center;
  justify-content: center;
}

.award-photo.ph img { display: none; }

.award-photo.ph::after {
  content: "";
  width: 46%;
  height: 40%;
  background: url("assets/logo-mark.png") no-repeat center / contain;
  opacity: 0.85;
}

/* trophy portrait: centered and framed at its natural proportions */
.award-photo.tall {
  aspect-ratio: 3 / 4;
  max-width: 380px;
}

.award-photo.tall img { object-position: 50% 50%; }

/* ================================================================
   AWARD-NIGHT HERO - the stage the trophies came from
   Deep ceremony blue, drifting star dust, sweeping beams and the
   neon podium arcs from the Maruti stage - no photo needed.
   ================================================================ */

.page-hero.stage {
  min-height: 48svh;
  overflow: hidden;
  background:
    radial-gradient(55% 70% at 78% 18%, rgba(255, 178, 94, 0.2), transparent 65%),
    radial-gradient(60% 80% at 12% 88%, rgba(228, 92, 190, 0.13), transparent 62%),
    linear-gradient(168deg, #13223E 0%, #0D1830 55%, #0A1222 100%);
}

/* star dust, gently drifting */
.page-hero.stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1.3px 1.3px at 40px 60px, rgba(255, 255, 255, 0.8), transparent 2.2px),
    radial-gradient(1px 1px at 170px 140px, rgba(200, 220, 255, 0.6), transparent 2px),
    radial-gradient(1.1px 1.1px at 300px 40px, rgba(255, 244, 224, 0.7), transparent 2px),
    radial-gradient(1px 1px at 90px 220px, rgba(255, 255, 255, 0.45), transparent 2px),
    radial-gradient(1.4px 1.4px at 250px 250px, rgba(255, 255, 255, 0.75), transparent 2.4px),
    radial-gradient(1px 1px at 360px 180px, rgba(210, 228, 255, 0.5), transparent 2px);
  background-size: 420px 300px;
  animation: rm-twinkle 6s ease-in-out infinite alternate, stage-drift 90s linear infinite;
}

@keyframes stage-drift { to { background-position: -420px 0; } }

/* ceremony beams sweeping the dark */
.page-hero.stage::after {
  content: "";
  position: absolute;
  inset: -10%;
  pointer-events: none;
  background:
    linear-gradient(112deg, transparent 30%, rgba(140, 180, 255, 0.1) 38%, transparent 47%),
    linear-gradient(68deg, transparent 52%, rgba(255, 178, 94, 0.13) 61%, transparent 70%);
  animation: stage-beams 11s ease-in-out infinite alternate;
}

@keyframes stage-beams {
  from { transform: translateX(-3%); opacity: 0.75; }
  to { transform: translateX(3%); opacity: 1; }
}

/* neon podium arcs, glowing at the frame's edges */
.stage-arcs { position: absolute; inset: 0; pointer-events: none; }

.stage-arcs::before, .stage-arcs::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(0.5px);
}

.stage-arcs::before {
  width: 460px;
  height: 460px;
  left: -180px;
  bottom: -260px;
  border: 2.5px solid rgba(232, 106, 192, 0.4);
  box-shadow: 0 0 30px rgba(232, 106, 192, 0.25), inset 0 0 26px rgba(232, 106, 192, 0.15);
}

.stage-arcs::after {
  width: 380px;
  height: 380px;
  right: -150px;
  bottom: -210px;
  border: 2.5px solid rgba(255, 158, 61, 0.45);
  box-shadow: 0 0 30px rgba(255, 158, 61, 0.28), inset 0 0 24px rgba(255, 158, 61, 0.16);
}

.page-hero.stage .wrap { position: relative; z-index: 2; }

@media (max-width: 720px) {
  .stage-arcs::before { width: 300px; height: 300px; left: -140px; bottom: -180px; }
  .stage-arcs::after { width: 240px; height: 240px; right: -110px; bottom: -150px; }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero.stage::before, .page-hero.stage::after { animation: none; }
}

/* ================================================================
   NETWORK - zone directory
   ================================================================ */

.zones {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.zone {
  background: #FBF8F2;
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 18px;
  padding: clamp(22px, 2.6vw, 34px);
  box-shadow: 0 20px 48px rgba(17, 19, 24, 0.06);
}

.zone-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(17, 19, 24, 0.08);
}

.zone-head h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--ink);
  letter-spacing: -0.01em;
}

.zone-count {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(26px, 2.4vw, 36px);
  color: var(--orange);
  line-height: 1;
}

.zone-cities { display: flex; flex-wrap: wrap; gap: 8px; }

.zone-cities span {
  font-family: var(--font-text);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-dim);
  background: #fff;
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 100px;
  padding: 7px 14px;
}

.zone-cities span.hub {
  color: #fff;
  background: linear-gradient(92deg, #F2600C, #FF9E3D);
  border-color: transparent;
  box-shadow: 0 8px 18px rgba(242, 96, 12, 0.25);
}

@media (max-width: 1020px) {
  .zones { grid-template-columns: 1fr; }
}

/* ================================================================
   NETWORK - the journey flow + quiet fact strip
   ================================================================ */

.flow {
  position: relative;
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.4vw, 32px);
}

/* the corridor thread stitching the four stages */
.flow::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 4%;
  right: 4%;
  height: 2px;
  background-image: repeating-linear-gradient(90deg, rgba(242, 96, 12, 0.5) 0 7px, transparent 7px 16px);
  animation: route-crawl-x 2.8s linear infinite;
}

@keyframes route-crawl-x { to { background-position: 16px 0; } }

.flow-step { position: relative; padding-top: 44px; }

.flow-step::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(242, 96, 12, 0.14);
}

.flow-num {
  position: absolute;
  top: 0;
  left: 26px;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 26px;
  color: rgba(242, 96, 12, 0.75);
  line-height: 1.2;
}

.flow-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(19px, 1.8vw, 24px);
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.flow-step p { font-size: 14px; line-height: 1.8; color: var(--ink-dim); max-width: 30ch; }

/* facts: a hairline strip, not a ledger */
.fact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 48px);
  margin-top: clamp(44px, 7vh, 70px);
  padding-top: 30px;
  border-top: 1px solid rgba(17, 19, 24, 0.12);
}

.fact-strip .ledger-row { display: block; border: none; padding: 0; }
.fact-strip .idx { display: none; }

.fact-strip .nf-val {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(30px, 3vw, 44px);
  color: var(--ink);
  line-height: 1.1;
  display: block;
}

.fact-strip .lbl {
  display: block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #B4560A;
}

.fact-strip .nf-note {
  display: block;
  margin-top: 8px;
  font-family: var(--font-text);
  font-style: normal;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.7;
  color: var(--ink-dim);
}

/* value reads first: reorder visually */
.fact-strip .ledger-row { display: flex; flex-direction: column; }
.fact-strip .nf-val { order: 0; }
.fact-strip .lbl { order: 1; }

@media (max-width: 1020px) {
  .flow { grid-template-columns: 1fr; gap: 0; }
  .flow::before {
    top: 16px;
    bottom: 30px;
    left: 6px;
    right: auto;
    width: 2px;
    height: auto;
    background-image: repeating-linear-gradient(180deg, rgba(242, 96, 12, 0.5) 0 7px, transparent 7px 16px);
    animation: route-crawl 2.8s linear infinite;
  }
  .flow-step { padding: 0 0 34px 34px; }
  .flow-step::before { left: 0; }
  .flow-num { left: 0; position: relative; top: auto; display: block; margin-bottom: 6px; }
  .flow-step h3 { margin-top: 0; }
  .fact-strip { grid-template-columns: 1fr 1fr; }
}

/* ================================================================
   BENTO CTA - the quote tile, in daylight
   Warm pearl tile from the site's own palette; the corridor
   thread leads to the one gradient pill. Nothing dark, no slab.
   ================================================================ */

.bt-cta {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  background:
    radial-gradient(70% 110% at 88% 0%, rgba(255, 178, 94, 0.32), transparent 62%),
    radial-gradient(45% 70% at 6% 100%, rgba(242, 96, 12, 0.1), transparent 60%),
    linear-gradient(150deg, #FFFDF8 0%, #FCF3E4 55%, #FAE8CD 100%);
  border: 1px solid rgba(226, 150, 70, 0.35);
  box-shadow: 0 22px 52px rgba(180, 120, 40, 0.13);
  transition: transform 0.45s var(--ease), box-shadow 0.45s;
}

.bt-cta:hover { transform: translateY(-4px); box-shadow: 0 30px 64px rgba(180, 120, 40, 0.2); }

.bt-cta .bt-in {
  padding: clamp(26px, 3vw, 40px);
  position: relative;
  z-index: 1;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.bt-cta-copy { display: flex; flex-direction: column; gap: 8px; }

.bt-cta .bt-kicker.light { color: #B4560A; }

.bt-cta .bt-mid {
  color: #1D2A36;
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 38px);
  letter-spacing: 0;
  display: block;
}

.bt-cta .bt-mid em {
  font-style: italic;
  background: linear-gradient(90deg, #E4560A, #FF9E3D);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bt-cta .bt-sub.light {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(140, 96, 48, 0.85);
}

.bt-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(92deg, #F2600C, #FF9E3D);
  padding: 17px 38px;
  border-radius: 100px;
  box-shadow: 0 14px 34px rgba(242, 96, 12, 0.3);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  white-space: nowrap;
}

.bt-cta:hover .bt-cta-btn { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(242, 96, 12, 0.4); }
.bt-cta .arr { transition: transform 0.35s var(--ease); }
.bt-cta:hover .arr { transform: translateX(5px); }

@media (max-width: 720px) {
  .bt-cta .bt-in { flex-direction: column; align-items: flex-start; }
}


/* ================================================================
   MOBILE REFINEMENTS - same road on the phone, lighter menu
   ================================================================ */

/* ---- the About road: swipe along it instead of losing it ---- */
.tl-inner { position: relative; }

@media (max-width: 1020px) {
  .tl-stage {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
    scrollbar-width: thin;
    scrollbar-color: rgba(242, 96, 12, 0.4) transparent;
  }

  .tl-stage svg { display: block; }
  .tl-inner { min-width: 1180px; }

  .tl-blocks { position: absolute; inset: 0; pointer-events: none; }

  .tl-block {
    position: absolute;
    width: 200px;
    padding: 0;
    border-left: none;
    margin-left: 0;
    text-align: center;
    transform: translateX(-50%) !important;
  }

  .tl-block.up { transform: translate(-50%, -100%) !important; }
  .tl-block::before { content: none; }
  .tl-block p { font-size: 12.5px; }

  /* swipe hint: the road fades at the right edge */
  .roadmap { position: relative; }
  .roadmap::after {
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 12px;
    width: 48px;
    background: linear-gradient(to right, transparent, var(--paper));
    pointer-events: none;
  }
}

/* ---- the menu: a compact sheet, not a takeover ---- */
@media (max-width: 1020px) {
  .menu {
    inset: auto 0 auto 0;
    top: 0;
    max-height: 90svh;
    overflow-y: auto;
    border-radius: 0 0 26px 26px;
    padding: 20px 24px 30px;
    box-shadow: 0 40px 90px rgba(10, 14, 20, 0.45);
  }

  .menu-links { gap: 0; margin-top: 10px; }

  .menu-links a {
    font-size: clamp(24px, 6.5vw, 32px);
    gap: 14px;
    padding: 9px 0;
  }

  .menu-links a i { font-size: 11px; }

  .menu-sub { margin: 2px 0 8px 30px; }
  .menu-sub a { font-size: 15px; padding: 5px 0; }

  .menu-foot {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .menu-foot span:first-child { display: none; }
}

/* ================================================================
   MOBILE AUDIT PASS
   ================================================================ */

@media (max-width: 720px) {
  /* intro reads larger on a phone */
  .bfc-intro { justify-content: center; gap: 6vh; }
  .ld-scene { width: 132vw; margin-left: -16vw; }
  .ld-foot { padding: 0 0 8vh; }

  /* menu sheet respects the notch */
  .menu { padding-top: max(20px, env(safe-area-inset-top)); }

  /* hero copy never collides with the fold */
  .cw-copy { padding-top: 110px; }
  .cw-title { font-size: clamp(38px, 10vw, 50px); }
}

/* ================================================================
   MOBILE - Get a Quote alignment fixes (header pill, sticky pill,
   hero actions)
   ================================================================ */

@media (max-width: 720px) {
  /* header row: logo, pill and menu button share one clean baseline */
  .bar { padding: 10px 16px; gap: 10px; }
  .bar-right { gap: 8px; }

  .bar-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 11px 16px;
    font-size: 10.5px;
    letter-spacing: 0.08em;
  }

  .menu-btn { display: flex; align-items: center; gap: 8px; }

  /* hero actions: primary button full-width, link centred under it */
  .cw-actions { gap: 16px; }
  .cw-btn { width: 100%; text-align: center; }
  .cw-link { margin: 0 auto; }

  /* the sticky quote pill no longer sits on top of the footer text */
  footer .footer-line { padding-bottom: 104px; }
}

/* ================================================================
   GET A QUOTE - clipping fixes
   ================================================================ */

/* bento rows may grow: the quote tile was being cut at 150px */
@media (max-width: 1020px) {
  .bento { grid-auto-rows: minmax(150px, auto); }
  .bt-cta { min-height: 0; }
  .bt-cta .bt-in {
    padding: 26px 22px;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: nowrap;
  }
  .bt-cta-copy { max-width: 100%; }
  .bt-cta .bt-mid { font-size: clamp(24px, 6vw, 32px); }
  .bt-cta-btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
  }
}

/* header pill can never be squeezed or clipped */
.bar-cta { flex: 0 0 auto; }
.bar-logo { flex: 0 1 auto; min-width: 0; }

@media (max-width: 400px) {
  .bar-logo img { height: 22px; }
  .bar-cta { padding: 10px 13px; font-size: 10px; letter-spacing: 0.05em; }
  .menu-btn span:first-child { display: none; }
}
