/* ==========================================================================
   MARSHAULS LOGISTICS — FREIGHT / INDUSTRIAL KINETIC
   Shared stylesheet. Dark, high-contrast, utilitarian-premium, kinetic.
   ========================================================================== */

/* ---------- Design tokens ------------------------------------------------ */
:root {
  --ink:      #0b0d11;
  --panel:    #14171d;
  --panel2:   #1b1f27;
  --steel:    #e8eaed;
  --muted:    #8b94a3;
  --amber:    #ffb020;
  --amber2:   #ffc94d;
  --blue:     #2e6bff;
  --line:     rgba(255,255,255,.10);
  --line2:    rgba(255,255,255,.06);

  --font-display: "Anton", "Archivo", system-ui, sans-serif;
  --font-body:    "Archivo", system-ui, -apple-system, sans-serif;
  --font-mono:    "JetBrains Mono", "SFMono-Regular", ui-monospace, monospace;

  --wrap: 1240px;
  --pad: clamp(20px, 5vw, 64px);
  --header-h: 76px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset / base ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--steel);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: .003em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { margin: 0; font-weight: 700; }

p { margin: 0 0 1em; }

::selection { background: var(--amber); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

/* thin custom scrollbar */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: #2a2f39; border: 3px solid var(--ink); }
::-webkit-scrollbar-thumb:hover { background: var(--amber); }

/* ---------- Layout helpers ---------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }

.section { padding-block: clamp(64px, 9vw, 132px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 88px); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--amber);
  display: inline-block;
}
.eyebrow--plain::before { display: none; }

.lead {
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.55;
  color: #c7ccd4;
  font-weight: 500;
  max-width: 62ch;
}

/* Oversized display headings */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: .92;
  letter-spacing: .005em;
  color: var(--steel);
}
.display--xl { font-size: clamp(56px, 12vw, 150px); }
.display--lg { font-size: clamp(44px, 8vw, 104px); }
.display--md { font-size: clamp(34px, 5.4vw, 68px); }
.amber-text { color: var(--amber); }
.outline-text {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--amber);
  text-stroke: 1.5px var(--amber);
}

/* ---------- Buttons ------------------------------------------------------ */
.btn {
  --btn-bg: var(--amber);
  --btn-fg: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 15px 26px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 2px solid var(--btn-bg);
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease),
              transform .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn .arw { transition: transform .3s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }

.btn--amber:hover { background: var(--amber2); border-color: var(--amber2); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--steel);
  border-color: var(--line);
}
.btn--ghost:hover {
  background: var(--amber);
  color: var(--ink);
  border-color: var(--amber);
}

.btn--lg { padding: 18px 34px; font-size: 15px; }

/* ---------- Hazard stripe divider --------------------------------------- */
.hazard {
  height: 12px;
  width: 100%;
  background-image: repeating-linear-gradient(
    -45deg,
    var(--amber) 0, var(--amber) 22px,
    var(--ink) 22px, var(--ink) 44px
  );
  background-size: 62px 62px;
}
.hazard--thin { height: 7px; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,13,17,.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line2);
  transition: background .3s var(--ease), border-color .3s var(--ease),
              box-shadow .3s var(--ease);
}
.site-header.is-condensed {
  background: rgba(11,13,17,.94);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 34px rgba(0,0,0,.5);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: height .3s var(--ease);
}
.site-header.is-condensed .header-inner { height: 64px; }

/* Scroll progress bar */
.scroll-progress {
  position: absolute;
  left: 0; bottom: -1px;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--amber), var(--amber2));
  box-shadow: 0 0 12px rgba(255,176,32,.6);
  z-index: 2;
}

/* Brand lockup */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-mark {
  width: 38px; height: 38px;
  flex-shrink: 0;
  transition: transform .4s var(--ease);
}
.brand:hover .brand-mark { transform: translateY(-2px) rotate(-2deg); }
.brand-word {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 25px;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--steel);
}

/* Primary nav */
.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 0;
  position: relative;
  transition: color .22s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  height: 2px; width: 0;
  background: var(--amber);
  transition: width .28s var(--ease);
}
.nav-links a:hover { color: var(--steel); }
.nav-links a:hover::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--amber); }
.nav-links a[aria-current="page"]::after { width: 100%; }

.header-cta { display: inline-flex; }

/* Hamburger */
.hamburger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--steel);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}

/* Mobile overlay menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  padding: 26px var(--pad) 40px;
  transform: translateY(-100%);
  transition: transform .45s var(--ease);
  visibility: hidden;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateY(0); visibility: visible; }
.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.mobile-close {
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--steel);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.mobile-close:hover { border-color: var(--amber); color: var(--amber); }
.mobile-nav {
  list-style: none;
  margin: auto 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.mobile-nav li { border-top: 1px solid var(--line); }
.mobile-nav li:last-child { border-bottom: 1px solid var(--line); }
.mobile-nav a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: var(--font-display);
  font-size: clamp(38px, 12vw, 62px);
  text-transform: uppercase;
  color: var(--steel);
  padding: 18px 0;
  transition: color .2s var(--ease), padding-left .25s var(--ease);
}
.mobile-nav a:hover, .mobile-nav a[aria-current="page"] { color: var(--amber); padding-left: 14px; }
.mobile-nav .idx {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}
.mobile-menu .btn { margin-top: 30px; justify-content: center; }
.mobile-menu-foot {
  margin-top: 26px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .06em;
}
.mobile-menu-foot a { color: var(--amber); }

/* ==========================================================================
   MARQUEE — corridor tape (signature kinetic move)
   ========================================================================== */
.marquee {
  --marq-dur: 42s;
  background: var(--amber);
  color: var(--ink);
  overflow: hidden;
  position: relative;
  border-block: 3px solid var(--ink);
  user-select: none;
}
.marquee--dark {
  background: var(--panel2);
  color: var(--steel);
  border-color: var(--line);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee var(--marq-dur) linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.marquee-item {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(18px, 2.4vw, 28px);
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 13px 0;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.marquee-item .dot {
  width: 8px; height: 8px;
  background: var(--ink);
  border-radius: 50%;
  margin-inline: clamp(18px, 3vw, 40px);
  flex-shrink: 0;
}
.marquee--dark .marquee-item .dot { background: var(--amber); }
.marquee-item .arrow { margin-inline: 10px; opacity: .55; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================================================
   HERO — HOME
   ========================================================================== */
.hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 62% center;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,13,17,.62) 0%, rgba(11,13,17,.12) 30%, rgba(11,13,17,.15) 55%, rgba(11,13,17,.94) 100%),
    linear-gradient(90deg, rgba(11,13,17,.86) 0%, rgba(11,13,17,.45) 40%, rgba(11,13,17,0) 72%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(44px, 7vw, 92px);
  padding-top: clamp(60px, 10vw, 120px);
}
.hero h1 {
  margin: 0 0 26px;
  max-width: 15ch;
}
.hero-lead {
  max-width: 48ch;
  margin-bottom: 34px;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.hero-badges {
  position: absolute;
  right: var(--pad);
  top: clamp(40px, 10vw, 96px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.hero-badge {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--steel);
  background: rgba(11,13,17,.55);
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
  padding: 8px 13px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.hero-badge .pip {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber);
}
.hero-scroll {
  position: absolute;
  left: var(--pad);
  bottom: 18px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 640px){ .hero-scroll, .hero-badges { display: none; } }

/* ==========================================================================
   INTERIOR PAGE HERO
   ========================================================================== */
.page-hero {
  position: relative;
  padding-top: clamp(56px, 9vw, 108px);
  padding-bottom: clamp(48px, 7vw, 84px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background:
    radial-gradient(120% 140% at 88% -10%, rgba(255,176,32,.10), transparent 46%),
    var(--panel);
}
.page-hero::before {
  /* faint hazard corner accent */
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 220px; height: 220px;
  background-image: repeating-linear-gradient(-45deg, rgba(255,176,32,.14) 0 10px, transparent 10px 26px);
  -webkit-mask: linear-gradient(225deg, #000 0%, transparent 62%);
          mask: linear-gradient(225deg, #000 0%, transparent 62%);
  pointer-events: none;
}
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  gap: 10px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb .sep { color: #3a4150; }
.breadcrumb [aria-current] { color: var(--steel); }
.page-hero h1 { max-width: 18ch; }
.page-hero .lead { margin-top: 24px; }

/* ==========================================================================
   STAT BOARD — rolling count-ups
   ========================================================================== */
.statboard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--panel);
}
.stat {
  padding: clamp(26px, 3.4vw, 44px) clamp(22px, 2.6vw, 34px);
  border-right: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.stat:last-child { border-right: 0; }
.stat::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.stat:hover::before { transform: scaleX(1); }
.stat-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 84px);
  line-height: .9;
  color: var(--steel);
  letter-spacing: .01em;
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
}
.stat-num .suffix { color: var(--amber); }
.stat-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 14px;
}
@media (max-width: 860px){
  .statboard { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2){ border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2){ border-bottom: 1px solid var(--line); }
}
@media (max-width: 460px){
  .statboard { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
}

/* ==========================================================================
   SECTION HEAD (shared)
   ========================================================================== */
.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: clamp(38px, 5vw, 60px);
  flex-wrap: wrap;
}
.sec-head .titles { max-width: 60ch; }
.sec-head h2 { margin-top: 4px; }
.sec-head .sec-aside { max-width: 40ch; color: var(--muted); font-size: 15.5px; }

/* ==========================================================================
   SERVICE BLOCKS — big numbered
   ========================================================================== */
.svc-list { border-top: 1px solid var(--line); }
.svc {
  display: grid;
  grid-template-columns: 96px 1fr minmax(auto, 380px);
  gap: clamp(20px, 4vw, 56px);
  align-items: start;
  padding: clamp(34px, 4.4vw, 56px) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background .35s var(--ease);
}
.svc:hover { background: linear-gradient(90deg, rgba(255,176,32,.05), transparent 60%); }
.svc-idx {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.4px var(--amber);
  transition: color .3s var(--ease), -webkit-text-stroke-color .3s;
}
.svc:hover .svc-idx { color: var(--amber); }
.svc-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 46px);
  text-transform: uppercase;
  line-height: .98;
  margin-bottom: 16px;
  letter-spacing: .01em;
}
.svc-body p { color: #b9bfc9; max-width: 54ch; margin-bottom: 20px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 11px;
  transition: color .2s, border-color .2s;
}
.svc:hover .chip { border-color: rgba(255,176,32,.4); }
.chip--amber { color: var(--amber); border-color: rgba(255,176,32,.5); }
.svc-media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border: 1px solid var(--line);
  filter: saturate(.94);
  transition: filter .4s var(--ease);
}
.svc:hover .svc-media { filter: saturate(1.08); }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.svc:hover .svc-media img { transform: scale(1.05); }
@media (max-width: 900px){
  .svc { grid-template-columns: 60px 1fr; }
  .svc-media { grid-column: 1 / -1; aspect-ratio: 16/9; }
}

/* ==========================================================================
   HOME — services numbered blocks (compact grid variant)
   ========================================================================== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
}
.svc-cell {
  padding: clamp(30px, 3.6vw, 48px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: background .3s var(--ease);
}
.svc-cell:nth-child(2n){ border-right: 0; }
.svc-cell:nth-child(3), .svc-cell:nth-child(4){ border-bottom: 0; }
.svc-cell::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 3px; width: 0;
  background: var(--amber);
  transition: width .4s var(--ease);
}
.svc-cell:hover { background: var(--panel); }
.svc-cell:hover::after { width: 100%; }
.svc-cell .num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .16em;
  color: var(--amber);
  margin-bottom: 20px;
  display: block;
}
.svc-cell h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 38px);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 14px;
}
.svc-cell p { color: var(--muted); font-size: 15.5px; margin-bottom: 20px; max-width: 44ch; }
.svc-cell .more {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--steel);
  display: inline-flex;
  gap: 8px;
  transition: gap .25s, color .2s;
}
.svc-cell:hover .more { color: var(--amber); gap: 14px; }
@media (max-width: 720px){
  .svc-grid { grid-template-columns: 1fr; }
  .svc-cell { border-right: 0; }
  .svc-cell:nth-child(3){ border-bottom: 1px solid var(--line); }
}

/* ==========================================================================
   COVERAGE TEASER — giant numeral
   ========================================================================== */
.cov-teaser {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}
.cov-numeral {
  font-family: var(--font-display);
  font-size: clamp(180px, 34vw, 460px);
  line-height: .8;
  color: transparent;
  -webkit-text-stroke: 2px var(--amber);
  letter-spacing: -.02em;
  position: relative;
}
.cov-numeral .sub {
  position: absolute;
  right: 6%;
  bottom: 14%;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: .16em;
  color: var(--amber);
  -webkit-text-stroke: 0;
}
.country-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 30px; }
.country-tag {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--steel);
  border: 1px solid var(--line);
  padding: 8px 13px;
  transition: all .22s var(--ease);
}
.country-tag:hover { border-color: var(--amber); color: var(--amber); transform: translateY(-2px); }
@media (max-width: 820px){
  .cov-teaser { grid-template-columns: 1fr; text-align: left; }
  .cov-numeral { font-size: clamp(160px, 46vw, 280px); }
}

/* ==========================================================================
   OPERATIONS BOARD — departures-style (Coverage signature)
   ========================================================================== */
.opsboard {
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
}
.opsboard-head {
  display: grid;
  grid-template-columns: 40px 1.7fr 1fr 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px clamp(18px, 2.4vw, 30px);
  background: var(--panel2);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.ops-row {
  display: grid;
  grid-template-columns: 40px 1.7fr 1fr 1fr auto;
  gap: 16px;
  align-items: center;
  padding: clamp(16px, 2vw, 22px) clamp(18px, 2.4vw, 30px);
  border-bottom: 1px solid var(--line2);
  transition: background .25s var(--ease);
}
.ops-row:last-child { border-bottom: 0; }
.ops-row:hover { background: rgba(255,176,32,.04); }
.ops-flag {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--amber);
  font-weight: 600;
}
.ops-lane {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(19px, 2.3vw, 27px);
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ops-lane .to { color: var(--amber); font-size: .8em; }
.ops-meta {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.ops-meta strong { color: var(--steel); font-weight: 600; }
.status {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  white-space: nowrap;
  justify-self: end;
}
.status .led {
  width: 7px; height: 7px; border-radius: 50%;
  flex-shrink: 0;
}
.status--road   { color: var(--amber);  background: rgba(255,176,32,.10); border-color: rgba(255,176,32,.35); }
.status--road .led   { background: var(--amber); box-shadow: 0 0 7px var(--amber); animation: blink 1.6s steps(1) infinite; }
.status--border { color: var(--amber2); background: rgba(255,201,77,.08); border-color: rgba(255,201,77,.3); }
.status--border .led { background: var(--amber2); }
.status--wh     { color: #7fa5ff; background: rgba(46,107,255,.10); border-color: rgba(46,107,255,.35); }
.status--wh .led     { background: var(--blue); box-shadow: 0 0 7px var(--blue); }
.status--done   { color: #8b94a3; background: rgba(255,255,255,.04); border-color: var(--line); }
.status--done .led   { background: #5a6472; }
@keyframes blink { 0%,60%{opacity:1} 61%,100%{opacity:.25} }

.opsboard-note {
  padding: 13px clamp(18px, 2.4vw, 30px);
  background: var(--panel2);
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .08em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}
.opsboard-note .pip {
  width: 6px; height: 6px; border-radius: 50%; background: var(--amber);
  flex-shrink: 0;
}
@media (max-width: 820px){
  .opsboard-head { display: none; }
  .ops-row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "lane status"
      "meta1 status2"
      "meta2 meta2";
    gap: 8px 16px;
  }
  .ops-flag { display: none; }
  .ops-lane { grid-area: lane; }
  .ops-row .ops-meta:nth-of-type(1){ grid-area: meta1; }
  .ops-row .ops-meta:nth-of-type(2){ grid-area: meta2; }
  .status { grid-area: status; align-self: start; justify-self: end; }
}

/* ==========================================================================
   COUNTRY GRID (coverage)
   ========================================================================== */
.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.country-card {
  padding: clamp(22px, 2.6vw, 30px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background .3s var(--ease);
  overflow: hidden;
}
.country-card:hover { background: var(--panel); }
.country-card .code {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--amber);
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.country-card .code .hub {
  color: var(--ink);
  background: var(--amber);
  padding: 2px 7px;
  font-size: 10px;
  letter-spacing: .1em;
}
.country-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 2.8vw, 32px);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 10px;
}
.country-card p { color: var(--muted); font-size: 14px; margin: 0; }

/* ==========================================================================
   PROCESS STEPS
   ========================================================================== */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  counter-reset: step;
}
.pstep {
  padding: clamp(26px, 3vw, 40px);
  border-right: 1px solid var(--line);
  position: relative;
  transition: background .3s;
}
.pstep:last-child { border-right: 0; }
.pstep:hover { background: var(--panel); }
.pstep .pnum {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--amber);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pstep .pnum::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.pstep h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 2.8vw, 34px);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 12px;
}
.pstep p { color: var(--muted); font-size: 14.5px; margin: 0; }
@media (max-width: 820px){
  .process { grid-template-columns: repeat(2, 1fr); }
  .pstep:nth-child(2){ border-right: 0; }
  .pstep:nth-child(1), .pstep:nth-child(2){ border-bottom: 1px solid var(--line); }
}
@media (max-width: 480px){
  .process { grid-template-columns: 1fr; }
  .pstep { border-right: 0; border-bottom: 1px solid var(--line); }
  .pstep:last-child { border-bottom: 0; }
}

/* ==========================================================================
   FEATURE SPLIT (image + text)
   ========================================================================== */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}
.feature-split.reverse .fs-media { order: 2; }
.fs-media {
  border: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.fs-media img { width: 100%; height: 100%; object-fit: cover; }
.fs-body .huge-num {
  font-family: var(--font-display);
  font-size: clamp(70px, 11vw, 150px);
  line-height: .82;
  color: var(--amber);
  letter-spacing: -.01em;
  font-variant-numeric: tabular-nums;
  margin: 14px 0 6px;
}
.fs-body .huge-cap {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
@media (max-width: 820px){
  .feature-split { grid-template-columns: 1fr; }
  .feature-split.reverse .fs-media { order: 0; }
}

/* ==========================================================================
   FLEET GALLERY + LIGHTBOX
   ========================================================================== */
.fleet-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.gitem {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
  background: var(--panel);
}
.gitem img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease), filter .4s;
  filter: saturate(.92);
}
.gitem:hover img { transform: scale(1.06); filter: saturate(1.1); }
.gitem::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(11,13,17,.82));
  opacity: .6;
  transition: opacity .3s;
}
.gitem:hover::after { opacity: .9; }
.gitem-cap {
  position: absolute;
  left: 16px; bottom: 14px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--steel);
  display: flex;
  align-items: center;
  gap: 9px;
  transition: color .25s;
}
.gitem-cap .tag { color: var(--amber); }
.gitem:hover .gitem-cap { color: var(--amber2); }
.gitem .expand {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
  width: 34px; height: 34px;
  border: 1px solid var(--line);
  background: rgba(11,13,17,.5);
  display: grid; place-items: center;
  opacity: 0;
  transform: scale(.85);
  transition: opacity .25s, transform .25s, background .2s;
}
.gitem:hover .expand { opacity: 1; transform: scale(1); }
.gitem:hover .expand { background: var(--amber); }
.gitem:hover .expand svg { stroke: var(--ink); }
.expand svg { stroke: var(--steel); }

/* gallery bento sizing */
.gitem.span2c { grid-column: span 3; }
.gitem.span2r { grid-row: span 2; }
.gitem.span3c { grid-column: span 3; }
@media (max-width: 900px){
  .fleet-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
  .gitem.span2c, .gitem.span3c { grid-column: span 2; }
  .gitem.span2r { grid-row: span 1; }
}
@media (max-width: 520px){
  .fleet-gallery { grid-template-columns: 1fr; }
  .gitem.span2c, .gitem.span3c { grid-column: span 1; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(6,7,9,.94);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 60px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-figure {
  max-width: 1100px;
  width: 100%;
  position: relative;
}
.lightbox-figure img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border: 1px solid var(--line);
}
.lightbox-cap {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.lightbox-cap .lb-count { color: var(--amber); }
.lb-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px; height: 54px;
  border: 1px solid var(--line);
  background: rgba(11,13,17,.7);
  color: var(--steel);
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .2s, color .2s, border-color .2s;
}
.lb-btn:hover { background: var(--amber); color: var(--ink); border-color: var(--amber); }
.lb-prev { left: -10px; }
.lb-next { right: -10px; }
.lb-close {
  position: absolute;
  top: -8px; right: -8px;
  transform: none;
  width: 46px; height: 46px;
}
@media (max-width: 760px){
  .lb-prev { left: 4px; } .lb-next { right: 4px; }
  .lb-btn { width: 44px; height: 44px; }
}

/* ==========================================================================
   QUOTE / PHILOSOPHY BLOCK
   ========================================================================== */
.philosophy {
  border-top: 3px solid var(--amber);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(56px, 8vw, 100px);
  position: relative;
  background:
    radial-gradient(90% 120% at 12% 0%, rgba(255,176,32,.06), transparent 50%);
}
.philosophy blockquote {
  margin: 0;
  max-width: 22ch;
}
.philosophy .quote-txt {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 6vw, 82px);
  line-height: .98;
  text-transform: uppercase;
  letter-spacing: .005em;
}
.philosophy .quote-txt em { color: var(--amber); font-style: normal; }
.philosophy cite {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
  margin-top: 30px;
}
.philosophy .mark-quote {
  font-family: var(--font-display);
  font-size: clamp(120px, 20vw, 260px);
  color: rgba(255,176,32,.10);
  line-height: .6;
  position: absolute;
  right: var(--pad);
  top: 8%;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 720px){ .philosophy .mark-quote { display: none; } }

/* ==========================================================================
   TRUST ROW
   ========================================================================== */
.trust-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  border: 1px solid var(--line);
}
.trust-item {
  padding: clamp(26px, 3vw, 40px);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background .3s;
}
.trust-item:last-child { border-right: 0; }
.trust-item:hover { background: var(--panel); }
.trust-item .t-mark {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  text-transform: uppercase;
  color: var(--amber);
  line-height: 1;
}
.trust-item .t-desc { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .05em; color: var(--muted); text-transform: uppercase; }
@media (max-width: 620px){
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
}

/* ==========================================================================
   FLEET TEASER (home)
   ========================================================================== */
.fleet-teaser {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 480px;
  display: flex;
  align-items: flex-end;
}
.fleet-teaser img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.fleet-teaser::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,13,17,.3) 0%, rgba(11,13,17,.2) 40%, rgba(11,13,17,.95) 100%),
             linear-gradient(90deg, rgba(11,13,17,.7), transparent 70%);
  z-index: 1;
}
.fleet-teaser-inner { position: relative; z-index: 2; padding: clamp(30px, 4vw, 56px); width: 100%; }
.fleet-teaser .the-five {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 22px 0 28px;
}
.fleet-teaser .the-five span {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--steel);
  padding-right: 18px;
  border-right: 1px solid var(--line);
}
.fleet-teaser .the-five span:last-child { border-right: 0; }

/* ==========================================================================
   TIMELINE (about)
   ========================================================================== */
.timeline {
  position: relative;
  display: grid;
  gap: 0;
}
.tl-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: clamp(20px, 4vw, 50px);
  padding: clamp(28px, 3.4vw, 44px) 0;
  border-top: 1px solid var(--line);
  position: relative;
  transition: background .3s;
}
.tl-item:last-child { border-bottom: 1px solid var(--line); }
.tl-item:hover { background: linear-gradient(90deg, rgba(255,176,32,.05), transparent 50%); }
.tl-year {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  color: var(--amber);
  font-variant-numeric: tabular-nums;
}
.tl-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 32px);
  text-transform: uppercase;
  line-height: 1.02;
  margin-bottom: 12px;
}
.tl-body p { color: #b9bfc9; max-width: 60ch; margin: 0; }
@media (max-width: 620px){
  .tl-item { grid-template-columns: 1fr; gap: 12px; }
}

/* ==========================================================================
   VALUES BLOCKS
   ========================================================================== */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}
.value {
  padding: clamp(28px, 3.2vw, 44px);
  border-right: 1px solid var(--line);
  transition: background .3s;
}
.value:last-child { border-right: 0; }
.value:hover { background: var(--panel); }
.value .v-ic {
  width: 46px; height: 46px;
  border: 1px solid var(--amber);
  display: grid; place-items: center;
  color: var(--amber);
  margin-bottom: 22px;
}
.value h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  text-transform: uppercase;
  line-height: 1.02;
  margin-bottom: 12px;
}
.value p { color: var(--muted); font-size: 15px; margin: 0; }
@media (max-width: 820px){
  .values { grid-template-columns: 1fr; }
  .value { border-right: 0; border-bottom: 1px solid var(--line); }
  .value:last-child { border-bottom: 0; }
}

/* ==========================================================================
   ABOUT STORY
   ========================================================================== */
.story {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}
.story-lead {
  font-size: clamp(20px, 2.4vw, 27px);
  line-height: 1.5;
  font-weight: 500;
  color: var(--steel);
}
.story-lead strong { color: var(--amber); font-weight: 700; }
.story-body p { color: #b9bfc9; }
.story-side {
  border: 1px solid var(--line);
  padding: clamp(24px, 3vw, 36px);
  background: var(--panel);
  position: sticky;
  top: 100px;
}
.story-side .side-stat { padding-block: 18px; border-bottom: 1px solid var(--line); }
.story-side .side-stat:last-child { border-bottom: 0; }
.story-side .side-stat .n {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
  color: var(--steel);
}
.story-side .side-stat .l {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}
@media (max-width: 820px){
  .story { grid-template-columns: 1fr; }
  .story-side { position: static; }
}

/* ==========================================================================
   CONTACT — branch cards + form
   ========================================================================== */
.branch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
}
.branch {
  padding: clamp(26px, 3vw, 40px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background .3s;
}
.branch:nth-child(2n){ border-right: 0; }
.branch:nth-child(3), .branch:nth-child(4){ border-bottom: 0; }
.branch:hover { background: var(--panel); }
.branch .b-tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
}
.branch .b-tag .hq {
  background: var(--amber); color: var(--ink);
  padding: 2px 7px; font-size: 10px; letter-spacing: .1em;
}
.branch h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 38px);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 12px;
}
.branch address {
  font-style: normal;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 18px;
}
.branch .b-phone {
  font-family: var(--font-mono);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 600;
  color: var(--steel);
  letter-spacing: .02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color .2s, gap .25s;
}
.branch .b-phone:hover { color: var(--amber); gap: 15px; }
@media (max-width: 720px){
  .branch-grid { grid-template-columns: 1fr; }
  .branch { border-right: 0; }
  .branch:nth-child(3){ border-bottom: 1px solid var(--line); }
}

/* Contact split */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 900px){ .contact-split { grid-template-columns: 1fr; } }

/* Form */
.qform {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: clamp(26px, 3.4vw, 44px);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.field label .req { color: var(--amber); }
.field input,
.field select,
.field textarea {
  background: var(--ink);
  border: 1px solid var(--line);
  color: var(--steel);
  font-family: var(--font-body);
  font-size: 15.5px;
  padding: 13px 15px;
  border-radius: 0;
  transition: border-color .2s, background .2s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; font-family: var(--font-body); }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ffb020' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 42px;
  cursor: pointer;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--amber);
  background: #0d0f14;
}
.field input::placeholder,
.field textarea::placeholder { color: #5a6472; }
.qform .form-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.qform .form-note {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: .04em;
  max-width: 34ch;
}
.form-status {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--amber);
  margin-top: 16px;
  min-height: 18px;
}
@media (max-width: 520px){ .form-grid { grid-template-columns: 1fr; } }

/* Contact aside */
.contact-aside .ca-block { padding-block: 22px; border-bottom: 1px solid var(--line); }
.contact-aside .ca-block:first-child { padding-top: 0; }
.contact-aside .ca-label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.contact-aside .ca-big {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  text-transform: uppercase;
  line-height: 1;
}
.contact-aside a.ca-big:hover { color: var(--amber); }
.social-row { display: flex; gap: 12px; margin-top: 6px; }
.social-row a {
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--steel);
  transition: all .22s var(--ease);
}
.social-row a:hover { border-color: var(--amber); color: var(--amber); transform: translateY(-3px); }

/* ==========================================================================
   BIG CTA BAND
   ========================================================================== */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--amber);
  color: var(--ink);
}
.cta-band .wrap {
  padding-block: clamp(56px, 8vw, 104px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 7vw, 96px);
  text-transform: uppercase;
  line-height: .9;
  color: var(--ink);
  max-width: 16ch;
}
.cta-band p { color: rgba(11,13,17,.75); font-weight: 600; max-width: 40ch; margin-top: 14px; }
.cta-band .btn--ink {
  background: var(--ink);
  color: var(--amber);
  border-color: var(--ink);
}
.cta-band .btn--ink:hover { background: var(--panel); }
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, rgba(11,13,17,.06) 0 20px, transparent 20px 44px);
  pointer-events: none;
}
.cta-band .cta-arrow {
  position: absolute;
  right: -4%;
  bottom: -30%;
  font-family: var(--font-display);
  font-size: clamp(200px, 34vw, 460px);
  color: rgba(11,13,17,.07);
  line-height: .7;
  z-index: 1;
  pointer-events: none;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--ink); border-top: 1px solid var(--line); }
.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: clamp(30px, 5vw, 64px);
  padding-block: clamp(48px, 6vw, 76px);
}
.footer-brand .brand { margin-bottom: 20px; }
.footer-brand p { color: var(--muted); font-size: 15px; max-width: 40ch; }
.footer-brand .faith {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: #6b7484;
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-brand .faith::before { content: "✦"; color: var(--amber); }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--muted); font-size: 15px; transition: color .2s; }
.footer-col a:hover { color: var(--steel); }
.footer-branches li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-branches .fb-city {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #6b7484;
}
.footer-branches .fb-tel {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 600;
  color: var(--steel);
  transition: color .2s;
}
.footer-branches .fb-tel:hover { color: var(--amber); }
.footer-social { display: flex; gap: 12px; margin-top: 4px; }
.footer-social a {
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--steel);
  transition: all .22s var(--ease);
}
.footer-social a:hover { border-color: var(--amber); color: var(--amber); transform: translateY(-3px); }
.footer-legal {
  border-top: 1px solid var(--line);
  padding-block: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: #6b7484;
}
.footer-legal .legal-names { max-width: 68ch; }
@media (max-width: 820px){
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px){
  .footer-main { grid-template-columns: 1fr; }
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }

/* ==========================================================================
   RESPONSIVE — header / nav
   ========================================================================== */
@media (max-width: 940px){
  .nav-links, .header-cta { display: none; }
  .hamburger { display: inline-flex; }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .marquee-track { animation: none !important; transform: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .status--road .led { animation: none !important; }
}
