/* ===================================================================
   KATAHDIN LOGISTICS — dark, cinematic freight & fleet design system.
   Archetype: wide cinematic motion. Motif: glowing amber route line on a
   dark Maine map, mile-marker ticks, moving-highway streak. Everything
   implies forward, left-to-right momentum. Saira (display) + Barlow (body).
   =================================================================== */

:root {
  --navy:      #0e1726;   /* industrial navy — base */
  --slate:     #16202e;   /* dark slate — raised surfaces */
  --slate-2:   #1c2a3b;   /* lighter panel */
  --amber:     #e0922b;   /* signal amber */
  --amber-hi:  #f4ad4a;   /* amber highlight */
  --steel:     #93a4b8;   /* cool steel — muted text */
  --steel-dim: #5d6e82;   /* dimmer steel — lines */
  --ink:       #eef2f6;   /* off-white text */
  --line:      rgba(147,164,184,.16);
  --line-2:    rgba(147,164,184,.28);
  --amber-glow: rgba(224,146,43,.45);

  --wrap: 1220px;
  --r:   4px;
  --r-lg: 8px;
  --shadow: 0 18px 50px -22px rgba(0,0,0,.8);

  --f-disp: 'Saira', system-ui, sans-serif;
  --f-cond: 'Saira Condensed', 'Saira', sans-serif;
  --f-body: 'Barlow', system-ui, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  background: var(--navy);
  color: var(--ink);
  line-height: 1.62;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--amber-hi); outline-offset: 3px; border-radius: 2px; }

.wrap { width: min(var(--wrap), 92%); margin-inline: auto; }

h1, h2, h3, h4 { font-family: var(--f-disp); line-height: 1.04; font-weight: 700; letter-spacing: -.01em; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--amber); color: var(--navy); padding: .6rem 1rem; font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- shared motif: route divider ---------- */
.route-rule {
  height: 2px; width: 100%;
  background-image: linear-gradient(90deg, var(--amber) 0 14px, transparent 14px 26px);
  background-size: 26px 2px;
  opacity: .5;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--f-cond); text-transform: uppercase;
  letter-spacing: .22em; font-size: .76rem; font-weight: 700;
  color: var(--amber); margin-bottom: 1rem;
}
.eyebrow::before {
  content: ""; width: 30px; height: 2px; background: var(--amber); display: inline-block;
}

/* ===================================================================
   DISPATCH BAR + NAV
   =================================================================== */
.dispatch-bar {
  background: #0a111c;
  border-bottom: 1px solid var(--line);
  font-family: var(--f-cond);
  font-size: .82rem; letter-spacing: .04em;
}
.dispatch-in { display: flex; justify-content: space-between; align-items: center; height: 38px; }
.db-live { color: var(--steel); text-transform: uppercase; letter-spacing: .14em; display: inline-flex; align-items: center; gap: .55rem; font-weight: 600; }
.db-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--amber);
  box-shadow: 0 0 0 0 var(--amber-glow); animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 var(--amber-glow); }
  70% { box-shadow: 0 0 0 7px rgba(224,146,43,0); }
  100% { box-shadow: 0 0 0 0 rgba(224,146,43,0); }
}
.db-phone { color: var(--ink); font-weight: 700; display: inline-flex; align-items: center; gap: .5rem; letter-spacing: .03em; }
.db-phone:hover { color: var(--amber-hi); }
.db-phone .ic { width: 15px; height: 15px; fill: none; stroke: var(--amber); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.site-head {
  position: sticky; top: 0; z-index: 100;
  background: rgba(14,23,38,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.head-in { display: flex; align-items: center; gap: 1.5rem; height: 72px; }

.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; flex: none; }
.brand-mark svg { width: 38px; height: 38px; }
.brand-mark path { stroke: var(--amber); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.brand-mark circle { fill: var(--amber); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--f-cond); font-weight: 800; font-size: 1.32rem; letter-spacing: .08em; color: var(--ink); }
.brand-sub { font-family: var(--f-cond); font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--steel); margin-top: 3px; }

.nav { margin-left: auto; display: flex; gap: 2rem; align-items: center; }
.nav a {
  font-family: var(--f-cond); font-weight: 600; font-size: .94rem;
  text-transform: uppercase; letter-spacing: .1em; color: var(--steel);
  padding: .4rem 0; position: relative; transition: color .15s;
}
.nav a:hover { color: var(--ink); }
.nav a.active { color: var(--ink); }
.nav a.active::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px; background: var(--amber);
}
.head-cta { flex: none; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--f-cond); font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  font-size: .92rem; padding: .8rem 1.5rem; border-radius: var(--r); border: 2px solid transparent;
  transition: transform .12s, background .15s, color .15s, box-shadow .15s; white-space: nowrap;
}
.btn-amber { background: var(--amber); color: #0a111c; box-shadow: 0 0 0 1px rgba(224,146,43,.3); }
.btn-amber:hover { background: var(--amber-hi); transform: translateY(-1px); box-shadow: 0 10px 26px -10px var(--amber-glow); }
.btn-line { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-line:hover { border-color: var(--amber); color: var(--amber-hi); }
.btn-lg { padding: 1rem 1.9rem; font-size: 1rem; }
.btn-block { width: 100%; }

.menu-btn { display: none; background: none; border: 0; width: 44px; height: 44px; padding: 10px; margin-left: auto; }
.menu-btn span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .2s; }
.menu-btn span + span { margin-top: 6px; }

/* ===================================================================
   HERO — full-bleed cinematic, headline hard to the right,
   amber route line cutting across.
   =================================================================== */
.hero {
  position: relative; min-height: 90vh; display: flex; align-items: center;
  overflow: hidden; isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  background-color: var(--slate);
}
.hero-veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(10,17,28,.95) 0%, rgba(10,17,28,.6) 42%, rgba(14,23,38,.2) 100%),
    linear-gradient(0deg, rgba(10,17,28,.9) 0%, transparent 40%);
}
/* route line cutting across hero */
.hero-route {
  position: absolute; left: 0; right: 0; top: 58%; height: 2px; z-index: -1;
  background-image: linear-gradient(90deg, var(--amber) 0 20px, transparent 20px 38px);
  background-size: 38px 2px;
  box-shadow: 0 0 18px var(--amber-glow);
  opacity: .8;
  animation: routeMove 1.6s linear infinite;
}
@keyframes routeMove { to { background-position-x: 38px; } }
@media (prefers-reduced-motion: reduce) {
  .hero-route, .db-dot { animation: none; }
}

.hero-in { width: min(var(--wrap), 92%); margin-inline: auto; position: relative; z-index: 1; padding: 5rem 0; }
.hero-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 2rem; align-items: center; }
.hero-copy { grid-column: 2; text-align: left; }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 800; letter-spacing: -.02em;
  text-transform: uppercase; margin: .4rem 0 1.2rem;
}
.hero h1 .amber { color: var(--amber); display: block; }
.hero-sub { font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: var(--ink); max-width: 40ch; margin-bottom: 1rem; font-weight: 500; }
.hero-body { color: var(--steel); max-width: 46ch; margin-bottom: 2rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scan {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  font-family: var(--f-cond); text-transform: uppercase; letter-spacing: .2em;
  font-size: .72rem; color: var(--steel-dim);
}

/* ===================================================================
   KPI STRIP — live-style counters
   =================================================================== */
.kpi {
  background: #0a111c; border-block: 1px solid var(--line);
  position: relative;
}
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.kpi-cell { padding: 2.4rem 1.6rem; border-left: 1px solid var(--line); position: relative; }
.kpi-cell:first-child { border-left: 0; }
.kpi-tick {
  font-family: var(--f-cond); font-size: .64rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--steel-dim); display: flex; align-items: center; gap: .4rem; margin-bottom: .7rem;
}
.kpi-tick::before { content: ""; width: 6px; height: 6px; background: var(--amber); }
.kpi-num { font-family: var(--f-cond); font-weight: 800; font-size: 2.7rem; color: var(--ink); line-height: 1; letter-spacing: -.01em; }
.kpi-num .u { color: var(--amber); }
.kpi-lbl { color: var(--steel); font-size: .92rem; margin-top: .5rem; }

/* ===================================================================
   SECTIONS — wide letterbox bands
   =================================================================== */
.band { padding: 6rem 0; position: relative; }
.band-slate { background: var(--slate); }
.band-navy  { background: var(--navy); }
.sec-head { max-width: 60ch; margin-bottom: 3rem; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { font-size: clamp(2rem, 4vw, 3.1rem); text-transform: uppercase; }
.sec-head p { color: var(--steel); margin-top: 1rem; font-size: 1.12rem; }

/* ---------- services: wide horizontal rows, not stacked cards ---------- */
.svc-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.svc-row {
  display: grid; grid-template-columns: auto 1fr auto; gap: 2rem; align-items: center;
  padding: 2.2rem 0; border-bottom: 1px solid var(--line); position: relative;
  transition: background .2s;
}
.svc-row:hover { background: rgba(28,42,59,.4); }
.svc-no { font-family: var(--f-cond); font-weight: 800; font-size: 1.5rem; color: var(--amber); width: 3.2rem; }
.svc-main h3 { font-size: 1.5rem; text-transform: uppercase; margin-bottom: .35rem; }
.svc-main p { color: var(--steel); max-width: 62ch; }
.svc-go {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-2);
  display: grid; place-items: center; flex: none; color: var(--steel); transition: all .2s;
}
.svc-row:hover .svc-go { border-color: var(--amber); color: var(--amber); transform: translateX(4px); }
.svc-go svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* image-backed service cards (services page) */
.svc-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.4rem; }
.svc-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 360px;
  display: flex; flex-direction: column; justify-content: flex-end; isolation: isolate;
  border: 1px solid var(--line);
}
.svc-card-bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; transition: transform .5s; }
.svc-card:hover .svc-card-bg { transform: scale(1.06); }
.svc-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(0deg, rgba(10,17,28,.96) 12%, rgba(10,17,28,.35) 65%, transparent);
}
.svc-card-in { padding: 1.6rem; }
.svc-card .kpi-tick { margin-bottom: .5rem; }
.svc-card h3 { font-size: 1.45rem; text-transform: uppercase; margin-bottom: .5rem; }
.svc-card p { color: var(--steel); font-size: .98rem; }

/* ---------- why: feature columns with route ticks ---------- */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.why-cell {
  padding: 2.4rem; border: 1px solid var(--line); margin: -.5px;
  position: relative; background: var(--navy);
}
.band-slate .why-cell { background: var(--slate); }
.why-cell h3 { font-size: 1.35rem; text-transform: uppercase; margin-bottom: .7rem; display: flex; align-items: baseline; gap: .8rem; }
.why-no { font-family: var(--f-cond); font-size: .9rem; color: var(--amber); letter-spacing: .1em; }
.why-cell p { color: var(--steel); }

/* ---------- process: horizontal route of 4 steps over map texture ---------- */
.process-band { position: relative; overflow: hidden; }
.process-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; opacity: .22; }
.process-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, var(--navy), rgba(14,23,38,.7)); z-index: 0; }
.process-band > .wrap { position: relative; z-index: 1; }
.proc-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.proc-line {
  position: absolute; top: 22px; left: 6%; right: 6%; height: 2px;
  background-image: linear-gradient(90deg, var(--amber) 0 10px, transparent 10px 20px);
  background-size: 20px 2px; opacity: .55;
}
.proc-step { padding: 0 1.2rem; position: relative; }
.proc-dot {
  width: 44px; height: 44px; border-radius: 50%; background: var(--navy); border: 2px solid var(--amber);
  display: grid; place-items: center; font-family: var(--f-cond); font-weight: 800; color: var(--amber);
  margin-bottom: 1.4rem; position: relative; z-index: 1;
}
.proc-step h3 { font-size: 1.2rem; text-transform: uppercase; margin-bottom: .5rem; }
.proc-step p { color: var(--steel); font-size: .96rem; }

/* ---------- tracking signature: dispatch panel ---------- */
.track-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.track-copy h2 { font-size: clamp(2rem, 4vw, 3.1rem); text-transform: uppercase; }
.track-copy .lead { color: var(--ink); font-size: 1.18rem; font-weight: 500; margin: 1rem 0; }
.track-copy p { color: var(--steel); }
.track-feats { list-style: none; padding: 0; margin: 1.8rem 0 0; display: grid; gap: 1px; }
.track-feats li { padding: 1rem 0; border-top: 1px solid var(--line); }
.track-feats li:last-child { border-bottom: 1px solid var(--line); }
.track-feats b { font-family: var(--f-cond); text-transform: uppercase; letter-spacing: .05em; color: var(--ink); display: block; font-size: 1.05rem; }
.track-feats span { color: var(--steel); font-size: .95rem; }

/* the dispatch panel "screen" */
.dispatch-panel {
  background: linear-gradient(160deg, #0c1422, #0a111c);
  border: 1px solid var(--line-2); border-radius: var(--r-lg);
  box-shadow: var(--shadow); overflow: hidden;
}
.dp-top { display: flex; align-items: center; justify-content: space-between; padding: .9rem 1.2rem; border-bottom: 1px solid var(--line); }
.dp-title { font-family: var(--f-cond); text-transform: uppercase; letter-spacing: .14em; font-size: .8rem; color: var(--steel); display: flex; align-items: center; gap: .5rem; }
.dp-live { font-family: var(--f-cond); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--amber); display: inline-flex; align-items: center; gap: .4rem; }
.dp-map { position: relative; height: 240px; background-size: cover; background-position: center; }
.dp-map::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,17,28,.55), rgba(10,17,28,.2)); }
.dp-pin {
  position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--amber);
  box-shadow: 0 0 0 4px rgba(224,146,43,.25), 0 0 16px var(--amber-glow); z-index: 1;
}
.dp-rows { padding: .6rem 1.2rem 1.2rem; }
.dp-row { display: grid; grid-template-columns: 1fr auto; gap: .5rem; padding: .7rem 0; border-top: 1px solid var(--line); align-items: center; }
.dp-row:first-child { border-top: 0; }
.dp-ref { font-family: var(--f-cond); font-weight: 700; letter-spacing: .04em; }
.dp-lane { color: var(--steel); font-size: .85rem; }
.dp-status { font-family: var(--f-cond); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; padding: .25rem .6rem; border-radius: 100px; }
.dp-status.rolling { background: rgba(224,146,43,.16); color: var(--amber-hi); }
.dp-status.ontime { background: rgba(147,164,184,.14); color: var(--steel); }
.dp-status.delivered { background: rgba(80,180,120,.14); color: #6fd29a; }

/* ---------- about / story ---------- */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 3rem; align-items: center; }
.about-img { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.about-img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.about-img .tag {
  position: absolute; left: 1rem; bottom: 1rem; background: rgba(10,17,28,.85); backdrop-filter: blur(4px);
  padding: .6rem 1rem; border-left: 3px solid var(--amber); font-family: var(--f-cond);
  text-transform: uppercase; letter-spacing: .08em; font-size: .82rem;
}
.about-copy h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); text-transform: uppercase; }
.about-copy p { color: var(--steel); margin-top: 1.2rem; font-size: 1.06rem; }
.about-copy p.first { color: var(--ink); }

/* ---------- testimonials ---------- */
.proof-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.proof-card {
  background: var(--slate); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.8rem; position: relative;
}
.proof-card::before {
  content: ""; position: absolute; left: 0; top: 1.8rem; bottom: 1.8rem; width: 3px; background: var(--amber);
}
.proof-card blockquote { font-size: 1.08rem; color: var(--ink); padding-left: 1.4rem; }
.proof-who { display: flex; align-items: center; gap: .6rem; margin-top: 1.2rem; padding-left: 1.4rem; color: var(--steel); font-family: var(--f-cond); text-transform: uppercase; letter-spacing: .04em; font-size: .84rem; }
.proof-stars { color: var(--amber); letter-spacing: .1em; }

/* ---------- faq teaser / accordion ---------- */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; color: var(--ink);
  font-family: var(--f-disp); font-weight: 600; font-size: 1.2rem; padding: 1.5rem 3rem 1.5rem 0;
  position: relative; display: block;
}
.faq-q:hover { color: var(--amber-hi); }
.faq-q::after {
  content: ""; position: absolute; right: .5rem; top: 50%; width: 14px; height: 14px;
  border-right: 2px solid var(--amber); border-bottom: 2px solid var(--amber);
  transform: translateY(-70%) rotate(45deg); transition: transform .25s;
}
.faq-item.open .faq-q::after { transform: translateY(-30%) rotate(225deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p { color: var(--steel); padding: 0 3rem 1.6rem 0; }

/* ---------- coverage / final CTA ---------- */
.cta-band { position: relative; overflow: hidden; padding: 7rem 0; isolation: isolate; }
.cta-bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; }
.cta-band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(0deg, rgba(10,17,28,.92), rgba(10,17,28,.6) 60%, rgba(14,23,38,.4));
}
.cta-in { max-width: 760px; }
.cta-in h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); text-transform: uppercase; }
.cta-in p { color: var(--ink); font-size: 1.18rem; margin: 1.2rem 0 2rem; }
.cta-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===================================================================
   PAGE HERO (interior pages)
   =================================================================== */
.page-hero { position: relative; padding: 5rem 0 4rem; overflow: hidden; isolation: isolate; border-bottom: 1px solid var(--line); }
.page-hero-bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; }
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(10,17,28,.95) 0%, rgba(10,17,28,.72) 55%, rgba(14,23,38,.5) 100%);
}
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); text-transform: uppercase; max-width: 18ch; }
.page-hero .lead { color: var(--steel); font-size: 1.15rem; max-width: 56ch; margin-top: 1rem; }
.page-hero .route-rule { margin-top: 2rem; max-width: 220px; }

/* ===================================================================
   FLEET / COVERAGE PAGE
   =================================================================== */
.spec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 0; border: 1px solid var(--line); }
.spec-cell { padding: 2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.spec-num { font-family: var(--f-cond); font-weight: 800; font-size: 2.4rem; color: var(--amber); line-height: 1; }
.spec-cell h3 { font-size: 1.15rem; text-transform: uppercase; margin: .6rem 0 .4rem; }
.spec-cell p { color: var(--steel); font-size: .95rem; }

.equip-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; }
.equip-card { background: var(--slate); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.equip-card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.equip-card .equip-in { padding: 1.4rem; }
.equip-card h3 { font-size: 1.2rem; text-transform: uppercase; margin-bottom: .4rem; }
.equip-card p { color: var(--steel); font-size: .95rem; }

/* coverage / lanes map */
.coverage-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 3rem; align-items: stretch; }
.cov-map { position: relative; border: 1px solid var(--line-2); border-radius: var(--r-lg); overflow: hidden; min-height: 420px; box-shadow: var(--shadow); }
.cov-map-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .5; }
.cov-map::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 40% 50%, transparent, rgba(10,17,28,.55)); }
.cov-pin { position: absolute; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.cov-pin .dot { width: 14px; height: 14px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 4px rgba(224,146,43,.22), 0 0 18px var(--amber-glow); }
.cov-pin .lbl { font-family: var(--f-cond); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink); margin-top: .35rem; background: rgba(10,17,28,.7); padding: 1px 6px; border-radius: 3px; }
.lanes-list { list-style: none; padding: 0; margin: 0; }
.lanes-list li { display: flex; align-items: center; gap: .9rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.lanes-list li:first-child { border-top: 1px solid var(--line); }
.lane-route { font-family: var(--f-cond); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.lane-arrow { color: var(--amber); flex: none; }
.lane-meta { margin-left: auto; color: var(--steel); font-size: .85rem; font-family: var(--f-cond); letter-spacing: .04em; }

/* ===================================================================
   GALLERY
   =================================================================== */
.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; grid-auto-rows: 220px; }
.gal-item { position: relative; overflow: hidden; border-radius: var(--r); border: 1px solid var(--line); cursor: pointer; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gal-item:hover img { transform: scale(1.07); }
.gal-item.tall { grid-row: span 2; }
.gal-item.wide { grid-column: span 2; }
.gal-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,17,28,.4), transparent 50%); opacity: 0; transition: opacity .25s; }
.gal-item:hover::after { opacity: 1; }

.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(6,11,18,.95); display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lb-img { max-width: 90vw; max-height: 82vh; border-radius: var(--r); }
.lb-close, .lb-prev, .lb-next { position: absolute; background: rgba(28,42,59,.7); border: 1px solid var(--line-2); color: var(--ink); width: 50px; height: 50px; border-radius: 50%; font-size: 1.4rem; display: grid; place-items: center; }
.lb-close { top: 1.4rem; right: 1.4rem; }
.lb-prev { left: 1.4rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.4rem; top: 50%; transform: translateY(-50%); }
.lb-count { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); font-family: var(--f-cond); letter-spacing: .1em; color: var(--steel); }

/* ===================================================================
   CONTACT / QUOTE FORM
   =================================================================== */
.contact-grid { display: grid; grid-template-columns: 1.5fr .85fr; gap: 3rem; align-items: start; }
.contact-main { background: var(--slate); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 2.4rem; }
.contact-h { font-size: 1.8rem; text-transform: uppercase; margin-bottom: .5rem; }
.contact-intro { color: var(--steel); margin-bottom: 1.8rem; }
.req { color: var(--amber); }
.c-form { display: grid; gap: 1.3rem; }
.field { display: flex; flex-direction: column; gap: .45rem; }
.field-l { font-family: var(--f-cond); text-transform: uppercase; letter-spacing: .06em; font-size: .82rem; color: var(--steel); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.field input, .field select, .field textarea {
  background: #0c1422; border: 1px solid var(--line-2); border-radius: var(--r); color: var(--ink);
  padding: .8rem .9rem; font: inherit; transition: border-color .15s, box-shadow .15s; width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: var(--steel-dim); }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(224,146,43,.18); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2393a4b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .8rem center; background-size: 18px; padding-right: 2.4rem; }
.field.has-err input, .field.has-err select { border-color: #e0563b; }
.field-err { color: #f08a72; font-size: .85rem; }
.c-note { color: var(--steel-dim); font-size: .85rem; }

.form-success { text-align: center; padding: 2rem 1rem; }
.fs-check { width: 64px; height: 64px; border-radius: 50%; background: rgba(224,146,43,.14); display: grid; place-items: center; margin: 0 auto 1.4rem; }
.fs-check svg { width: 32px; height: 32px; fill: none; stroke: var(--amber); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.form-success h2 { font-size: 1.8rem; text-transform: uppercase; }
.form-success p { color: var(--steel); margin-top: .9rem; }
.fs-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.8rem; }

.contact-side { display: grid; gap: 1.2rem; }
.cside-card { background: var(--slate); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.5rem; }
.cside-card h3 { font-family: var(--f-cond); text-transform: uppercase; letter-spacing: .06em; font-size: 1rem; color: var(--steel); margin-bottom: .6rem; }
.cside-phone { font-family: var(--f-cond); font-weight: 800; font-size: 1.8rem; color: var(--ink); }
.cside-phone:hover { color: var(--amber-hi); }
.cside-card p { color: var(--steel); font-size: .95rem; }
.cside-live { display: inline-flex; align-items: center; gap: .5rem; color: var(--amber); font-family: var(--f-cond); text-transform: uppercase; letter-spacing: .08em; font-size: .85rem; margin-top: .4rem; }

/* ===================================================================
   FOOTER
   =================================================================== */
.foot { background: #0a111c; border-top: 1px solid var(--line); position: relative; padding-top: 4rem; }
.foot-route {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background-image: linear-gradient(90deg, var(--amber) 0 14px, transparent 14px 30px);
  background-size: 30px 2px; opacity: .6;
}
.foot-in { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 3rem; }
.brand-foot { margin-bottom: 1rem; }
.foot-brand p { color: var(--steel); font-size: .95rem; max-width: 38ch; margin-top: .8rem; }
.foot-dot { color: var(--steel-dim) !important; font-family: var(--f-cond); letter-spacing: .04em; font-size: .85rem !important; }
.foot-col h4 { font-family: var(--f-cond); text-transform: uppercase; letter-spacing: .12em; font-size: .85rem; color: var(--amber); margin-bottom: 1.1rem; }
.foot-nav { display: grid; gap: .6rem; }
.foot-nav a { color: var(--steel); font-size: .95rem; }
.foot-nav a:hover { color: var(--ink); }
.foot-contact p { color: var(--steel); font-size: .92rem; margin-top: .4rem; }
.foot-phone { font-family: var(--f-cond); font-weight: 800; font-size: 1.6rem; color: var(--ink); display: inline-block; margin-bottom: .5rem; }
.foot-phone:hover { color: var(--amber-hi); }
.foot-247 { display: inline-flex; align-items: center; gap: .5rem; color: var(--amber) !important; }
.foot-lanes { color: var(--steel-dim) !important; font-size: .85rem !important; }
.foot-bottom {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding: 1.6rem 0; border-top: 1px solid var(--line); color: var(--steel-dim);
  font-family: var(--f-cond); letter-spacing: .04em; font-size: .85rem;
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { grid-column: 1; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .kpi-cell:nth-child(odd) { border-left: 0; }
  .kpi-cell:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .track-grid, .about-grid, .coverage-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-grid .about-img { order: -1; max-width: 420px; }
  .why-grid, .proof-grid { grid-template-columns: 1fr; }
  .foot-in { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw); flex-direction: column;
    align-items: flex-start; gap: 0; background: var(--slate); padding: 6rem 2rem 2rem;
    transform: translateX(110%); transition: transform .3s; box-shadow: var(--shadow); margin: 0;
    border-left: 1px solid var(--line);
  }
  .head.open .nav, .site-head.open .nav { transform: translateX(0); }
  .nav a { width: 100%; padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: 1.1rem; }
  .nav a.active::after { display: none; }
  .head-cta { display: none; }
  .menu-btn { display: block; }
  .site-head.open .menu-btn span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .site-head.open .menu-btn span:nth-child(2) { opacity: 0; }
  .site-head.open .menu-btn span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .band, .cta-band { padding: 4rem 0; }
  .proc-track { grid-template-columns: 1fr; gap: 1.8rem; }
  .proc-line { display: none; }
  .proc-step { padding: 0; padding-left: 3.6rem; }
  .proc-dot { position: absolute; left: 0; top: 0; margin-bottom: 0; }
  .svc-row { grid-template-columns: auto 1fr; }
  .svc-go { display: none; }
  .field-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gal-item.wide { grid-column: span 2; }
  .gal-item.tall { grid-row: span 1; }
  .foot-in { grid-template-columns: 1fr; gap: 2rem; }
  .foot-bottom { flex-direction: column; }
  .dispatch-bar .db-live { display: none; }
  .dispatch-in { justify-content: center; }
  .hero { min-height: auto; padding: 2rem 0; }
}
