:root {
  /* Van der Hilst identity: cobalt #0058a8 + steel grey #8c8c8c.
     Dark cinematic operator surface: deep navy void, cobalt as the one
     active-route colour, steel structure. No pure #000 / #fff, every
     neutral tinted toward the brand hue. */
  --void: #051220;         /* deepest page base, blue-black */
  --navy-975: #061a2e;
  --navy-950: #04213f;     /* primary dark surface */
  --navy-900: #073257;
  --panel: #0a2540;        /* raised dark card */
  --panel-2: #0d2c4c;      /* raised dark card, one step up */
  --brand-900: #003a72;
  --brand-800: #00468a;
  --brand-700: #0058a8;    /* THE Van der Hilst blue: action, structure */
  --brand-600: #1a72c4;
  --brand-500: #2f88d8;    /* glow / active */
  --brand-400: #6aa8dd;    /* soft technical accent, links on dark */
  --brand-300: #9cc6ec;
  --steel-400: #6d7480;
  --steel-300: #8c8c8c;    /* true logo grey */
  --steel-200: #b7c1cd;
  --ink: #eef4fb;          /* primary text on dark */
  --ink-body: #c3d2e2;     /* body copy on dark (AA on navy) */
  --ink-dim: #93a6bd;      /* secondary / captions */
  --white: #ffffff;
  --paper: #f4f7fb;        /* light header + rare light break */
  --ink-950: #14243a;      /* text on light header */
  /* hairlines / fills tuned for dark */
  --line: color-mix(in srgb, var(--brand-400) 16%, transparent);
  --line-strong: color-mix(in srgb, var(--brand-400) 30%, transparent);
  --line-warm: color-mix(in srgb, var(--white) 9%, transparent);
  --glow: 0 0 0 1px color-mix(in srgb, var(--brand-500) 40%, transparent), 0 18px 50px color-mix(in srgb, var(--brand-700) 34%, transparent);
  --shadow-soft: 0 20px 44px color-mix(in srgb, #000 40%, transparent);
  --shadow-deep: 0 34px 80px color-mix(in srgb, #000 52%, transparent);
  --display: "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  --body: "DM Sans", system-ui, sans-serif;
  --mono: "Spline Sans Mono", ui-monospace, "SFMono-Regular", monospace;
  --container: min(1560px, 92vw);
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--void); scroll-snap-type: y proximity; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce) { html { scroll-snap-type: none; } }
body {
  margin: 0;
  color: var(--ink-body);
  background:
    radial-gradient(120% 80% at 82% -8%, color-mix(in srgb, var(--brand-700) 24%, transparent), transparent 60%),
    var(--void);
  font-family: var(--body);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
::selection { background: color-mix(in srgb, var(--brand-500) 55%, transparent); color: #fff; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--white);
  background: var(--brand-700);
  border-radius: 10px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.shell { width: var(--container); margin-inline: auto; }

/* The // identity device: one cobalt bar, one steel bar, skewed like the logo. */
.slash-mark {
  display: inline-block;
  width: 20px; height: 15px; flex: none;
  background:
    linear-gradient(var(--brand-500), var(--brand-500)) 0 0 / 5px 100% no-repeat,
    linear-gradient(var(--steel-300), var(--steel-300)) 9px 0 / 5px 100% no-repeat;
  transform: skewX(-18deg);
}

/* ---------- HEADER: transparent over hero, dark glass on scroll ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header[data-elevated="true"] {
  background: color-mix(in srgb, var(--void) 82%, transparent);
  border-bottom-color: var(--line-warm);
  backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 14px 40px color-mix(in srgb, #000 40%, transparent);
}
.header-inner {
  width: var(--container);
  min-height: 84px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(220px, auto) 1fr auto;
  align-items: center;
  gap: clamp(16px, 2.6vw, 34px);
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { height: clamp(40px, 3.8vw, 52px); width: auto; object-fit: contain; object-position: left center; filter: drop-shadow(0 2px 10px color-mix(in srgb, var(--void) 70%, transparent)); }
.desktop-nav { display: flex; justify-content: center; gap: clamp(16px, 2.4vw, 32px); }
.desktop-nav a {
  position: relative;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--mono);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .01em;
  white-space: nowrap;
  text-shadow: 0 1px 8px color-mix(in srgb, var(--void) 60%, transparent);
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -10px;
  height: 2px;
  background: var(--brand-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s var(--ease);
}
.desktop-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-actions > .button { min-height: 40px; padding: 9px 20px; font-size: .76rem; }
.lang-toggle {
  display: inline-flex; align-items: center; padding: 3px; gap: 2px;
  border: 1px solid var(--line-strong);
  border-radius: 3px; background: color-mix(in srgb, var(--void) 40%, transparent);
  backdrop-filter: blur(6px);
}
.lang-toggle button {
  min-width: 38px; padding: 6px 10px; border: 0; border-radius: 2px;
  background: transparent; color: var(--ink-dim);
  font-family: var(--mono); font-size: .74rem; font-weight: 600; letter-spacing: .04em;
  cursor: pointer; transition: background .2s var(--ease), color .2s var(--ease);
}
.lang-toggle button:hover { color: var(--ink); }
.lang-toggle button[aria-pressed="true"] { background: var(--brand-700); color: var(--white); }
.menu-button {
  display: none; width: 46px; height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 3px; background: color-mix(in srgb, var(--void) 40%, transparent); color: var(--ink);
  backdrop-filter: blur(6px);
}
.menu-button span { display: block; width: 18px; height: 2px; margin: 5px auto; background: currentColor; }
.mobile-panel {
  position: absolute; left: 0; right: 0;
  display: grid; gap: 8px; padding: 12px 20px 20px;
  background: color-mix(in srgb, var(--void) 96%, transparent);
  border-bottom: 1px solid var(--line-warm);
  backdrop-filter: blur(16px);
}
.mobile-panel[hidden] { display: none !important; }
.mobile-panel a { padding: 12px 0; color: var(--ink); text-decoration: none; font-weight: 700; border-bottom: 1px solid var(--line-warm); }
.mobile-panel .button-primary { border-bottom: 0; }

/* ---------- BUTTONS ---------- */
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 13px 26px;
  border: 1px solid transparent; border-radius: 2px;
  text-decoration: none; font-family: var(--mono); font-weight: 600; font-size: .82rem;
  letter-spacing: .09em; text-transform: uppercase; line-height: 1.05; cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease);
}
.button-primary {
  color: var(--white);
  background: linear-gradient(180deg, var(--brand-600), var(--brand-700));
  box-shadow: 0 1px 0 color-mix(in srgb, var(--white) 26%, transparent) inset, 0 14px 30px color-mix(in srgb, var(--brand-700) 40%, transparent);
}
.button-primary:hover { transform: translateY(-2px); background: linear-gradient(180deg, var(--brand-500), var(--brand-600)); box-shadow: 0 1px 0 color-mix(in srgb, var(--white) 32%, transparent) inset, 0 20px 44px color-mix(in srgb, var(--brand-500) 46%, transparent); }
.button-primary:active { transform: translateY(0); }
.button-secondary {
  color: var(--ink);
  background: color-mix(in srgb, var(--white) 6%, transparent);
  border-color: var(--line-strong);
  backdrop-filter: blur(6px);
}
.button-secondary:hover { transform: translateY(-2px); color: var(--white); border-color: var(--brand-400); background: color-mix(in srgb, var(--brand-500) 16%, transparent); }
.button-secondary:active { transform: translateY(0); }
.button-large { min-height: 58px; padding: 19px 32px; font-size: .9rem; }
:focus-visible { outline: 3px solid color-mix(in srgb, var(--brand-400) 85%, transparent); outline-offset: 3px; border-radius: 2px; }

/* ---------- EYEBROW / SECTION LABEL ---------- */
.route-label {
  display: inline-flex; align-items: center; gap: 12px; margin: 0 0 18px;
  color: var(--brand-300);
  font-family: var(--mono); font-size: .74rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
}
.route-label::before {
  content: ""; display: inline-block; width: 22px; height: 15px; flex: none;
  background:
    linear-gradient(var(--brand-500), var(--brand-500)) 0 0 / 5px 100% no-repeat,
    linear-gradient(var(--steel-300), var(--steel-300)) 9px 0 / 5px 100% no-repeat;
  transform: skewX(-18deg);
}
h1, h2, h3 {
  margin: 0; color: var(--ink);
  font-family: var(--display); font-weight: 700;
  text-transform: uppercase; letter-spacing: .002em;
  text-wrap: balance;
}
p { text-wrap: pretty; }
strong { font-weight: 700; }

/* ---------- HERO: full-bleed real crane photo, navy scrim on the left ---------- */
.hero-desk {
  position: relative;
  overflow: clip;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(128px, 15vw, 210px) 0 clamp(64px, 8vw, 120px);
  color: var(--ink);
  background:
    linear-gradient(94deg,
      var(--void) 6%,
      color-mix(in srgb, var(--void) 92%, transparent) 34%,
      color-mix(in srgb, var(--void) 62%, transparent) 52%,
      color-mix(in srgb, var(--void) 22%, transparent) 68%,
      transparent 86%),
    linear-gradient(0deg, var(--void) 1%, transparent 34%),
    linear-gradient(180deg, color-mix(in srgb, var(--void) 74%, transparent) 0%, transparent 22%),
    url("./assets/final/site-hero.webp") 68% 42% / cover no-repeat,
    var(--navy-950);
  border-bottom: 1px solid var(--line);
}
.hero-layout { position: relative; z-index: 1; display: block; }
.hero-copy { max-width: min(680px, 64%); }
.hero-copy h1 {
  max-width: min(820px, 92%);
  margin: 6px 0 0;
  color: var(--ink);
  font-size: clamp(2.7rem, 4.6vw, 3.5rem);
  line-height: 1.03;
  letter-spacing: -.005em;
  text-shadow: 0 2px 30px color-mix(in srgb, var(--void) 60%, transparent);
}
.hero-copy h1 .accent { color: var(--brand-400); }
.hero-lede {
  max-width: 52ch;
  margin: 24px 0 0;
  color: var(--ink-body);
  font-size: clamp(1.05rem, 1.4vw, 1.26rem);
  line-height: 1.66;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.quick-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 640px;
  margin: 44px 0 0;
  padding: 0;
  overflow: hidden;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: color-mix(in srgb, var(--panel) 60%, transparent);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
}
.quick-proof li { padding: 20px 22px; border-left: 1px solid var(--line); }
.quick-proof li:first-child { border-left: 0; }
.quick-proof strong { display: block; color: var(--ink); font-family: var(--display); font-weight: 700; font-size: 2rem; line-height: 1; letter-spacing: .01em; }
.quick-proof span { display: block; margin-top: 8px; color: var(--ink-dim); font-family: var(--mono); font-size: .76rem; font-weight: 500; line-height: 1.4; }

/* ---------- SECTION RHYTHM ---------- */
.hero-desk, .route-board-section, .parts-intelligence, .dispatch-section, .company-section, .request-section { scroll-snap-align: start; scroll-snap-stop: always; }
.route-board-section, .parts-intelligence, .dispatch-section, .company-section, .request-section { padding: clamp(96px, 11vh, 140px) 0 clamp(60px, 8vh, 100px); position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; }
.route-board-section { background-color: var(--void); }
.parts-intelligence { background-color: var(--navy-975); border-top: 1px solid var(--line-warm); }
.dispatch-section { background: linear-gradient(165deg, var(--navy-950), var(--void)); border-top: 1px solid var(--line-warm); }
.company-section { background: var(--navy-975); border-top: 1px solid var(--line-warm); }
.request-section { background-color: var(--void); border-top: 1px solid var(--line-warm); }

/* ---------- SECTION BACKGROUND PHOTOS ----------
   Drop a file at the path below and it appears behind the section, under a
   dark left-weighted scrim so the left-column text stays legible.
   Only route / parts / request carry a bg photo; dispatch + company already
   hold inline imagery, so they stay clean. */
.route-board-section { --section-photo: url("./assets/crane01.jpg"); }
.parts-intelligence  { --section-photo: url("./assets/final/site-parts-workbench.webp"); }
.request-section     { --section-photo: url("./assets/final/site-service-hydraulic.webp"); }
.route-board-section, .parts-intelligence, .request-section {
  background-image:
    linear-gradient(100deg,
      color-mix(in srgb, var(--void) 93%, transparent) 0%,
      color-mix(in srgb, var(--void) 82%, transparent) 46%,
      color-mix(in srgb, var(--void) 68%, transparent) 100%),
    var(--section-photo);
  background-size: auto, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}

.route-board { display: grid; grid-template-columns: minmax(260px, .42fr) minmax(0, 1fr); gap: clamp(30px, 5vw, 66px); align-items: start; }
.route-intro { position: relative; }
.route-intro h2, .intelligence-copy h2, .dispatch-copy h2, .company-copy h2, .request-copy h2 {
  color: var(--ink);
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: 0;
}
.route-intro p:not(.route-label), .intelligence-copy p, .dispatch-copy p:not(.route-label), .company-copy p, .request-copy p {
  max-width: 46ch; color: var(--ink-body); font-size: 1.04rem; line-height: 1.68;
}

/* ---------- ROUTE CARDS: dark dispatch panels ---------- */
.route-cards { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr); gap: 18px; align-items: stretch; }
.route-card {
  min-height: 108px;
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: 14px 22px;
  color: var(--ink); text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  box-shadow: var(--shadow-soft);
  overflow: visible; position: relative;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease);
}
.route-card::before { content: none; }
.route-card:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--glow); }
.route-card span { color: #cfe3f7; font-family: var(--mono); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-size: .8rem; position: relative; z-index: 2; white-space: nowrap; }
.route-card span::before { content: "//"; margin-right: .6em; color: var(--brand-500); font-size: .95em; letter-spacing: .02em; font-weight: 600; }
.route-card strong { color: var(--ink); font-family: var(--display); font-weight: 600; text-transform: none; font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.15; position: relative; z-index: 2; }

/* Route media left (full-height photo) + text stack right */
.route-media { margin: 0; position: relative; border-radius: 6px; overflow: hidden; border: 1px solid var(--line-strong); background: var(--panel); }
.route-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 56% 45%; }
.route-stack { display: grid; gap: 12px; }

/* ---------- PARTS INTELLIGENCE ---------- */
.intelligence-layout { display: grid; grid-template-columns: minmax(0, .92fr) minmax(340px, .84fr); gap: clamp(30px, 5vw, 72px); align-items: start; }
.process-rail { display: grid; gap: 12px; }
.process-rail div {
  display: grid; grid-template-columns: 54px 116px 1fr; gap: 16px; align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.process-rail div:hover { border-color: var(--line-strong); transform: translateX(3px); }
.process-rail span {
  display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center;
  border-radius: 4px; color: var(--white);
  background: linear-gradient(180deg, var(--brand-600), var(--brand-800));
  box-shadow: 0 6px 16px color-mix(in srgb, var(--brand-700) 44%, transparent);
  font-family: var(--mono); font-size: .82rem; font-weight: 600; letter-spacing: .05em;
}
.process-rail strong { color: var(--ink); font-family: var(--display); font-weight: 600; text-transform: uppercase; font-size: 1.3rem; line-height: 1.05; letter-spacing: .01em; }
.process-rail p { margin: 0; color: var(--ink-dim); font-size: .92rem; font-weight: 500; }
.parts-categories {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; margin-top: 40px;
  border: 1px solid var(--line); border-radius: 4px; overflow: hidden;
  background: var(--line);
}
.parts-categories article { padding: 28px 24px; background: var(--navy-950); transition: background .22s var(--ease); }
.parts-categories article:hover { background: var(--panel-2); }
.parts-categories span { display: block; color: var(--ink); font-family: var(--display); font-weight: 600; text-transform: uppercase; font-size: 1.3rem; line-height: 1.1; letter-spacing: .01em; }
.parts-categories p { margin: 12px 0 0; color: var(--ink-dim); font-family: var(--mono); font-size: .8rem; font-weight: 400; line-height: 1.55; }

/* ---------- DISPATCH ---------- */
.dispatch-layout { display: grid; grid-template-columns: minmax(340px, .78fr) minmax(0, 1fr); gap: clamp(30px, 5vw, 72px); align-items: center; }
.dispatch-board { display: grid; gap: 14px; padding: 18px; border: 1px solid var(--line-strong); border-radius: 5px; background: color-mix(in srgb, var(--panel) 70%, transparent); box-shadow: var(--shadow-deep); backdrop-filter: blur(6px); }
.dispatch-card { padding: 26px; border-radius: 4px; background: linear-gradient(160deg, color-mix(in srgb, var(--brand-700) 34%, var(--void)), var(--panel-2)); border: 1px solid var(--line); }
.dispatch-card span { color: var(--brand-300); font-family: var(--mono); font-size: .74rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.dispatch-card strong { display: block; margin-top: 10px; color: var(--ink); font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: clamp(1.4rem, 2.2vw, 1.9rem); line-height: 1.02; }
.dispatch-card p { margin: 12px 0 0; color: var(--ink-body); }
.route-modes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.route-modes div { padding: 18px 20px; border: 1px solid var(--line); border-radius: 4px; background: color-mix(in srgb, var(--white) 4%, transparent); transition: border-color .2s var(--ease), background .2s var(--ease); }
.route-modes div:hover { border-color: var(--line-strong); background: color-mix(in srgb, var(--brand-500) 12%, transparent); }
.route-modes strong { display: block; color: var(--ink); font-family: var(--display); font-weight: 600; text-transform: uppercase; font-size: 1.25rem; line-height: 1.05; letter-spacing: .01em; }
.route-modes small { display: block; margin-top: 8px; color: var(--ink-dim); font-family: var(--mono); font-size: .74rem; font-weight: 400; }
.dispatch-copy h2 { color: var(--ink); }
.dispatch-copy .route-label { color: var(--brand-300); }
.dispatch-photo { margin: 28px 0 0; overflow: hidden; border-radius: 4px; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.dispatch-photo img { width: 100%; aspect-ratio: 2.3 / 1; object-fit: cover; filter: saturate(.96) contrast(1.05) brightness(.95); }
.dispatch-photo figcaption { padding: 13px 16px; color: var(--ink-dim); background: var(--panel); font-family: var(--mono); font-size: .78rem; font-weight: 400; }

/* ---------- COMPANY ---------- */
.company-layout, .request-layout { display: grid; grid-template-columns: minmax(0, .88fr) minmax(360px, 1fr); gap: clamp(32px, 5vw, 78px); align-items: start; }
.request-layout.form-open { grid-template-columns: minmax(0, 1fr); gap: clamp(20px, 3vw, 32px); }
.request-layout.form-open .check-list, .request-layout.form-open .request-jump { display: none; }
.request-layout.form-open .request-panel { width: 100%; }
.contact-facts { display: grid; gap: 0; margin: 30px 0 0; }
.contact-facts div { display: grid; grid-template-columns: 104px 1fr; gap: 14px; padding: 15px 0; border-top: 1px solid var(--line); }
.contact-facts dt { color: var(--brand-300); font-family: var(--mono); font-size: .74rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; }
.contact-facts dd { margin: 0; color: var(--ink); font-weight: 600; }
.contact-facts a { color: var(--ink); text-decoration-color: var(--brand-400); text-underline-offset: 4px; }
.contact-facts a:hover { color: var(--brand-300); }
.company-images { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: stretch; }
.company-photo { margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 4px; background: var(--panel); box-shadow: var(--shadow-soft); }
.company-photo img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; filter: saturate(.98) contrast(1.03) brightness(.96); }
.company-photo:first-child img { object-position: 42% 48%; }
.company-photo figcaption { padding: 13px 16px; color: var(--ink-dim); font-family: var(--mono); font-size: .78rem; font-weight: 400; }

/* ---------- REQUEST ---------- */
.request-copy a { color: var(--brand-300); font-weight: 700; }
.request-jump { width: fit-content; margin-top: 22px; }
.check-list { display: grid; gap: 10px; padding: 0; margin: 28px 0 0; list-style: none; }
.check-list li {
  padding: 16px 16px 16px 42px; position: relative;
  border: 1px solid var(--line); border-radius: 4px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  color: var(--ink-body); font-weight: 500;
}
.check-list li::before {
  content: ""; position: absolute; left: 18px; top: 50%;
  width: 13px; height: 16px; transform: translateY(-50%) skewX(-18deg);
  background: linear-gradient(var(--brand-500), var(--brand-500)) 0 0 / 4px 100% no-repeat, linear-gradient(var(--steel-300), var(--steel-300)) 6px 0 / 4px 100% no-repeat;
}
.request-form {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  box-shadow: var(--shadow-deep);
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.request-form label { display: grid; gap: 7px; color: var(--brand-300); font-family: var(--mono); font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.request-form input, .request-form select, .request-form textarea {
  width: 100%; min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 4px; padding: 12px 14px;
  color: var(--ink); background: color-mix(in srgb, var(--void) 55%, var(--panel));
  font-family: var(--body); text-transform: none; letter-spacing: 0; font-weight: 500;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
}
.request-form input::placeholder, .request-form textarea::placeholder { color: var(--steel-400); }
.request-form select { color: var(--ink); }
.request-form input:focus, .request-form select:focus, .request-form textarea:focus {
  outline: none; border-color: var(--brand-500);
  background: color-mix(in srgb, var(--void) 40%, var(--panel));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-500) 34%, transparent);
}
.request-form textarea { resize: vertical; min-height: 140px; }
.full-width { margin-top: 14px; }
.request-form button { margin-top: 20px; width: 100%; }
.form-note { margin: 14px 0 0; color: var(--ink-dim); font-size: .88rem; font-weight: 500; }
.form-note.is-ready { color: var(--brand-300); }

.request-choice { display: grid; gap: 16px; }
.request-choice[hidden], .request-pane[hidden] { display: none; }
.choice-card {
  display: grid; gap: 8px; padding: 28px 26px 30px; text-align: left;
  border: 1px solid var(--line); border-radius: 4px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  box-shadow: var(--shadow-soft); cursor: pointer;
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.choice-card:hover, .choice-card:focus-visible { transform: translateY(-3px); border-color: var(--line-strong); box-shadow: var(--glow); }
.choice-title { color: var(--ink); font-family: var(--display); font-weight: 600; text-transform: uppercase; font-size: 1.3rem; letter-spacing: .01em; }
.choice-desc { color: var(--ink-dim); font-size: .95rem; font-weight: 500; line-height: 1.5; }
.form-back {
  justify-self: start; width: auto; margin: 0 0 18px; padding: 6px 4px;
  border: 0; background: none; color: var(--brand-300);
  font-family: var(--mono); font-weight: 600; font-size: .82rem; letter-spacing: .03em; cursor: pointer;
}
.form-back:hover { color: var(--ink); }

/* ---------- v1.5: titels lopen wijd van links naar rechts; intro bovenaan, panelen eronder ---------- */
.route-board, .intelligence-layout, .dispatch-layout, .company-layout, .request-layout { display: block; }
.route-intro, .intelligence-copy, .dispatch-copy, .company-copy, .request-copy { max-width: none; }
.route-intro h2, .intelligence-copy h2, .dispatch-copy h2, .company-copy h2, .request-copy h2 { max-width: none; }
.route-board { display: block; grid-template-columns: none; gap: 0; }
.route-intro p:not(.route-label), .intelligence-copy p:not(.route-label), .dispatch-copy p:not(.route-label),
.company-copy p:not(.route-label), .request-copy p:not(.route-label) { max-width: 64ch; }
.route-cards { margin-top: clamp(28px, 4vw, 52px); }
.process-rail { margin-top: clamp(28px, 4vw, 44px); }
.parts-categories { margin-top: clamp(32px, 5vw, 56px); }
.dispatch-board { width: 100%; margin-top: clamp(28px, 4vw, 48px); }
.dispatch-photo { max-width: 720px; }
.company-images { margin-top: clamp(28px, 4vw, 48px); }
.request-panel { width: 100%; margin-top: clamp(28px, 4vw, 48px); }

/* ---------- FOOTER ---------- */
.site-footer { padding: clamp(48px, 6vw, 72px) 0 36px; color: var(--ink-dim); background: var(--void); border-top: 1px solid var(--line-warm); }
.footer-layout { display: grid; gap: clamp(28px, 4vw, 44px); }
.footer-tagline { max-width: 52ch; margin: 0; line-height: 1.7; color: var(--ink-body); font-size: 1rem; }
.footer-contact { list-style: none; margin: 0; padding: 26px 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; border-top: 1px solid var(--line-warm); border-bottom: 1px solid var(--line-warm); }
.footer-col { display: grid; gap: 7px; align-content: start; }
.footer-label { font-family: var(--mono); font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--brand-300); }
.footer-col a, .footer-col > span:not(.footer-label) { color: var(--ink); text-decoration: none; font-size: .95rem; font-weight: 500; line-height: 1.5; }
.footer-col a:hover { color: var(--brand-300); }
.footer-legal { display: flex; flex-wrap: wrap; align-items: center; gap: 4px; font-family: var(--mono); font-size: .74rem; letter-spacing: .02em; color: var(--ink-body); }
.footer-legal > span { color: var(--brand-300); font-weight: 600; }

/* ---------- SCROLL REVEAL ---------- */
[data-animate] { opacity: 1; transform: none; }
.js [data-animate] { opacity: 0; transform: translateY(34px) scale(.985); transition: opacity .7s var(--ease), transform .8s var(--ease); }
.js [data-animate="delay"] { transition-delay: .14s; }
.js [data-animate].is-visible { opacity: 1; transform: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .menu-button { display: inline-block; }
  .header-inner { grid-template-columns: auto 1fr; min-height: 74px; }
  .header-actions { justify-self: end; }
  .header-actions > .button { display: none; }
  .hero-layout, .route-board, .intelligence-layout, .dispatch-layout, .company-layout, .request-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 82%; }
  .route-intro { position: static; }
  .route-cards { grid-template-columns: 1fr; }
  .route-media { aspect-ratio: 16 / 9; }
  .parts-categories { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) and (max-height: 820px) {
  .header-inner { min-height: 78px; }
  .brand img { height: 46px; width: auto; }
  .hero-desk { padding-top: 64px; }
  .hero-copy h1 { font-size: clamp(2.4rem, 4.4vw, 3.3rem); }
  .hero-lede { margin-top: 18px; font-size: 1.06rem; line-height: 1.6; }
  .hero-actions { margin-top: 24px; }
  .quick-proof { margin-top: 26px; }
  .quick-proof li { padding: 15px 18px; }
  .quick-proof strong { font-size: 1.7rem; }
}

@media (max-width: 760px) {
  :root { --container: calc(100vw - 28px); }
  .brand img { height: 30px; width: auto; max-width: 62vw; }
  .route-cards { grid-template-columns: 1fr; }
  .route-media, .route-stack, .route-card { min-width: 0; }
  .route-card span { white-space: normal; letter-spacing: .1em; }
  .route-media { aspect-ratio: 4 / 3; }
  .route-card { min-height: 96px; }
  .hero-desk {
    padding-top: 56px;
    background:
      linear-gradient(180deg, color-mix(in srgb, var(--void) 60%, transparent) 30%, var(--void) 88%),
      linear-gradient(96deg, var(--void) 10%, color-mix(in srgb, var(--void) 55%, transparent) 60%, transparent 100%),
      url("./assets/final/site-hero.webp") 62% 45% / cover no-repeat,
      var(--navy-950);
  }
  .hero-copy { max-width: 100%; }
  .hero-copy h1 { font-size: clamp(2.3rem, 7vw, 3.2rem); line-height: 1.05; }
  .hero-lede { font-size: 1.04rem; max-width: none; }
  .hero-actions { margin-top: 26px; }
  .hero-actions .button { width: 100%; }
  .quick-proof { grid-template-columns: 1fr; margin-top: 28px; }
  .quick-proof li { padding: 16px 18px; border-left: 0; border-top: 1px solid var(--line); }
  .quick-proof li:first-child { border-top: 0; }
  .hero-desk { min-height: auto; display: block; }
  .route-board-section, .parts-intelligence, .dispatch-section, .company-section, .request-section { padding: 64px 0; }
  .route-cards { grid-template-columns: 1fr; }
  .route-media { aspect-ratio: 4 / 3; }
  .route-card { min-height: 96px; }
  .process-rail div { grid-template-columns: 48px 1fr; align-items: start; }
  .process-rail p { grid-column: 2; }
  .process-rail span { width: 44px; height: 44px; font-size: .78rem; }
  .parts-categories { grid-template-columns: 1fr; }
  .route-modes { grid-template-columns: 1fr; }
  .company-images { grid-template-columns: 1fr; }
  .company-photo img { min-height: 260px; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-facts div { grid-template-columns: 1fr; gap: 4px; }
  .footer-contact { grid-template-columns: 1fr 1fr; gap: 16px 18px; }
}

@media (max-width: 420px) {
  .hero-copy h1 { font-size: clamp(2rem, 7vw, 2.7rem); }
  .route-intro h2, .intelligence-copy h2, .dispatch-copy h2, .company-copy h2, .request-copy h2 { font-size: clamp(1.7rem, 6vw, 2.2rem); }
  .request-form { padding: 20px; border-radius: 4px; }
  .footer-contact { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .js [data-animate] { opacity: 1; transform: none; }
}

/* ========== DRAFT-V1 ADDITIONS (2026-08-19) ========== */
.hero-resp { margin: 26px 0 0; display: inline-flex; align-items: center; gap: 8px; color: var(--brand-300); font-family: var(--mono); font-size: .78rem; font-weight: 600; letter-spacing: .04em; }
.hero-resp-mark { font-size: .95rem; }
.req-call { margin: 14px 0 0; color: var(--ink-body); font-size: .98rem; }
.req-call a { color: var(--brand-300); font-weight: 700; text-decoration: none; }
.req-call a:hover { text-decoration: underline; }
.why-list { list-style: none; margin: 26px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; background: var(--line); }
.why-list li { display: grid; gap: 4px; padding: 14px 14px; background: var(--panel); }
.why-list strong { color: var(--ink); font-family: var(--display); font-size: 1.15rem; font-weight: 600; line-height: 1.1; }
.why-list span { color: var(--ink-dim); font-family: var(--mono); font-size: .64rem; letter-spacing: .06em; line-height: 1.4; }
@media (max-width: 760px) { .why-list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 420px) { .why-list { grid-template-columns: 1fr; } }
/* Draft polish round 2: legal readability */
.footer-legal { font-size: .82rem; color: #cdd9e6; }
/* Impeccable round 3: one dominant action + calmer mid-section rhythm */
.hero-actions .button-primary { min-height: 56px; padding: 15px 30px; font-size: 1.04rem; }
.hero-actions .button-secondary { background: transparent; border-color: rgba(255,255,255,.4); font-size: .92rem; min-height: 52px; }
.process-rail div { padding: 22px 24px; }
.process-rail strong { font-size: 1.4rem; }
.process-rail p { font-size: .88rem; }
.parts-categories { margin-top: clamp(40px, 6vw, 64px); }
.footer-tagline { font-size: 1.05rem; }
/* Gravity Forms honeypot verbergen: GF's eigen form CSS laadt niet op de
   standalone voorpagina-template, dus het honeypot-veld (label "URL",
   gfield--type-honeypot) zou anders zichtbaar zijn. Zichtbaar = echte
   gebruikers/autofill vullen het -> valse honeypot-fout. Verberg het zodat
   alleen bots (die het veld via POST vullen) getriggerd worden. */
.gform_validation_container,
.gfield--type-honeypot,
li[class*="gfield--type-honeypot"] {
  display: none !important;
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
/* GF invoervelden op de nieuwe voorpagina netjes binnen de request-panel */
.gform_wrapper { margin: 0; }
.gform_wrapper .gfield { margin-bottom: 14px; }
.gform_wrapper input:not([type="hidden"]):not([type="file"]),
.gform_wrapper textarea,
.gform_wrapper select { width: 100%; box-sizing: border-box; }

