/* ============================================================
   ON-LINE ROADMARKING LTD — Design System
   "The Highway Standard" — asphalt, high-vis yellow, spec mono
   ============================================================ */

:root {
  --asphalt: #0b0b0b;
  --asphalt-2: #111110;
  --surface: #161614;
  --surface-2: #1d1d1a;
  --hairline: rgba(242, 241, 235, 0.09);
  --hairline-strong: rgba(242, 241, 235, 0.16);
  --yellow: #ffe800;
  --yellow-dim: #d9c600;
  --text: #f2f1eb;
  --muted: #9b9a91;
  --faint: #6a6960;
  --paper: #efeeea;
  --paper-2: #e6e5df;
  --ink: #141412;
  --ink-muted: #5c5b53;
  --ink-faint: #8a897e;
  --red: #e2231a;

  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;

  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --gutter: clamp(20px, 4vw, 64px);
  --maxw: 1560px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--asphalt);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
picture { display: contents; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--yellow); color: var(--asphalt); }

[id] { scroll-margin-top: 100px; }

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

::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--asphalt); }
::-webkit-scrollbar-thumb { background: #2c2c28; border: 3px solid var(--asphalt); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--yellow); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--yellow); color: var(--asphalt);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em;
  padding: 12px 20px; text-transform: uppercase;
}
.skip-link:focus { left: 0; }

/* ---------- Type primitives ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.01em;
}
.h-mega { font-size: clamp(56px, 10.5vw, 168px); }
.h-1 { font-size: clamp(44px, 7.5vw, 118px); }
.h-2 { font-size: clamp(36px, 5.4vw, 84px); }
.h-3 { font-size: clamp(28px, 3.6vw, 52px); }
.h-4 { font-size: clamp(22px, 2.6vw, 34px); }

.spec {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.spec--yellow { color: var(--yellow); }
.spec--dark { color: var(--ink-muted); }

.lede {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 62ch;
}
.on-paper .lede { color: var(--ink-muted); }

/* ---------- Layout primitives ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.section { padding-top: clamp(72px, 9vw, 150px); padding-bottom: clamp(72px, 9vw, 150px); position: relative; }
.section--tight { padding-top: clamp(48px, 6vw, 96px); padding-bottom: clamp(48px, 6vw, 96px); }
.on-paper { background: var(--paper); color: var(--ink); }
.on-paper .spec { color: var(--ink-muted); }

.split { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 5vw, 96px); align-items: start; }
.split--even { grid-template-columns: 1fr 1fr; }

.sticky-note { position: sticky; top: 120px; }

/* ---------- Reveal motion ---------- */
.rv { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: 0.08s; }
.rv-d2 { transition-delay: 0.16s; }
.rv-d3 { transition-delay: 0.24s; }
.rv-d4 { transition-delay: 0.32s; }

/* ---------- Header — floating bar ---------- */
.site-head {
  position: fixed; top: 16px; left: 0; right: 0; z-index: 130;
  padding: 0 var(--gutter);
}
.head-in {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  max-width: var(--maxw); margin: 0 auto; height: 66px; padding: 0 12px 0 20px;
  background: rgba(11, 11, 11, 0.72);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  border: 1px solid var(--yellow);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.site-head.scrolled .head-in {
  background: rgba(11, 11, 11, 0.94);
  border-color: var(--yellow);
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo { height: 34px; width: auto; display: block; }
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 21px; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1; }
.brand-name em { font-style: normal; color: var(--yellow); }
.brand-tag { display: block; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.22em; color: var(--muted); text-transform: uppercase; margin-top: 4px; }

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a.nav-link {
  font-family: var(--font-body); font-size: 14.5px; font-weight: 500; letter-spacing: 0.01em;
  color: var(--muted); position: relative; padding: 8px 0; transition: color 0.3s;
}
.main-nav a.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--yellow); transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.main-nav a.nav-link:hover, .main-nav a.nav-link[aria-current="page"] { color: var(--text); }
.main-nav a.nav-link:hover::after, .main-nav a.nav-link[aria-current="page"]::after { transform: scaleX(1); }

.head-cta { display: flex; align-items: center; gap: 18px; }
.head-tel { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; color: var(--text); white-space: nowrap; }
.head-tel:hover { color: var(--yellow); }

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 14px 26px; border: 1px solid var(--yellow);
  color: var(--asphalt); background: var(--yellow);
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
  position: relative; overflow: hidden;
}
.btn svg { width: 14px; height: 14px; transition: transform 0.35s var(--ease); }
.btn:hover { background: transparent; color: var(--yellow); }
.btn:hover svg { transform: translateX(5px); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--hairline-strong); }
.btn--ghost:hover { border-color: var(--yellow); color: var(--yellow); background: transparent; }
.btn--dark { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.btn--dark:hover { background: transparent; color: var(--ink); }
.btn--sm { padding: 11px 20px; font-size: 11px; }

.burger { display: none; width: 44px; height: 44px; position: relative; z-index: 130; }
.burger span { position: absolute; left: 10px; right: 10px; height: 3px; background: var(--yellow); transition: transform 0.4s var(--ease), opacity 0.3s, top 0.4s var(--ease), left 0.4s var(--ease), width 0.4s var(--ease); }
.burger span:nth-child(1) { top: 14px; } .burger span:nth-child(2) { top: 21px; } .burger span:nth-child(3) { top: 28px; }
body.nav-open .burger span:nth-child(1) { top: 50%; left: 50%; right: auto; width: 62px; transform: translate(-50%, -50%) rotate(45deg); }
body.nav-open .burger span:nth-child(2) { opacity: 0; }
body.nav-open .burger span:nth-child(3) { top: 50%; left: 50%; right: auto; width: 62px; transform: translate(-50%, -50%) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; z-index: 120; background: var(--asphalt);
  display: flex; flex-direction: column; justify-content: center; padding: 0 var(--gutter);
  opacity: 0; pointer-events: none; transition: opacity 0.45s var(--ease);
}
body.nav-open .mobile-nav { opacity: 1; pointer-events: auto; }
.mobile-nav a.m-link {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  font-size: clamp(34px, 8vw, 56px); line-height: 1.14; color: var(--text);
  border-bottom: 1px solid var(--hairline); padding: 10px 0; display: flex; justify-content: space-between; align-items: center;
}
.mobile-nav a.m-link .spec { font-size: 10px; }
.mobile-nav a.m-link:hover { color: var(--yellow); }
.mobile-nav .m-foot { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 20px; }

/* ---------- Hero ---------- */
.hero { min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden; padding: 140px 0 0; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg svg { width: 100%; height: 100%; }
.hero-bg--photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,11,11,0.78), rgba(11,11,11,0.58) 42%, rgba(11,11,11,0.96)); }
.hero .lede { color: #e3e2db; text-shadow: 0 1px 16px rgba(0,0,0,0.6); }
.hero h1 { text-shadow: 0 2px 28px rgba(0,0,0,0.5); }
.hero .hero-kicker .spec { text-shadow: 0 1px 10px rgba(0,0,0,0.7); }
.hero-grain { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.5; mix-blend-mode: overlay; }
.hero-in { position: relative; z-index: 2; }
.hero-kicker { display: flex; align-items: center; gap: 16px; margin-bottom: clamp(20px, 3vw, 40px); flex-wrap: wrap; }
.hero-kicker .dash { width: 48px; height: 2px; background: var(--yellow); }
.hero h1 { margin-bottom: clamp(24px, 3.5vw, 48px); }
.hero h1 .line-mask { display: block; overflow: hidden; }
.hero h1 .line-mask > span { display: block; transform: translateY(110%); animation: rise 1.1s var(--ease) forwards; }
.hero h1 .line-mask:nth-child(2) > span { animation-delay: 0.12s; }
.hero h1 .line-mask:nth-child(3) > span { animation-delay: 0.24s; }
@keyframes rise { to { transform: none; } }
.hero h1 .yl { color: var(--yellow); }
.hero-foot { border-top: 1px solid var(--hairline); display: grid; grid-template-columns: repeat(3, 1fr); }
.hero-foot > div { padding: clamp(18px, 2.4vw, 30px) 0; }
.hero-foot > div + div { border-left: 1px solid var(--hairline); padding-left: clamp(18px, 2.4vw, 30px); }
.hero-foot .num { font-family: var(--font-display); font-weight: 600; font-size: clamp(30px, 3.4vw, 52px); line-height: 1; color: var(--yellow); }
.hero-foot .lbl { margin-top: 8px; }

/* ---------- Location ticker ---------- */
.ticker { border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); overflow: hidden; padding: 18px 0; background: var(--asphalt-2); }
.ticker-track { display: flex; gap: 0; width: max-content; animation: tick 46s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item { display: flex; align-items: center; gap: 28px; padding-right: 28px; white-space: nowrap; }
.ticker-item span { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: 20px; letter-spacing: 0.03em; color: var(--muted); }
.ticker-item i { width: 7px; height: 7px; background: var(--yellow); flex: none; }
@keyframes tick { to { transform: translateX(-50%); } }

/* ---------- Section heads ---------- */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: clamp(40px, 5.5vw, 80px); flex-wrap: wrap; }
.sec-head .spec { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.sec-head .spec::before { content: ""; width: 32px; height: 2px; background: var(--yellow); }

/* ---------- Centreline divider ---------- */
.centreline { height: 40px; position: relative; overflow: hidden; }
.centreline::before {
  content: ""; position: absolute; top: 50%; left: 0; right: 0; height: 3px;
  background-image: linear-gradient(90deg, var(--yellow) 0 34px, transparent 34px 68px);
  background-size: 68px 3px; opacity: 0.85;
}
.on-paper .centreline::before { opacity: 0.9; }

/* ---------- Service index rows ---------- */
.svc-row { display: block; border-top: 1px solid var(--hairline); position: relative; }
.svc-row:last-child { border-bottom: 1px solid var(--hairline); }
.svc-row-in {
  display: grid; grid-template-columns: 90px minmax(0, 1fr) auto; gap: clamp(18px, 3vw, 48px);
  align-items: center; padding: clamp(26px, 3.4vw, 44px) 0; position: relative; z-index: 1;
}
.svc-row .idx { font-family: var(--font-mono); font-size: 13px; color: var(--faint); letter-spacing: 0.1em; transition: color 0.4s; }
.svc-row .name { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: clamp(26px, 3.8vw, 56px); line-height: 1; transition: transform 0.5s var(--ease), color 0.4s; }
.svc-row .meta { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.svc-row .arrow { width: 40px; height: 40px; border: 1px solid var(--hairline-strong); display: grid; place-items: center; transition: all 0.45s var(--ease); border-radius: 50%; }
.svc-row .arrow svg { width: 16px; height: 16px; transition: transform 0.45s var(--ease); }
.svc-row .fill { position: absolute; inset: 0; background: var(--yellow); transform: scaleY(0); transform-origin: bottom; transition: transform 0.5s var(--ease); z-index: 0; }
.svc-row:hover .fill { transform: scaleY(1); }
.svc-row:hover .idx, .svc-row:hover .name { color: var(--asphalt); }
.svc-row:hover .spec { color: var(--asphalt); }
.svc-row:hover .name { transform: translateX(18px); }
.svc-row:hover .arrow { border-color: var(--asphalt); background: var(--asphalt); color: var(--yellow); }
.svc-row:hover .arrow svg { transform: rotate(45deg); }
.svc-row .tags { color: var(--faint); transition: color 0.4s; }

/* ---------- Stat band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--hairline); }
.stat { padding: clamp(28px, 3.6vw, 52px); }
.stat + .stat { border-left: 1px solid var(--hairline); }
.stat .num { font-family: var(--font-display); font-weight: 600; font-size: clamp(44px, 5.6vw, 88px); line-height: 0.9; color: var(--yellow); font-variant-numeric: tabular-nums; }
.stat .lbl { margin-top: 14px; }
.on-paper .stats { border-color: rgba(20, 20, 18, 0.14); }
.on-paper .stat + .stat { border-left-color: rgba(20, 20, 18, 0.14); }
.on-paper .stat .num { color: var(--ink); }
.on-paper .stat .num i { color: var(--yellow-dim); font-style: normal; }

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); }
.card { background: var(--asphalt); padding: clamp(26px, 3vw, 44px); position: relative; transition: background 0.4s var(--ease); }
.card:hover { background: var(--surface); }
.card .card-icon { width: 44px; height: 44px; color: var(--yellow); margin-bottom: 26px; }
.card h3 { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: 24px; line-height: 1.05; margin-bottom: 14px; }
.card p { color: var(--muted); font-size: 15px; }
.on-paper .card { background: var(--paper); }
.on-paper .card:hover { background: var(--paper-2); }
.on-paper .card p { color: var(--ink-muted); }
.on-paper .card-grid { background: rgba(20, 20, 18, 0.14); border-color: rgba(20, 20, 18, 0.14); }

/* ---------- Case studies ---------- */
.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 2.6vw, 40px); }
.case-card { display: block; border: 1px solid var(--hairline); overflow: hidden; background: var(--surface); transition: border-color 0.4s; }
.case-card:hover { border-color: var(--yellow); }
.case-visual { aspect-ratio: 16/10; overflow: hidden; position: relative; background: var(--surface-2); }
.case-visual svg { width: 100%; height: 100%; transition: transform 0.9s var(--ease); }
.case-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease), filter 0.9s var(--ease); filter: saturate(0.92); }
.case-card:hover .case-visual svg { transform: scale(1.04); }
.case-card:hover .case-visual img { transform: scale(1.04); filter: saturate(1.05); }
.case-body { padding: clamp(20px, 2.4vw, 34px); display: flex; flex-direction: column; gap: 12px; }
.case-body h3 { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: clamp(22px, 2.2vw, 30px); line-height: 1; }
.case-body .row { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.case-body p { color: var(--muted); font-size: 15px; }

/* ---------- Accreditation band ---------- */
.accred { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); border: 1px solid var(--hairline); }
.accred-item { padding: 26px 20px; text-align: center; display: flex; flex-direction: column; gap: 10px; align-items: center; justify-content: center; }
.accred-item + .accred-item { border-left: 1px solid var(--hairline); }
.accred-item .spec { color: var(--faint); font-size: 10px; }
.accred-item strong { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: 20px; letter-spacing: 0.04em; }

/* ---------- Testimonials ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); }
.quote { background: var(--asphalt); padding: clamp(26px, 3vw, 44px); display: flex; flex-direction: column; gap: 22px; }
.quote .mark { font-family: var(--font-display); font-size: 64px; line-height: 0.5; color: var(--yellow); font-weight: 600; }
.quote blockquote { font-size: 16px; line-height: 1.65; color: var(--text); flex: 1; }
.quote cite { font-style: normal; display: flex; flex-direction: column; gap: 4px; }
.quote cite strong { font-family: var(--font-display); text-transform: uppercase; font-size: 18px; letter-spacing: 0.03em; font-weight: 600; }
.quote .stars { color: var(--yellow); letter-spacing: 4px; font-size: 14px; }

/* ---------- FAQ ---------- */
.faq-item { border-top: 1px solid var(--hairline); }
.faq-item:last-child { border-bottom: 1px solid var(--hairline); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: clamp(20px, 2.6vw, 30px) 0;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: clamp(19px, 2vw, 26px); line-height: 1.1;
  transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--yellow); }
.faq-item summary .plus { width: 34px; height: 34px; flex: none; border: 1px solid var(--hairline-strong); border-radius: 50%; display: grid; place-items: center; position: relative; transition: all 0.4s var(--ease); }
.faq-item summary .plus::before, .faq-item summary .plus::after { content: ""; position: absolute; background: currentColor; }
.faq-item summary .plus::before { width: 12px; height: 2px; }
.faq-item summary .plus::after { width: 2px; height: 12px; transition: transform 0.4s var(--ease); }
.faq-item[open] summary { color: var(--yellow); }
.faq-item[open] summary .plus { background: var(--yellow); border-color: var(--yellow); color: var(--asphalt); }
.faq-item[open] summary .plus::after { transform: rotate(90deg); }
.faq-body { padding: 0 0 clamp(22px, 2.6vw, 32px); max-width: 74ch; color: var(--muted); }
.faq-body p + p { margin-top: 12px; }
.faq-item[open] .faq-body { animation: faqopen 0.5s var(--ease); }
@keyframes faqopen { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.steps--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1100px) { .steps--3 { grid-template-columns: 1fr; } }
@media (hover: none) {
  .svc-row:active .fill { transform: scaleY(1); }
  .svc-row:active .idx, .svc-row:active .name { color: var(--asphalt); }
  .svc-row:active .spec { color: var(--asphalt); }
}
.on-paper .faq-item { border-color: rgba(20,20,18,0.14); }
.on-paper .faq-item summary:hover, .on-paper .faq-item[open] summary { color: var(--ink); }
.on-paper .faq-item summary .plus { border-color: rgba(20,20,18,0.3); }
.on-paper .faq-body { color: var(--ink-muted); }

/* ---------- Steps / process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); }
.step { background: var(--asphalt); padding: clamp(26px, 3vw, 42px); }
.step .n { font-family: var(--font-display); font-weight: 600; font-size: 60px; line-height: 0.9; color: transparent; -webkit-text-stroke: 1.5px var(--yellow); margin-bottom: 22px; }
.step h3 { font-family: var(--font-display); text-transform: uppercase; font-weight: 600; font-size: 22px; margin-bottom: 12px; }
.step p { color: var(--muted); font-size: 15px; }

/* ---------- Location cards ---------- */
.loc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); }
.loc-card { background: var(--asphalt); padding: clamp(22px, 2.4vw, 34px); display: flex; flex-direction: column; gap: 8px; transition: background 0.4s var(--ease); position: relative; }
.loc-card:hover { background: var(--yellow); }
.loc-card:hover * { color: var(--asphalt) !important; }
.loc-card .loc-name { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: clamp(22px, 2vw, 28px); line-height: 1; }
.loc-card .loc-dist { color: var(--faint); }
.loc-card .arrow-r { position: absolute; top: 22px; right: 22px; width: 16px; height: 16px; opacity: 0; transform: translate(-6px, 6px); transition: all 0.4s var(--ease); color: var(--asphalt); }
.loc-card:hover .arrow-r { opacity: 1; transform: none; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--yellow); color: var(--asphalt); position: relative; overflow: hidden; }
.cta-band .display { color: var(--asphalt); }
.cta-band .lede { color: rgba(11, 11, 11, 0.72); }
.cta-band .spec { color: rgba(11, 11, 11, 0.6); }
.cta-in { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band .btn { border-color: var(--asphalt); background: var(--asphalt); color: var(--yellow); }
.cta-band .btn:hover { background: transparent; color: var(--asphalt); }
.cta-zebra { height: 26px; background-image: repeating-linear-gradient(-45deg, var(--asphalt) 0 22px, transparent 22px 44px); opacity: 0.9; }

/* ---------- Contact / form ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--surface); border: 1px solid var(--hairline);
  color: var(--text); font-family: var(--font-body); font-size: 15px;
  padding: 15px 16px; transition: border-color 0.3s;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--yellow); }
.contact-info { display: flex; flex-direction: column; gap: 26px; }
.contact-info .ci-row { border-top: 1px solid var(--hairline); padding-top: 20px; }
.contact-info .ci-row a.big { font-family: var(--font-display); font-weight: 600; font-size: clamp(24px, 2.6vw, 38px); text-transform: uppercase; line-height: 1.05; display: inline-block; margin-top: 6px; transition: color 0.3s; }
.contact-info .ci-row a.big:hover { color: var(--yellow); }

/* ---------- Footer ---------- */
.site-foot { border-top: 1px solid var(--hairline); background: var(--asphalt); position: relative; }
.foot-zebra { height: 30px; background-image: repeating-linear-gradient(-45deg, var(--text) 0 26px, var(--asphalt) 26px 52px); opacity: 0.9; }
.foot-main { padding-top: clamp(48px, 6vw, 90px); padding-bottom: clamp(36px, 4vw, 60px); display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: clamp(30px, 4vw, 60px); }
.foot-col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); margin-bottom: 20px; }
.foot-col ul { display: flex; flex-direction: column; gap: 11px; }
.foot-col a { color: var(--muted); font-size: 14px; transition: color 0.3s; }
.foot-col a:hover { color: var(--yellow); }
.foot-brand p { color: var(--muted); font-size: 14px; max-width: 34ch; margin-top: 18px; }
.foot-drop { margin-top: 22px; border-top: 1px solid var(--hairline); max-width: 34ch; }
.foot-drop summary { cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; padding: 15px 0; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); transition: color 0.3s; }
.foot-drop summary:hover { color: var(--yellow); }
.foot-drop summary::-webkit-details-marker { display: none; }
.foot-drop summary::after { content: "+"; font-family: var(--font-mono); font-size: 15px; color: var(--yellow); transition: transform 0.35s var(--ease); }
.foot-drop[open] summary::after { transform: rotate(45deg); }
.foot-drop ul { display: flex; flex-direction: column; gap: 11px; padding: 2px 0 18px; }
.foot-drop a { color: var(--muted); font-size: 14px; transition: color 0.3s; }
.foot-drop a:hover { color: var(--yellow); }
.foot-legal { border-top: 1px solid var(--hairline); padding-top: 22px; padding-bottom: 22px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.foot-legal, .foot-legal a { color: var(--faint); font-size: 12px; font-family: var(--font-mono); letter-spacing: 0.06em; }
.foot-legal a:hover { color: var(--yellow); }
.foot-word { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; line-height: 0.8; font-size: clamp(60px, 12.5vw, 220px); color: var(--surface-2); text-align: center; padding: 20px 0 0; user-select: none; letter-spacing: 0.01em; white-space: nowrap; overflow: hidden; }

/* ---------- Breadcrumbs ---------- */
.crumbs { padding-top: 110px; }
.crumbs ol { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.crumbs li { display: flex; gap: 10px; align-items: center; }
.crumbs li + li::before { content: "/"; color: var(--faint); font-family: var(--font-mono); font-size: 11px; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--yellow); }
.crumbs [aria-current] { color: var(--yellow); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding-top: 40px; padding-bottom: clamp(48px, 6vw, 90px); }
.page-hero h1 { margin: 18px 0 22px; }
.page-hero .lede { max-width: 68ch; }

/* ---------- Article body ---------- */
.article-body { max-width: 74ch; color: var(--muted); font-size: 17px; }
.article-body h2 { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; color: var(--text); font-size: clamp(26px, 3vw, 38px); margin: 48px 0 18px; }
.article-body h3 { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; color: var(--text); font-size: 24px; margin: 36px 0 14px; }
.article-body p { margin-bottom: 18px; }
.article-body ul { margin: 0 0 18px 0; display: flex; flex-direction: column; gap: 10px; }
.article-body ul li { padding-left: 26px; position: relative; }
.article-body ul li::before { content: ""; position: absolute; left: 0; top: 10px; width: 14px; height: 3px; background: var(--yellow); }
.article-body strong { color: var(--text); }
.byline { display: flex; gap: 22px; align-items: center; border: 1px solid var(--hairline); padding: 18px 22px; margin: 34px 0; flex-wrap: wrap; }
.byline .avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--yellow); color: var(--asphalt); display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; font-size: 20px; }

/* ---------- Blog cards ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.6vw, 40px); }
.post-card { border: 1px solid var(--hairline); display: flex; flex-direction: column; transition: border-color 0.4s; background: var(--asphalt); }
.post-card:hover { border-color: var(--yellow); }
.post-card .p-body { padding: clamp(22px, 2.4vw, 32px); display: flex; flex-direction: column; gap: 14px; flex: 1; }
.post-card h3 { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: 24px; line-height: 1.05; }
.post-card p { color: var(--muted); font-size: 15px; flex: 1; }
.post-card .p-meta { display: flex; justify-content: space-between; gap: 12px; }
.p-thumb { width: 100%; height: auto; aspect-ratio: 16/10; object-fit: cover; display: block; filter: saturate(0.92); }
.photo-banner { margin: clamp(32px, 5vw, 56px) 0 0; border: 1px solid var(--hairline); }
.photo-banner img { width: 100%; height: auto; max-height: 520px; object-fit: cover; display: block; }
.photo-banner figcaption { padding: 10px 16px; border-top: 1px solid var(--hairline); color: var(--muted); }
.g-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); }
.g-strip a { display: block; overflow: hidden; }
.g-strip img { width: 100%; height: auto; aspect-ratio: 3/2; object-fit: cover; display: block; filter: saturate(0.9); transition: transform 0.9s var(--ease), filter 0.9s var(--ease); }
.g-strip a:hover img { transform: scale(1.05); filter: saturate(1.05); }
@media (max-width: 760px) { .g-strip { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Spec sheet table ---------- */
.spec-table { width: 100%; border-collapse: collapse; border: 1px solid var(--hairline); }
.spec-table th, .spec-table td { text-align: left; padding: 16px 20px; border-bottom: 1px solid var(--hairline); font-size: 14px; }
.spec-table th { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); font-weight: 500; }
.spec-table td:first-child { color: var(--muted); }
.spec-table tr:last-child td { border-bottom: 0; }

/* ---------- Corridor map (locations) ---------- */
.corridor { border: 1px solid var(--hairline); background: var(--surface); padding: clamp(18px, 3vw, 40px); }
.corridor svg { width: 100%; height: auto; }
.corridor .map-cap { margin-top: 18px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ---------- Notice ---------- */
.notice { border: 1px solid var(--hairline-strong); border-left: 4px solid var(--yellow); padding: 18px 22px; background: var(--surface); color: var(--muted); font-size: 14px; }

/* ---------- Misc ---------- */
.mt-40 { margin-top: 40px; } .mt-60 { margin-top: 60px; }
.two-col-text { columns: 2; column-gap: clamp(30px, 4vw, 64px); color: var(--muted); }
.two-col-text p { margin-bottom: 18px; break-inside: avoid; }
.check-list { display: flex; flex-direction: column; gap: 14px; }
.check-list li { display: flex; gap: 16px; align-items: flex-start; color: var(--muted); }
.check-list li svg { width: 18px; height: 18px; color: var(--yellow); flex: none; margin-top: 3px; }
.on-paper .check-list li { color: var(--ink-muted); }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .main-nav { display: none; }
  .burger { display: block; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--hairline); }
  .on-paper .stat:nth-child(n+3) { border-top-color: rgba(20,20,18,0.14); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .loc-grid { grid-template-columns: repeat(3, 1fr); }
  .foot-main { grid-template-columns: 1fr 1fr; }
  .card-grid, .quote-grid, .post-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .split, .split--even { grid-template-columns: 1fr; }
  .sticky-note { position: static; }
  .hero-foot { grid-template-columns: 1fr; }
  .hero-foot > div + div { border-left: 0; border-top: 1px solid var(--hairline); padding-left: 0; }
  .svc-row-in { grid-template-columns: 48px 1fr auto; }
  .svc-row .tags { display: none; }
  .case-grid, .card-grid, .quote-grid, .post-grid, .form-grid { grid-template-columns: 1fr; }
  .loc-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .two-col-text { columns: 1; }
  .head-tel { display: none; }
  .head-cta .btn { display: none; }
  .head-in { height: 66px; }
  .brand { gap: 10px; min-width: 0; }
  .brand-name { font-size: 16px; white-space: nowrap; }
  .brand-tag { display: none; }
  .brand-logo { height: 28px; }
  .accred { grid-template-columns: repeat(2, 1fr); }
  .accred-item:nth-child(odd) { border-left: 0; }
  .accred-item:nth-child(n+3) { border-top: 1px solid var(--hairline); }
  .cta-in { flex-direction: column; align-items: flex-start; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; transition: none; }
  .hero h1 .line-mask > span { transform: none; animation: none; }
  .ticker-track { animation: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- Print ---------- */
@media print {
  .site-head, .mobile-nav, .ticker, .cta-band, .burger { display: none; }
  body { background: #fff; color: #000; }
}
