/* ==========================================================================
   Brothers Auto Mechanic Inc. — "Pit Lane Noir" design system
   One stylesheet for the whole site. Mobile-first.
   ========================================================================== */

/* ---------- 1. Fonts (self-hosted, latin subset) ---------- */
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-latin.woff2") format("woff2");
  font-weight: 400 800;
  font-stretch: 75% 125%;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo Fallback";
  src: local("Arial");
  size-adjust: 101%;
  ascent-override: 88%;
  descent-override: 21%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/ibm-plex-mono-400-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/ibm-plex-mono-500-latin.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Newsreader";
  src: url("../fonts/newsreader-italic-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: optional;
}

/* ---------- 2. Tokens ---------- */
:root {
  --carbon: #0B0C0E;
  --gunmetal: #131518;
  --raised: #1B1E22;
  --chalk: #F2F3F5;
  --alloy: #A8AAAE;
  --red: #ED1B24;        /* the shop's own red, sampled from their signage */
  --red-fill: #D4121A;   /* solid fills that carry chalk text (AA at 4.9:1) */
  --red-ink: #FF2B35;    /* red text and icons on dark (AA at 5.2:1) */
  --red-deep: #B0121A;   /* red text on the light sections (AA at 6.8:1) */
  --red-hover: #FF3A42;
  --red-press: #B0121A;
  --silver: #D1D2D4;     /* the silver of the wordmark */
  --ember: #F5A524;
  --flag: #3DDC97;
  --steel: #70747A;
  --hairline: #292C31;
  --fault: #FF6B61;
  --paper: #F7F8F9;
  --paddock-muted: #585C62;
  --pass-ink: #1B7143;
  --heat-ink: #9C3D0A;
  --paddock-rule: #D8DBDF;

  --font-sans: "Archivo", "Archivo Fallback", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --font-serif: "Newsreader", Georgia, "Times New Roman", serif;

  --ease-throttle: cubic-bezier(.22, 1, .36, 1);
  --ease-shift: cubic-bezier(.65, 0, .35, 1);
  --ease-needle: cubic-bezier(.34, 1.25, .64, 1);

  --container: 1320px;
  --gutter: clamp(16px, 4vw, 32px);
  --section: clamp(72px, 10vw, 148px);
  --header-h: 72px;
  --radius: 2px;

  --scrim: 11, 12, 14;
  --tread-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='14' viewBox='0 0 22 14'%3E%3Cpath d='M3 1h6l6 6-6 6H3l6-6z' fill='%23292C31'/%3E%3C/svg%3E");
  --tread-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='14' viewBox='0 0 22 14'%3E%3Cpath d='M3 1h6l6 6-6 6H3l6-6z' fill='%23D8DBDF'/%3E%3C/svg%3E");
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .55 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (min-width: 1080px) {
  :root { --header-h: 92px; }
}

/* ---------- 3. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 16px);
  background: var(--carbon);
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
body {
  margin: 0;
  min-height: 100vh;
  background: var(--carbon);
  color: var(--chalk);
  font-family: var(--font-sans);
  font-stretch: 100%;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
@media (min-width: 1080px) { body { font-size: 1.125rem; } }
body.is-locked { overflow: hidden; }
img, svg, video, picture { display: block; max-width: 100%; }
img { height: auto; }
.frame__img > picture, .sector-card__media > picture, .photo-band__bg > picture, .page-hero__bg > picture { width: 100%; height: 100%; }
.frame__img img, .sector-card__media img, .photo-band__bg img, .page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
table { border-collapse: collapse; }
::selection { background: var(--red-fill); color: var(--chalk); }
:focus-visible { outline: 3px solid var(--red-ink); outline-offset: 3px; }
.paddock :focus-visible { outline-color: var(--carbon); }

.skip-link {
  position: absolute; left: 12px; top: -80px; z-index: 200;
  padding: 12px 18px; background: var(--red-fill); color: var(--chalk);
  font-weight: 700; text-decoration: none; font-stretch: 75%; text-transform: uppercase; letter-spacing: .08em;
}
.skip-link:focus { top: 12px; outline-color: var(--chalk); }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- 4. Typography ---------- */
h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.08; text-wrap: balance; }
.display {
  display: block;
  font-stretch: 125%; font-weight: 800; text-transform: uppercase;
  letter-spacing: -.01em; line-height: .92;
  font-size: clamp(2.2rem, 4.4vw + 1.1rem, 5.6rem);
}
h2, .h2 {
  font-stretch: 118%; font-weight: 750; text-transform: uppercase;
  line-height: .96; letter-spacing: -.005em;
  font-size: min(clamp(2.2rem, 3vw + 1.35rem, 4.6rem), 9vw); /* was clamp(1.9rem, 2.6vw + 1.1rem, 3.6rem); the 9vw ceiling keeps "Check-engine" inside a 320px phone (2026-09-13) */
}
h3, .h3 {
  font-stretch: 112%; font-weight: 700;
  font-size: clamp(1.2rem, .5vw + 1.05rem, 1.55rem); line-height: 1.15;
}
.eyebrow, .kicker {
  display: block;
  font-stretch: 75%; font-weight: 650; text-transform: uppercase;
  letter-spacing: .14em; font-size: .9375rem; line-height: 1.3;
}
.kicker { margin-bottom: .9rem; }
.mono, .tag {
  font-family: var(--font-mono); font-stretch: normal; font-weight: 400;
}
.tag {
  display: inline-block; font-size: .8125rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--alloy);
}
.lede { font-size: clamp(1.0625rem, .4vw + 1rem, 1.3rem); line-height: 1.55; max-width: 60ch; }
.muted { color: var(--alloy); }
.paddock .muted { color: var(--paddock-muted); }
.text-ember { color: var(--ember); }
.link {
  color: var(--chalk); text-decoration: underline; text-decoration-color: var(--red);
  text-decoration-thickness: 2px; text-underline-offset: 4px;
}
.link:hover { text-decoration-color: var(--chalk); }
.paddock .link { color: var(--red-deep); text-decoration-color: currentColor; }
.arrow-link {
  display: inline-flex; align-items: center; gap: .45em;
  font-stretch: 75%; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  font-size: .9375rem; text-decoration: none; color: var(--chalk);
}
.arrow-link .icon { transition: transform .18s var(--ease-throttle); }
.arrow-link:hover .icon { transform: translateX(4px); }
.paddock .arrow-link { color: var(--carbon); }

/* ---------- 5. Layout ---------- */
.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.container--narrow { width: min(100% - 2 * var(--gutter), 860px); margin-inline: auto; }
.section { position: relative; padding-block: var(--section); }
.section--tight { padding-block: clamp(56px, 7vw, 96px); }
.section--surface { background: var(--gunmetal); }
.section-head { display: grid; gap: 1rem; margin-bottom: clamp(32px, 5vw, 64px); max-width: 880px; }
.section-head .lede { margin: 0; color: var(--alloy); }
.paddock .section-head .lede { color: var(--paddock-muted); }
.split { display: grid; gap: clamp(32px, 5vw, 72px); align-items: center; }
@media (min-width: 960px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-left { grid-template-columns: 1.15fr .85fr; }
  .split--wide-right { grid-template-columns: .85fr 1.15fr; }
  /* Two-column text is narrower: keep big headings from stretching their column (2026-09-13). */
  .split :where(h2:not(.h3)) { font-size: min(clamp(2.2rem, 3vw + 1.35rem, 4.6rem), 4.8vw); }
}
.stack > * + * { margin-top: 1rem; }
.cluster { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.icon { width: 1.25em; height: 1.25em; flex: none; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.icon--fill { fill: currentColor; stroke: none; }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ---------- 6. Pit-board chamfer system ----------
   Background lives on ::before (clipped) so focus outlines are never clipped.
   Add .cf--line for a chamfered outline ring on ::after. */
.cf { position: relative; isolation: isolate; --c: 16px; --b: 1px; }
.cf::before, .cf--line::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
}
.cf::before {
  background: var(--cf-bg, var(--gunmetal));
  clip-path: polygon(var(--c) 0, 100% 0, 100% calc(100% - var(--c)), calc(100% - var(--c)) 100%, 0 100%, 0 var(--c));
  transition: background-color .18s ease;
}
.cf--line::after {
  background: var(--cf-line, var(--hairline));
  clip-path: polygon(evenodd,
    var(--c) 0, 100% 0, 100% calc(100% - var(--c)), calc(100% - var(--c)) 100%, 0 100%, 0 var(--c), var(--c) 0,
    calc(var(--c) + var(--b) * .414) var(--b), var(--b) calc(var(--c) + var(--b) * .414), var(--b) calc(100% - var(--b)),
    calc(100% - var(--c) - var(--b) * .414) calc(100% - var(--b)), calc(100% - var(--b)) calc(100% - var(--c) - var(--b) * .414),
    calc(100% - var(--b)) var(--b), calc(var(--c) + var(--b) * .414) var(--b));
  transition: background-color .18s ease;
}
.cf--sm { --c: 10px; }
.cf--lg { --c: 24px; }

/* ---------- 7. Buttons ---------- */
.btn {
  --c: 10px; --b: 1.5px;
  position: relative; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  min-height: 48px; padding: 0 22px;
  border: 0; background: none; text-decoration: none; white-space: nowrap;
  font-family: var(--font-sans); font-stretch: 75%; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; font-size: .9375rem; line-height: 1;
  transition: transform .11s ease, color .18s ease;
}
.btn::before, .btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  clip-path: polygon(var(--c) 0, 100% 0, 100% calc(100% - var(--c)), calc(100% - var(--c)) 100%, 0 100%, 0 var(--c));
}
.btn:active { transform: scale(.98); }
.btn--lg { min-height: 56px; padding: 0 26px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn .num { font-family: var(--font-mono); font-weight: 500; font-stretch: normal; letter-spacing: 0; text-transform: none; }

.btn--signal { color: var(--chalk); }
.btn--signal::before { background: var(--red-fill); transition: background-color .18s ease; }
.btn--signal::after {
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, .45) 50%, transparent 62%) no-repeat;
  background-size: 250% 100%; background-position: 150% 0; opacity: 0;
}
.btn--signal:focus-visible { outline-color: var(--chalk); }
.btn--signal:active::before { background: var(--red-press); }

.btn--ghost { color: var(--chalk); }
.btn--ghost::before { background: rgba(242, 243, 245, 0); transition: background-color .18s ease; }
.btn--ghost::after {
  background: var(--chalk);
  clip-path: polygon(evenodd,
    var(--c) 0, 100% 0, 100% calc(100% - var(--c)), calc(100% - var(--c)) 100%, 0 100%, 0 var(--c), var(--c) 0,
    calc(var(--c) + var(--b) * .414) var(--b), var(--b) calc(var(--c) + var(--b) * .414), var(--b) calc(100% - var(--b)),
    calc(100% - var(--c) - var(--b) * .414) calc(100% - var(--b)), calc(100% - var(--b)) calc(100% - var(--c) - var(--b) * .414),
    calc(100% - var(--b)) var(--b), calc(var(--c) + var(--b) * .414) var(--b));
}
.btn--dark { color: var(--red-ink); }
.btn--dark::before { background: var(--carbon); }
.btn--dark:focus-visible { outline-color: var(--carbon); }
.paddock .btn--ghost { color: var(--carbon); }
.paddock .btn--ghost::after { background: var(--carbon); }

@media (hover: hover) and (pointer: fine) {
  .btn--signal:hover::before { background: var(--red-hover); }
  .btn--signal:hover::after { opacity: 1; background-position: -50% 0; transition: background-position .6s ease, opacity .2s; }
  .btn--signal:hover .icon--ring { animation: ring .5s ease 1; }
  .btn--ghost:hover::before { background: rgba(242, 243, 245, .08); }
  .paddock .btn--ghost:hover::before { background: rgba(11, 12, 14, .06); }
  .btn--dark:hover { color: var(--red-hover); }
}
@keyframes ring { 0%, 100% { transform: rotate(0); } 25% { transform: rotate(-8deg); } 75% { transform: rotate(8deg); } }

.icon-btn {
  --c: 8px;
  position: relative; isolation: isolate;
  display: inline-grid; place-items: center; width: 48px; height: 48px;
  border: 0; background: none; color: var(--chalk); text-decoration: none;
}
.icon-btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(242, 243, 245, .06);
  clip-path: polygon(var(--c) 0, 100% 0, 100% calc(100% - var(--c)), calc(100% - var(--c)) 100%, 0 100%, 0 var(--c));
}
.icon-btn .icon { width: 22px; height: 22px; }
.icon-btn--signal { color: var(--chalk); }
.icon-btn--signal::before { background: var(--red-fill); }
.icon-btn--signal:focus-visible { outline-color: var(--chalk); }

/* ---------- 8. Open status ---------- */
.status { display: inline-flex; align-items: center; gap: .6em; font-family: var(--font-mono); font-size: .8125rem; letter-spacing: .06em; text-transform: uppercase; line-height: 1.3; }
.status-dot {
  width: 9px; height: 9px; border-radius: 50%; flex: none;
  background: var(--alloy); box-shadow: 0 0 0 3px rgba(168, 170, 174, .16);
}
[data-state="open"] .status-dot { background: var(--flag); box-shadow: 0 0 0 3px rgba(61, 220, 151, .18); animation: breathe 2.4s ease-in-out 3; }
[data-state="soon"] .status-dot,
[data-state="holiday"] .status-dot { background: var(--ember); box-shadow: 0 0 0 3px rgba(245, 165, 36, .2); }
@keyframes breathe { 50% { opacity: .45; } }

/* ---------- 9. Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  height: var(--header-h);
  transition: background-color .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header::before {
  content: ""; position: absolute; inset: 0 0 -28px 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(11, 12, 14, .92) 0%, rgba(11, 12, 14, .7) 60%, rgba(11, 12, 14, 0) 100%);
  transition: opacity .25s ease;
}
.site-header.is-scrolled, .site-header.is-solid { background: rgba(19, 21, 24, .96); border-bottom-color: var(--hairline); }
.site-header.is-scrolled::before, .site-header.is-solid::before { opacity: 0; }
.site-header__inner { height: 100%; display: flex; align-items: center; gap: 16px; }
.brand { display: inline-flex; flex: none; align-items: center; text-decoration: none; color: var(--chalk); margin-right: auto; }
.brand__logo { display: block; width: auto; height: 44px; } /* enlarged 2026-09-13 (was 32px) */
.footer-brand .brand__logo { height: 52px; } /* enlarged 2026-09-13 (was 38px) */
@media (min-width: 1080px) {
  .brand__logo { height: 56px; } /* enlarged 2026-09-13 (was 40px) */
  .footer-brand .brand__logo { height: 64px; }
}

.nav { display: none; }
.header-actions { display: none; align-items: center; gap: 18px; }
.header-mobile { display: flex; gap: 8px; }
@media (min-width: 1080px) {
  .nav { display: block; }
  .header-actions { display: flex; }
  .header-mobile { display: none; }
}
.nav__list { list-style: none; display: flex; align-items: center; gap: clamp(8px, 1.4vw, 22px); }
.nav__item { position: relative; }
.nav__link {
  position: relative; display: inline-flex; white-space: nowrap; align-items: center; gap: 6px; height: 48px; padding: 0 4px;
  background: none; border: 0; color: var(--alloy); text-decoration: none;
  font-stretch: 75%; font-weight: 650; text-transform: uppercase; letter-spacing: .1em; font-size: .9375rem;
  transition: color .18s ease;
}
.nav__link::after {
  content: ""; position: absolute; left: 4px; right: 4px; bottom: 8px; height: 2px;
  background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .18s var(--ease-throttle);
}
.nav__link:hover, .nav__link[aria-expanded="true"] { color: var(--chalk); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link[aria-current="page"], .nav__link.is-current { color: var(--chalk); }
.nav__link[aria-current="page"]::after, .nav__link.is-current::after { transform: scaleX(1); }
.nav__link .icon { width: 14px; height: 14px; transition: transform .2s ease; }
.nav__link[aria-expanded="true"] .icon { transform: rotate(180deg); }

.nav__panel {
  --c: 16px;
  position: absolute; top: calc(100% + 14px); left: -24px; width: min(720px, 80vw);
  padding: 22px; z-index: 70;
}
.nav__panel::before { background: var(--gunmetal); }
.nav__panel { --cf-line: var(--hairline); }
.panel-grid { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; }
.panel-link {
  display: grid; grid-template-columns: 36px 1fr; gap: 2px 12px; align-items: start;
  padding: 12px; text-decoration: none; color: var(--chalk); border-radius: var(--radius);
  transition: background-color .15s ease;
}
.panel-link:hover { background: var(--raised); }
.panel-link .icon { grid-row: span 2; width: 26px; height: 26px; color: var(--alloy); margin-top: 2px; }
.panel-link__title { font-weight: 700; font-stretch: 100%; font-size: 1rem; line-height: 1.25; }
.panel-link__title .tag { margin-right: 8px; font-size: .75rem; }
.panel-link__sub { font-size: .875rem; color: var(--alloy); line-height: 1.4; }
.panel-foot {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-top: 14px; padding-top: 16px; border-top: 1px solid var(--hairline); font-size: .9375rem; color: var(--alloy);
}

.header-status { color: var(--alloy); font-size: .75rem; }
.header-phone { white-space: nowrap; font-family: var(--font-mono); font-weight: 500; font-size: 1rem; color: var(--chalk); text-decoration: none; letter-spacing: .01em; }
.header-phone:hover { color: var(--red-ink); }
@media (max-width: 1439px) { .header-status { display: none; } } /* was 1239px; the larger logo needs the room (2026-09-13) */

/* ---------- 10. Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--carbon);
  display: flex; flex-direction: column;
  padding: 0 var(--gutter) max(24px, env(safe-area-inset-bottom));
  overflow-y: auto; overscroll-behavior: contain;
  opacity: 0; transform: translateY(-12px);
  transition: opacity .25s var(--ease-shift), transform .25s var(--ease-shift);
}
.mobile-menu.is-open { opacity: 1; transform: none; }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); flex: none; }
.mobile-menu__list { list-style: none; margin: 12px 0 28px; border-top: 1px solid var(--hairline); }
.mobile-menu__list li { border-bottom: 1px solid var(--hairline); }
.mobile-menu__list a {
  display: flex; align-items: baseline; gap: 14px; padding: 15px 2px; text-decoration: none; color: var(--chalk);
  font-stretch: 125%; font-weight: 800; text-transform: uppercase; font-size: clamp(1.35rem, 6vw, 2rem); line-height: 1.05;
}
.mobile-menu__list a[aria-current="page"] { color: var(--red-ink); }
.mobile-menu__list .tag { min-width: 2.2em; }
.mobile-menu__sub { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 2px 12px; padding: 0 0 14px 2px; }
.mobile-menu__sub a { font-stretch: 100%; font-weight: 600; text-transform: none; font-size: 1rem; padding: 8px 0; color: var(--alloy); gap: 8px; }
.mobile-menu__sub a[aria-current="page"] { color: var(--red-ink); }
.mobile-menu__hours { margin-bottom: 24px; }
.mobile-menu__ctas { display: grid; gap: 10px; margin-top: auto; }

/* ---------- 11. Sticky mobile action bar ---------- */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  display: grid; grid-template-columns: 1.2fr 1fr 1fr;
  background: var(--gunmetal);
  padding-bottom: env(safe-area-inset-bottom);
  transform: translateY(110%); transition: transform .3s var(--ease-throttle);
}
.sticky-bar::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px; background: var(--tread-dark) repeat-x; background-color: var(--carbon); }
.sticky-bar.is-visible { transform: none; }
.sticky-bar a {
  display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 56px;
  text-decoration: none; color: var(--chalk); font-family: var(--font-mono); font-size: .8125rem; letter-spacing: .06em; text-transform: uppercase;
  border-left: 1px solid var(--hairline);
}
.sticky-bar a:first-child { background: var(--red-fill); color: var(--chalk); border-left: 0; font-weight: 500; }
.sticky-bar a:first-child:focus-visible { outline-color: var(--chalk); outline-offset: -4px; }
.sticky-bar a:focus-visible { outline-offset: -4px; }
@media (min-width: 769px) { .sticky-bar { display: none; } }
@media (max-width: 768px) { body.has-sticky-bar { padding-bottom: calc(56px + env(safe-area-inset-bottom)); } }

/* ---------- 12. Hero (home) ---------- */
.hero {
  position: relative; overflow: hidden;
  min-height: clamp(640px, 100svh, 960px);
  display: flex; align-items: flex-end;
  padding: calc(var(--header-h) + 56px) 0 clamp(64px, 10vh, 120px);
  background: var(--carbon);
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__poster, .hero__poster img, .hero__video { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__poster img, .hero__video { object-fit: cover; object-position: 64% 50%; }
.hero__video { opacity: 0; transition: opacity .9s ease; }
.hero.is-playing .hero__video { opacity: 1; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(var(--scrim), .40) 0%, rgba(var(--scrim), .62) 22%, rgba(var(--scrim), .86) 44%, rgba(var(--scrim), .94) 100%);
}
@media (min-width: 900px) {
  .hero__scrim {
    background:
      linear-gradient(0deg, rgba(var(--scrim), 1) 0%, rgba(var(--scrim), 0) 26%),
      linear-gradient(90deg, rgba(var(--scrim), .93) 0%, rgba(var(--scrim), .87) 44%, rgba(var(--scrim), .52) 66%, rgba(var(--scrim), .10) 100%),
      radial-gradient(120% 90% at 72% 42%, transparent 55%, rgba(var(--scrim), .22) 100%);
  }
}
.grain { position: absolute; inset: 0; background-image: var(--grain); opacity: .05; mix-blend-mode: overlay; pointer-events: none; }
.hero__inner { position: relative; z-index: 2; }
.hero__content { max-width: 860px; } /* was 640px; room for the larger headline (2026-09-13) */
.hero__status { margin-bottom: 20px; color: var(--chalk); }
.hero__title { margin-bottom: 20px; }
.hero__title .kicker { color: var(--chalk); }
/* Hero headline: 11vw keeps "SURPRISES." inside the column on phones; the 6.5rem cap fits the 860px column (was capped at 5rem, 2026-09-13). */
.hero__title .display { font-size: clamp(2.2rem, 11vw, 6.5rem); }
.hero__sub { max-width: 34em; font-size: clamp(1.125rem, .5vw + 1rem, 1.4rem); color: var(--chalk); margin-bottom: 28px; }
.hero__ctas { display: grid; gap: 10px; margin-bottom: 18px; }
@media (min-width: 560px) { .hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; } }
.urgent-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 16px 11px 14px; min-height: 48px;
  background: rgba(var(--scrim), .92); border-left: 3px solid var(--red);
  color: var(--red-ink); /* red theme, not amber (user, 2026-09-12) */ text-decoration: none; font-weight: 600; font-size: .98rem;
}
.urgent-chip strong { font-weight: 700; }
.urgent-chip:hover strong { text-decoration: underline; text-underline-offset: 3px; }
.hero__badge {
  --c: 8px; --b: 1px; --cf-bg: rgba(var(--scrim), .80); --cf-line: rgba(242, 243, 245, .5);
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; margin-left: 4px; padding: 8px 12px;
  font-stretch: 75%; font-weight: 650; text-transform: uppercase; letter-spacing: .12em; font-size: .8125rem;
}
.hero__hud {
  position: absolute; z-index: 3; top: calc(var(--header-h) + 18px); right: var(--gutter);
  display: none;
}
.hero__ticker {
  display: inline-flex; align-items: center; gap: 10px; padding: 7px 12px;
  background: rgba(var(--scrim), .92); color: var(--chalk);
  font-family: var(--font-mono); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
  transition: opacity .25s ease;
}
.hero__ticker::before { content: ""; width: 6px; height: 6px; background: var(--ember); transform: rotate(45deg); }
.hero__ticker.is-swapping { opacity: 0; }
.hero__lap { position: absolute; z-index: 3; left: 0; right: 0; bottom: 0; height: 2px; background: rgba(242, 243, 245, .16); }
.hero__lap span { display: block; height: 100%; background: rgba(242, 243, 245, .7); transform-origin: left; transform: scaleX(0); }
.hero__pause {
  --c: 8px;
  position: absolute; z-index: 4; right: var(--gutter); bottom: 18px;
  display: grid; place-items: center; width: 48px; height: 48px; border: 0; color: var(--chalk); background: none;
}
.hero__pause::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(var(--scrim), .92); clip-path: polygon(var(--c) 0, 100% 0, 100% calc(100% - var(--c)), calc(100% - var(--c)) 100%, 0 100%, 0 var(--c)); }
.hero__pause .icon { width: 20px; height: 20px; }
.hero__pause .i-play { display: none; }
.hero__pause[aria-pressed="true"] .i-play { display: block; }
.hero__pause[aria-pressed="true"] .i-pause { display: none; }
@media (min-width: 900px) { .hero__hud { display: block; } }

/* Tach card */
.tach-card {
  --c: 16px; --cf-bg: rgba(19, 21, 24, .94); --cf-line: var(--hairline);
  display: none; width: 240px; padding: 18px 18px 16px;
}
@media (min-width: 1080px) {
  .hero__inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
  .tach-card { display: block; margin-bottom: 72px; }
}
.tach { width: 100%; height: auto; overflow: visible; }
.tach__track { fill: none; stroke: var(--hairline); stroke-width: 6; stroke-linecap: butt; }
.tach__red { fill: none; stroke: var(--red); stroke-width: 6; }
.tach__ticks line { stroke: var(--alloy); stroke-width: 1.5; }
.tach__ticks line.is-major { stroke: var(--chalk); stroke-width: 2; }
.tach__ticks text { fill: var(--alloy); font-family: var(--font-mono); font-size: 10px; text-anchor: middle; dominant-baseline: middle; }
.tach__needle { transform-origin: 100px 100px; transform: rotate(var(--tach-angle, -135deg)); }
.tach.is-live .tach__needle { transition: transform 1.2s var(--ease-needle); }
.tach__needle line { stroke: var(--chalk); stroke-width: 2.5; stroke-linecap: round; }
.tach__hub { fill: var(--carbon); stroke: var(--chalk); stroke-width: 2; }
.tach__readout { margin-top: 4px; text-align: center; }
.tach__state { display: block; font-family: var(--font-mono); font-size: .8125rem; letter-spacing: .08em; text-transform: uppercase; color: var(--chalk); }
.tach__state[data-state="open"] { color: var(--flag); }
.tach__state[data-state="soon"], .tach__state[data-state="holiday"] { color: var(--ember); }
.tach__detail { display: block; margin-top: 2px; font-family: var(--font-mono); font-size: .75rem; color: var(--alloy); letter-spacing: .04em; }

/* ---------- 13. Readout strip ---------- */
.readout { position: relative; z-index: 2; overflow: hidden; background: var(--gunmetal); border-block: 1px solid var(--hairline); }
.readout__list {
  list-style: none; display: flex; min-width: 0; max-width: 100%; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
}
.readout__list::-webkit-scrollbar { display: none; }
.readout__list > li {
  flex: none; scroll-snap-align: start; display: flex; align-items: center;
  min-height: 56px; padding: 0 20px; border-left: 1px solid var(--hairline);
  font-family: var(--font-mono); font-size: .8125rem; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; color: var(--chalk);
}
.readout__list > li:first-child { border-left: 0; padding-left: 0; }
.readout__list a { color: var(--chalk); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; min-height: 48px; }
.readout__list a:hover { color: var(--red-ink); }
.readout__list .muted { color: var(--alloy); }
@media (min-width: 1200px) {
  .readout__list { flex-wrap: wrap; overflow: visible; }
  .readout__list > li { flex: 1 1 auto; justify-content: center; padding: 0 14px; font-size: .75rem; letter-spacing: .05em; }
  .readout__list > li:first-child { justify-content: flex-start; padding-left: 0; }
  .readout__list > li:last-child { justify-content: flex-end; padding-right: 0; }
}

/* ---------- 14. Sector (service) cards ---------- */
.sector-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 290px), 1fr)); }
.sector-card {
  --c: 16px; --cf-bg: var(--gunmetal); --cf-line: var(--hairline);
  display: flex; flex-direction: column; min-height: 100%;
}
.sector-card:hover, .sector-card:focus-within { --cf-line: var(--steel); --cf-bg: #17191c; }
.sector-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; clip-path: polygon(var(--c) 0, 100% 0, 100% 100%, 0 100%, 0 var(--c)); background: var(--raised); }
.sector-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-throttle); filter: saturate(.72) contrast(1.04); }
.sector-card:hover .sector-card__media img { transform: scale(1.04); }
.sector-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(19, 21, 24, .85) 100%); }
.sector-card__body { display: flex; flex-direction: column; gap: 10px; flex: 1; padding: 22px 24px 24px; }
.sector-card__fx {
  position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none;
  clip-path: polygon(var(--c) 0, 100% 0, 100% calc(100% - var(--c)), calc(100% - var(--c)) 100%, 0 100%, 0 var(--c));
}
.sector-card__num { display: flex; align-items: center; gap: 10px; }
.sector-card__num .icon { width: 22px; height: 22px; color: var(--alloy); margin-left: auto; }
.sector-card__title { font-size: clamp(1.3rem, .6vw + 1.1rem, 1.6rem); }
.sector-card__title a { text-decoration: none; color: var(--chalk); }
.sector-card__title a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.sector-card__symptoms { list-style: none; display: grid; gap: 4px; color: var(--alloy); font-size: .9688rem; line-height: 1.45; }
.sector-card__symptoms li { padding-left: 16px; position: relative; }
.sector-card__symptoms li::before { content: ""; position: absolute; left: 0; top: .62em; width: 6px; height: 1.5px; background: var(--steel); }
.sector-card__foot { margin-top: auto; padding-top: 14px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.sector-card__book { position: relative; z-index: 2; font-family: var(--font-mono); font-size: .8125rem; letter-spacing: .06em; text-transform: uppercase; color: var(--chalk); text-decoration: underline; text-decoration-color: var(--red); text-decoration-thickness: 2px; text-underline-offset: 4px; padding: 12px 0; }
.sector-card__book:hover { color: var(--red-ink); }
.rotor-dots {
  position: absolute; right: -40px; bottom: -40px; width: 200px; height: 200px; pointer-events: none;
  background: radial-gradient(circle, var(--hairline) 0 2px, transparent 2.5px) 0 0 / 16px 16px;
  -webkit-mask-image: radial-gradient(circle at 100% 100%, #000 0 45%, transparent 72%);
  mask-image: radial-gradient(circle at 100% 100%, #000 0 45%, transparent 72%);
  opacity: .9;
}
.rotor-dots::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle, var(--ember) 0 2px, transparent 2.5px) 0 0 / 16px 16px;
  -webkit-mask-image: radial-gradient(90px circle at var(--x, 100%) var(--y, 100%), #000, transparent 70%);
  mask-image: radial-gradient(90px circle at var(--x, 100%) var(--y, 100%), #000, transparent 70%);
  opacity: 0; transition: opacity .3s ease;
}
.sector-card:hover .rotor-dots::after, .sector-card:focus-within .rotor-dots::after { opacity: .55; }
@media (hover: none) { .rotor-dots::after { opacity: .25; } }
.sector-card--note { --cf-bg: transparent; --cf-line: rgba(242, 243, 245, .35); }
.sector-card--note .sector-card__body { justify-content: center; min-height: 260px; }
.sector-card--note .sector-card__title a::after { z-index: 1; }

/* ---------- 15. Urgent band ---------- */
.urgent-band { position: relative; background: var(--gunmetal); border-block: 1px solid var(--hairline); }
.urgent-band__inner { display: grid; gap: 20px; align-items: center; padding-block: clamp(32px, 5vw, 56px); border-left: 3px solid var(--red); padding-left: clamp(18px, 3vw, 36px); }
.urgent-band__title { font-stretch: 118%; font-weight: 800; text-transform: uppercase; font-size: clamp(1.6rem, 2.4vw + 1rem, 3rem); line-height: .98; }
.urgent-band__title .text-ember { display: block; color: var(--red-ink); } /* red theme, not amber (user, 2026-09-12) */
.urgent-band p { margin: 0; color: var(--alloy); max-width: 46ch; }
@media (min-width: 900px) { .urgent-band__inner { grid-template-columns: 1fr auto; gap: 40px; } }

/* ---------- 16. Paddock (light) sections ---------- */
.paddock { background: var(--chalk); color: var(--carbon); }
.paddock h2, .paddock h3 { color: var(--carbon); }
.paddock .tag { color: var(--paddock-muted); }
.paddock .eyebrow { color: var(--paddock-muted); }

/* Repair-order ticket */
.ticket {
  position: relative; background: var(--paper); color: var(--carbon);
  padding: 34px clamp(20px, 4vw, 40px) 30px; border: 1px solid var(--paddock-rule);
  --notch: radial-gradient(circle at 10px 0, transparent 6px, #000 6.5px);
  -webkit-mask: radial-gradient(circle at 50% 0, transparent 6px, #000 6.5px) 0 0 / 20px 100% repeat-x;
  mask: radial-gradient(circle at 50% 0, transparent 6px, #000 6.5px) 0 0 / 20px 100% repeat-x;
}
.ticket__head { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding-bottom: 14px; margin-bottom: 8px; border-bottom: 1.5px dashed var(--paddock-rule); }
.ticket__head .tag { color: var(--carbon); font-weight: 500; }
.ticket__rows { list-style: none; counter-reset: row; }
.ticket__row { display: grid; grid-template-columns: 28px 44px 1fr; gap: 14px; align-items: start; padding: 16px 0; border-bottom: 1px solid var(--paddock-rule); }
.ticket__row .tag { color: var(--paddock-muted); padding-top: 3px; }
.ticket__row strong { display: block; font-stretch: 112%; font-weight: 700; font-size: 1.1rem; line-height: 1.3; }
.ticket__row span.muted { display: block; font-size: .95rem; margin-top: 2px; }
.tickbox { width: 24px; height: 24px; border: 1.5px solid var(--steel); display: grid; place-items: center; margin-top: 2px; }
.tickbox svg { width: 16px; height: 16px; stroke: var(--pass-ink); stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.tickbox path { stroke-dasharray: 24; stroke-dashoffset: 0; }
.js .ticket[data-reveal] .tickbox path { stroke-dashoffset: 24; transition: stroke-dashoffset .35s var(--ease-throttle); }
.js .ticket.is-in .ticket__row:nth-child(1) .tickbox path { transition-delay: .25s; }
.js .ticket.is-in .ticket__row:nth-child(2) .tickbox path { transition-delay: .5s; }
.js .ticket.is-in .ticket__row:nth-child(3) .tickbox path { transition-delay: .75s; }
.js .ticket.is-in .ticket__row:nth-child(4) .tickbox path { transition-delay: 1s; }
.js .ticket.is-in .tickbox path { stroke-dashoffset: 0; }
.ticket__sign { margin: 18px 0 0; font-family: var(--font-serif); font-style: italic; font-size: clamp(1.25rem, 1vw + 1rem, 1.6rem); line-height: 1.3; }
.ticket__note { margin-top: 10px; font-size: .875rem; color: var(--paddock-muted); }

/* Inspection tag */
.inspect-tag {
  --c: 22px;
  position: relative; background: var(--paper); color: var(--carbon); border: 1px solid var(--paddock-rule);
  padding: 44px clamp(20px, 4vw, 36px) 26px;
  clip-path: polygon(var(--c) 0, 100% 0, 100% calc(100% - var(--c)), calc(100% - var(--c)) 100%, 0 100%, 0 var(--c));
}
.inspect-tag::before { content: ""; position: absolute; top: 16px; left: 50%; width: 16px; height: 16px; margin-left: -8px; border-radius: 50%; background: var(--chalk); box-shadow: inset 0 0 0 1.5px var(--paddock-rule); }
.inspect-tag__title { display: flex; justify-content: space-between; gap: 12px; padding-bottom: 12px; border-bottom: 1.5px dashed var(--paddock-rule); }
.inspect-tag__title .tag { color: var(--carbon); font-weight: 500; }
.inspect-list { list-style: none; }
.inspect-list li { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--paddock-rule); font-size: 1rem; }
.state { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.state .icon { width: 16px; height: 16px; stroke-width: 2; }
.state--pass { color: var(--pass-ink); }
.state--work { color: var(--heat-ink); }
.state--wait { color: var(--paddock-muted); }
.inspect-legend { list-style: none; display: grid; gap: 10px; margin-top: 18px; font-size: .9375rem; color: var(--paddock-muted); }
.inspect-legend li { display: grid; grid-template-columns: 124px 1fr; gap: 10px; align-items: start; }

/* ---------- 17. Reviews & quotes ---------- */
.quote-feature { --c: 24px; --cf-bg: var(--raised); --cf-line: var(--hairline); padding: clamp(28px, 5vw, 56px); }
.quote-feature__mark { position: absolute; top: -18px; left: clamp(20px, 4vw, 48px); font-family: var(--font-serif); font-style: italic; font-size: 7rem; line-height: 1; color: var(--hairline); pointer-events: none; }
.quote-feature blockquote { margin: 0; }
.quote-feature blockquote p { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: clamp(1.35rem, 1.3vw + 1rem, 1.9rem); line-height: 1.35; color: var(--chalk); margin: 0 0 20px; }
.quote-feature figcaption { font-family: var(--font-mono); font-size: .8125rem; letter-spacing: .04em; color: var(--alloy); }
.quote-feature figcaption a { color: var(--alloy); text-underline-offset: 3px; }
.quote-feature figcaption a:hover { color: var(--chalk); }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.chip-static {
  --c: 7px; --b: 1px; --cf-bg: transparent; --cf-line: var(--steel);
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px;
  font-stretch: 75%; font-weight: 650; text-transform: uppercase; letter-spacing: .1em; font-size: .8125rem;
}
.chip-static .icon { width: 14px; height: 14px; color: var(--flag); stroke-width: 2.2; }
.review-links { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 28px; margin-top: 24px; }
.review-links a { display: inline-flex; align-items: center; gap: 6px; min-height: 44px; }

/* ---------- 18. Feature split with photo ---------- */
.frame { --c: 24px; position: relative; margin: 0; }
.frame__img { position: relative; overflow: hidden; background: var(--raised); clip-path: polygon(var(--c) 0, 100% 0, 100% calc(100% - var(--c)), calc(100% - var(--c)) 100%, 0 100%, 0 var(--c)); }
.frame__img img { width: 100%; height: 100%; object-fit: cover; }
.frame--tall .frame__img { aspect-ratio: 4 / 5; }
.frame--wide .frame__img { aspect-ratio: 16 / 10; }
.frame--square .frame__img { aspect-ratio: 1 / 1; }
.frame figcaption { margin-top: 10px; font-family: var(--font-mono); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; color: var(--alloy); }
.paddock .frame figcaption { color: var(--paddock-muted); }
.callout-line { position: absolute; display: flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: .6875rem; letter-spacing: .1em; color: var(--chalk); text-transform: uppercase; background: rgba(var(--scrim), .8); padding: 3px 7px; }
.callout-line::before { content: ""; width: 26px; height: 1px; background: var(--alloy); }
.check-list { list-style: none; display: grid; gap: 12px; }
.check-list li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; }
.check-list .icon { width: 20px; height: 20px; color: var(--flag); stroke-width: 2; margin-top: 3px; }
.paddock .check-list .icon { color: var(--pass-ink); }

/* ---------- 19. Season banner / photo bands ---------- */
.photo-band { position: relative; overflow: hidden; isolation: isolate; background: var(--carbon); }
.photo-band__bg { position: absolute; inset: 0; z-index: -1; }
.photo-band__bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.6) contrast(1.05); }
.photo-band__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(var(--scrim), .94) 0%, rgba(var(--scrim), .86) 50%, rgba(var(--scrim), .55) 100%); }
@media (max-width: 899px) { .photo-band__bg::after { background: rgba(var(--scrim), .86); } }
.photo-band__content { max-width: 620px; }
.season-meta { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 22px 0 28px; }
.season-meta li { list-style: none; display: flex; gap: 10px; align-items: center; font-family: var(--font-mono); font-size: .8125rem; letter-spacing: .04em; color: var(--chalk); }
.season-meta .icon { color: var(--red-ink); width: 18px; height: 18px; }

/* ---------- 20. Hours timing tower ---------- */
.hours-table { width: 100%; font-family: var(--font-mono); font-size: .9375rem; }
.hours-table caption { text-align: left; }
.hours-table th, .hours-table td { padding: 10px 12px; border-bottom: 1px solid var(--hairline); text-align: left; font-weight: 400; }
.hours-table th { width: 5.5em; color: var(--alloy); letter-spacing: .08em; }
.hours-table td { color: var(--chalk); }
.hours-table tr { position: relative; }
.hours-table tr.is-closed td { color: var(--alloy); }
.hours-table tr.is-closed td span { text-decoration: line-through; text-decoration-color: var(--steel); }
.hours-table tr.is-today th { color: var(--chalk); box-shadow: inset 3px 0 0 var(--red); }
.today-tag { margin-left: 10px; padding: 2px 6px; background: var(--red-fill); color: var(--chalk); font-size: .6875rem; letter-spacing: .08em; }
.hours-table--compact { font-size: .8125rem; }
.hours-table--compact .today-tag { display: none; }
.hours-table--compact th, .hours-table--compact td { padding: 7px 8px; }

/* ---------- 21. Booking band (home) ---------- */
.book-band__grid { display: grid; gap: clamp(28px, 5vw, 64px); }
@media (min-width: 1000px) { .book-band__grid { grid-template-columns: 1.1fr .9fr; align-items: start; } }
.service-links { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 210px), 1fr)); gap: 10px; margin: 26px 0; }
.service-link {
  --c: 10px; --b: 1px; --cf-bg: var(--raised); --cf-line: var(--steel);
  display: flex; align-items: center; gap: 12px; min-height: 56px; padding: 10px 16px;
  text-decoration: none; color: var(--chalk); font-weight: 600; font-size: 1rem;
}
.service-link .icon { width: 22px; height: 22px; color: var(--alloy); }
.service-link:hover { --cf-line: var(--red); }
.service-link:hover .icon { color: var(--red-ink); }
.info-card { --c: 16px; --cf-bg: var(--gunmetal); --cf-line: var(--hairline); padding: clamp(22px, 3vw, 32px); }
.info-card h3 { margin-bottom: 14px; }
.info-card address { font-style: normal; margin-bottom: 16px; line-height: 1.5; }
.info-card .cluster { margin-top: 18px; }

/* ---------- 22. Inner page hero + breadcrumb ---------- */
.page-hero {
  position: relative; overflow: hidden; isolation: isolate;
  padding: calc(var(--header-h) + clamp(48px, 7vw, 96px)) 0 clamp(56px, 7vw, 96px);
  background: var(--carbon);
}
.page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.55) contrast(1.06) brightness(.92); }
.page-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(var(--scrim), .94) 0%, rgba(var(--scrim), .86) 48%, rgba(var(--scrim), .5) 100%), linear-gradient(0deg, var(--carbon) 0%, transparent 35%);
}
@media (max-width: 899px) { .page-hero__bg::after { background: linear-gradient(180deg, rgba(var(--scrim), .7) 0%, rgba(var(--scrim), .9) 45%, var(--carbon) 100%); } }
.page-hero__content { max-width: 780px; }
.page-title {
  margin-top: 14px; font-stretch: 125%; font-weight: 800; text-transform: uppercase;
  letter-spacing: -.01em; line-height: .95; font-size: clamp(1.7rem, 3.4vw + 1rem, 4.4rem);
  overflow-wrap: break-word; hyphens: auto;
}
@media (max-width: 380px) { .page-title { font-stretch: 112%; } }
.page-hero .cluster { gap: 12px; }
.readout--page .readout__list > li:first-child { padding-left: 0; }
.page-hero .lede { color: var(--chalk); margin: 18px 0 28px; }
.page-hero--plain { padding-bottom: clamp(40px, 5vw, 64px); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; font-family: var(--font-mono); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; color: var(--alloy); }
.breadcrumb li + li::before { content: "/"; margin-right: 6px; color: var(--steel); }
.breadcrumb a { color: var(--alloy); text-decoration: none; }
.breadcrumb a:hover { color: var(--chalk); text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--chalk); }

/* ---------- 23. Symptoms, steps, service rows ---------- */
.symptoms { list-style: none; display: grid; gap: 10px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)); }
.symptoms li {
  --c: 10px; --cf-bg: var(--gunmetal); --cf-line: var(--hairline);
  display: grid; grid-template-columns: 22px 1fr; gap: 14px; padding: 18px 20px; line-height: 1.45;
}
.symptoms .icon { width: 20px; height: 20px; color: var(--ember); margin-top: 2px; }
.symptoms strong { display: block; font-weight: 700; }
.symptoms span { color: var(--alloy); font-size: .9688rem; }
.steps { list-style: none; display: grid; gap: 14px; counter-reset: step; }
@media (min-width: 900px) { .steps--row { grid-template-columns: repeat(4, 1fr); } }
.steps li { position: relative; padding: 22px 0 0; border-top: 1px solid var(--hairline); counter-increment: step; }
.steps li::before { content: counter(step, decimal-leading-zero); display: block; margin-bottom: 10px; font-family: var(--font-mono); font-size: .8125rem; letter-spacing: .08em; color: var(--red-ink); }
.paddock .steps li { border-top-color: var(--paddock-rule); }
.paddock .steps li::before { color: var(--red-deep); }
.steps h3 { margin-bottom: 8px; font-size: 1.2rem; }
.steps p { color: var(--alloy); margin: 0; }
.paddock .steps p { color: var(--paddock-muted); }
.work-list { list-style: none; display: grid; gap: 0 36px; }
@media (min-width: 760px) { .work-list { grid-template-columns: 1fr 1fr; } }
.work-list li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--hairline); }
.work-list .icon { width: 18px; height: 18px; color: var(--red-ink); margin-top: 4px; stroke-width: 2; }
.work-list strong { display: block; }
.work-list span { color: var(--alloy); font-size: .9688rem; }
.service-row { display: grid; gap: 24px; padding-block: clamp(36px, 5vw, 64px); border-top: 1px solid var(--hairline); }
@media (min-width: 900px) { .service-row { grid-template-columns: 380px 1fr; gap: 56px; align-items: center; } }
.service-row .frame__img { aspect-ratio: 4 / 3; }
.service-row h2 { font-size: clamp(1.6rem, 1.6vw + 1.1rem, 2.6rem); margin: 8px 0 14px; }

/* ---------- 24. FAQ ---------- */
.faq-list { display: grid; gap: 8px; }
.faq {
  --c: 12px; --cf-bg: var(--gunmetal); --cf-line: var(--hairline);
}
.faq[open] { --cf-line: var(--steel); }
.faq summary {
  list-style: none; cursor: pointer; display: grid; grid-template-columns: 1fr 24px; gap: 16px; align-items: center;
  padding: 20px 22px; min-height: 64px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary h3, .faq summary .faq__q { font-size: clamp(1.05rem, .3vw + 1rem, 1.2rem); font-stretch: 105%; font-weight: 700; line-height: 1.35; }
.faq summary .icon { width: 20px; height: 20px; color: var(--alloy); transition: transform .25s var(--ease-throttle); }
.faq[open] summary .icon { transform: rotate(180deg); color: var(--red-ink); }
.faq summary:focus-visible { outline-offset: -3px; }
.faq__a { padding: 0 22px 22px; color: var(--alloy); max-width: 75ch; }
.faq__a p:last-child { margin-bottom: 0; }
.faq__a a { color: var(--chalk); text-decoration-color: var(--red); text-underline-offset: 3px; }
@supports (interpolate-size: allow-keywords) {
  .faq { interpolate-size: allow-keywords; }
  .faq::details-content { height: 0; overflow: clip; transition: height .3s var(--ease-throttle), content-visibility .3s allow-discrete; }
  .faq[open]::details-content { height: auto; }
}
.faq-group + .faq-group { margin-top: clamp(40px, 5vw, 64px); }
.faq-group > h2 { font-size: clamp(1.4rem, 1.2vw + 1.1rem, 2.1rem); margin-bottom: 18px; }

/* ---------- 25. CTA band ---------- */
.cta-band { position: relative; background: var(--gunmetal); }
.cta-band::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 14px; background: var(--tread-dark) repeat-x; background-color: var(--carbon); }
.cta-band__inner { display: grid; gap: 24px; padding-block: clamp(56px, 7vw, 96px) clamp(48px, 6vw, 80px); }
@media (min-width: 960px) { .cta-band__inner { grid-template-columns: 1fr auto; align-items: end; gap: 48px; } }
/* Beside the buttons the heading column is narrow: grow the heading more slowly so words like "changeover." never widen it (2026-09-13). */
@media (min-width: 960px) { .cta-band :where(h2:not(.h3)) { font-size: min(clamp(2.2rem, 3vw + 1.35rem, 4.6rem), 5.4vw - 13px); } }
.cta-band h2 { max-width: 16em; }
.cta-band p { margin: 14px 0 0; color: var(--alloy); max-width: 52ch; }
.cta-band .cluster { gap: 12px; }

/* ---------- 26. Related services ---------- */
.related { list-style: none; display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr)); }
.related a {
  --c: 12px; --cf-bg: var(--gunmetal); --cf-line: var(--hairline);
  display: grid; grid-template-columns: 28px 1fr 18px; gap: 14px; align-items: center; padding: 18px 20px; min-height: 72px;
  text-decoration: none; color: var(--chalk);
}
.related a:hover { --cf-line: var(--steel); }
.related .icon { width: 24px; height: 24px; color: var(--alloy); }
.related .icon:last-child { width: 18px; height: 18px; }
.related strong { display: block; font-weight: 700; line-height: 1.25; }
.related .tag { font-size: .6875rem; }

/* ---------- 27. Prose ---------- */
.prose { max-width: 72ch; }
.prose h2 { font-size: clamp(1.4rem, 1.2vw + 1.1rem, 2rem); margin: 2.2em 0 .7em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 1.6em 0 .5em; }
.prose p, .prose li { color: #D6D8DB; }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 1em; }
.prose li { margin-bottom: .4em; }
.prose a { color: var(--chalk); text-decoration-color: var(--red); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.note-box { --c: 12px; --cf-bg: var(--gunmetal); --cf-line: var(--hairline); padding: 20px 22px; margin: 24px 0; }
.note-box--ember { border-left: 3px solid var(--ember); }
.note-box p:last-child { margin: 0; }

/* ---------- 28. Map ---------- */
.map-card { --c: 24px; --cf-bg: var(--gunmetal); --cf-line: var(--hairline); position: relative; min-height: 360px; display: grid; }
.map-card__placeholder {
  display: grid; place-items: center; align-content: center; gap: 14px; padding: 40px 24px; text-align: center;
  background:
    linear-gradient(transparent 0 0),
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(41, 44, 49, .7) 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(41, 44, 49, .7) 39px 40px);
}
.map-card__pin { width: 44px; height: 44px; color: var(--red-ink); }
.map-card iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; clip-path: polygon(var(--c) 0, 100% 0, 100% calc(100% - var(--c)), calc(100% - var(--c)) 100%, 0 100%, 0 var(--c)); }
.directions { list-style: none; display: grid; gap: 10px; }
.directions li { display: grid; grid-template-columns: 150px 1fr; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--hairline); font-size: .9688rem; }
.directions .tag { color: var(--chalk); padding-top: 2px; }
.directions span:last-child { color: var(--alloy); }
@media (max-width: 520px) { .directions li { grid-template-columns: 1fr; gap: 2px; } }

/* ---------- 29. Booking form ---------- */
.booking-panel { --c: 24px; --cf-bg: var(--gunmetal); --cf-line: var(--hairline); }
.booking-panel__head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  padding: 16px clamp(20px, 4vw, 36px); border-bottom: 1px dashed var(--steel);
}
.booking-panel__head .tag { color: var(--chalk); }
.booking-panel__body { padding: clamp(20px, 4vw, 36px); }
.form-step { border: 0; margin: 0 0 30px; padding: 0; min-width: 0; }
.form-step legend { display: flex; align-items: baseline; gap: 12px; margin-bottom: 16px; padding: 0; font-stretch: 112%; font-weight: 700; font-size: 1.2rem; }
.form-step legend .tag { color: var(--red-ink); }
.form-step__hint { margin: -8px 0 14px; color: var(--alloy); font-size: .9375rem; }
.chip-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
@media (min-width: 720px) { .chip-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .chip-grid--wide { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.chip { position: relative; display: block; }
.chip input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.chip > span {
  --c: 8px;
  position: relative; isolation: isolate; display: flex; align-items: center; gap: 10px; min-height: 52px; padding: 10px 14px;
  font-weight: 600; font-size: .96rem; line-height: 1.25; cursor: pointer; user-select: none;
}
.chip > span::before, .chip > span::after { content: ""; position: absolute; inset: 0; z-index: -1; clip-path: polygon(var(--c) 0, 100% 0, 100% calc(100% - var(--c)), calc(100% - var(--c)) 100%, 0 100%, 0 var(--c)); }
.chip > span::before { background: var(--raised); }
.chip > span::after {
  --b: 1px; background: var(--steel);
  clip-path: polygon(evenodd,
    var(--c) 0, 100% 0, 100% calc(100% - var(--c)), calc(100% - var(--c)) 100%, 0 100%, 0 var(--c), var(--c) 0,
    calc(var(--c) + var(--b) * .414) var(--b), var(--b) calc(var(--c) + var(--b) * .414), var(--b) calc(100% - var(--b)),
    calc(100% - var(--c) - var(--b) * .414) calc(100% - var(--b)), calc(100% - var(--b)) calc(100% - var(--c) - var(--b) * .414),
    calc(100% - var(--b)) var(--b), calc(var(--c) + var(--b) * .414) var(--b));
}
.chip .check { width: 18px; height: 18px; flex: none; border: 1.5px solid var(--steel); display: grid; place-items: center; }
.chip .check svg { width: 13px; height: 13px; stroke: var(--chalk); stroke-width: 3; fill: none; stroke-dasharray: 20; stroke-dashoffset: 20; transition: stroke-dashoffset .2s ease; }
.chip > input:checked + span::after { --b: 2px; background: var(--red-fill); }
.chip input:checked + span .check { background: var(--red-fill); border-color: var(--red-fill); }
.chip input:checked + span .check svg { stroke-dashoffset: 0; }
.chip input:focus-visible + span { outline: 3px solid var(--red-ink); outline-offset: 3px; }
.chip input:disabled + span { cursor: not-allowed; color: var(--alloy); }
.chip input:disabled + span s { text-decoration-color: var(--steel); }
.subfield { border: 0; margin: 0 0 16px; padding: 0; min-width: 0; }
.subfield legend { padding: 0; margin-bottom: 8px; font-stretch: 75%; font-weight: 650; font-size: .8125rem; letter-spacing: .12em; text-transform: uppercase; color: var(--chalk); }
.subfield legend .opt { color: var(--alloy); text-transform: none; letter-spacing: .02em; font-stretch: 100%; font-weight: 400; }
.contact-grid { display: grid; gap: 20px; align-items: start; }
@media (min-width: 1040px) { .contact-grid { grid-template-columns: minmax(0, 1.4fr) minmax(340px, .6fr); gap: 28px; } } /* side column min 340px: the nowrap Call button needs ~326px (was minmax(0, .6fr), 2026-09-13) */
.contact-stack { display: grid; gap: 20px; }
.day-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; }
@media (min-width: 600px) { .day-grid { grid-template-columns: repeat(7, minmax(0, 1fr)); } }
.day-grid .chip > span { justify-content: center; font-family: var(--font-mono); font-weight: 500; font-size: .875rem; letter-spacing: .06em; text-transform: uppercase; flex-direction: column; gap: 0; }
.day-grid .chip small { font-size: .6875rem; color: var(--alloy); font-family: var(--font-mono); }
.time-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }
.field-grid { display: grid; gap: 16px; }
@media (min-width: 720px) { .field-grid--2 { grid-template-columns: 1fr 1fr; } .field-grid--3 { grid-template-columns: 110px 1fr 1fr; } }
.field { display: grid; gap: 6px; min-width: 0; }
.field label, .field .label { font-stretch: 75%; font-weight: 650; font-size: .8125rem; letter-spacing: .12em; text-transform: uppercase; color: var(--chalk); }
.field .opt { color: var(--alloy); text-transform: none; letter-spacing: .02em; font-stretch: 100%; font-weight: 400; }
.field input, .field textarea, .field select {
  width: 100%; min-height: 52px; padding: 12px 14px;
  background: var(--raised); border: 1px solid var(--steel); border-radius: var(--radius);
  color: var(--chalk); font-size: 1rem; transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.field input::placeholder, .field textarea::placeholder { color: #8B8F95; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--red-ink); box-shadow: 0 0 0 3px rgba(255, 43, 53, .35); }
.field input[inputmode="numeric"] { font-family: var(--font-mono); }
.field__hint { font-size: .875rem; color: var(--alloy); }
.field__error, .step-error { display: none; align-items: center; gap: 6px; color: var(--fault); font-size: .9rem; }
.field__error .icon, .step-error .icon { width: 16px; height: 16px; stroke-width: 2; }
.is-invalid .field__error, .is-invalid > .step-error { display: flex; }
.is-invalid input, .is-invalid textarea { border-color: var(--fault); }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-errors { display: none; margin-bottom: 24px; padding: 16px 18px; border-left: 3px solid var(--fault); background: var(--raised); }
.form-errors.is-visible { display: block; }
.form-errors h3 { font-size: 1.05rem; color: var(--chalk); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.form-errors h3 .icon { color: var(--fault); }
.form-errors ul { list-style: none; display: grid; gap: 4px; }
.form-errors a { color: var(--fault); }
.form-urgent { display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; margin: 6px 0 20px; background: var(--carbon); border-left: 3px solid var(--red); color: var(--chalk); font-size: .9688rem; }
.form-urgent a { color: var(--red-ink); font-weight: 700; white-space: nowrap; }
.form-privacy { margin: 14px 0 0; font-size: .875rem; color: var(--alloy); }
.form-privacy a { color: var(--alloy); }
.form-result { padding: clamp(24px, 4vw, 40px); }
.form-result:focus { outline: none; }
.stamp {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; padding: 8px 14px;
  border: 2px solid var(--flag); color: var(--flag); transform: rotate(-3deg);
  font-family: var(--font-mono); font-weight: 500; letter-spacing: .12em; text-transform: uppercase; font-size: .875rem;
}
.stamp--ember { border-color: var(--ember); color: var(--ember); }
.js .form-result.is-printing { animation: print .42s var(--ease-throttle) both; }
@keyframes print { from { clip-path: inset(0 0 100% 0); } to { clip-path: inset(0 0 0 0); } }

/* ---------- 30. Footer ---------- */
.site-footer { position: relative; background: var(--carbon); padding-top: 14px; }
.site-footer::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 14px; background: var(--tread-dark) repeat-x; }
.footer-callout { padding-block: clamp(48px, 7vw, 88px) clamp(32px, 4vw, 48px); border-bottom: 1px solid var(--hairline); }
.footer-callout .tag { display: block; color: var(--alloy); }
.footer-call {
  --c: .14em;
  position: relative; display: inline-flex; align-items: center; flex-wrap: nowrap;
  gap: clamp(10px, 1.5vw, 24px); margin-top: 14px; padding-bottom: 18px;
  text-decoration: none; color: var(--chalk);
  font-stretch: 125%; font-weight: 800; text-transform: uppercase; line-height: 1.02;
  font-size: clamp(1.55rem, 6.4vw, 6rem); letter-spacing: -.01em;
}
.footer-call__icon {
  flex: none; display: grid; place-items: center; width: .8em; height: .8em;
  color: var(--chalk); background: var(--red-fill);
  clip-path: polygon(var(--c) 0, 100% 0, 100% calc(100% - var(--c)), calc(100% - var(--c)) 100%, 0 100%, 0 var(--c));
  transition: background-color .2s ease;
}
.footer-call__icon .icon { width: .42em; height: .42em; stroke-width: 1.7; }
.footer-call__text { min-width: 0; }
.footer-call .num { font-family: var(--font-mono); font-weight: 500; font-stretch: normal; letter-spacing: -.03em; }
.footer-call::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform .34s var(--ease-throttle);
}
.footer-call:hover::after, .footer-call:focus-visible::after { transform: scaleX(1); }
.footer-call:hover .footer-call__icon { background: var(--red); }
.footer-call__note {
  display: block; margin-top: 14px; font-family: var(--font-mono); font-size: .8125rem;
  letter-spacing: .06em; text-transform: uppercase; color: var(--steel);
}
.footer-grid { display: grid; gap: 36px 28px; padding-block: clamp(40px, 5vw, 64px); grid-template-columns: 1fr; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .footer-grid { grid-template-columns: 1.1fr 1fr 1.1fr .9fr; } }
.footer-col h2 { font-size: .8125rem; font-family: var(--font-mono); font-stretch: normal; font-weight: 500; letter-spacing: .12em; color: var(--alloy); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: grid; gap: 2px; }
.footer-col a { color: var(--chalk); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; min-height: 40px; }
.footer-col a:hover { color: var(--red-ink); }
.footer-col address { font-style: normal; line-height: 1.6; margin-bottom: 10px; }
.footer-col .tag { font-size: .75rem; }
.footer-brand { display: grid; gap: 18px; }
.footer-brand p { color: var(--alloy); margin: 0; max-width: 32ch; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; padding-block: 22px 28px; border-top: 1px solid var(--hairline); font-family: var(--font-mono); font-size: .75rem; letter-spacing: .04em; color: var(--alloy); }
.footer-bottom a { color: var(--alloy); }
.footer-bottom a:hover { color: var(--chalk); }
.footer-bottom ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 20px; }

/* ---------- 31. Tread divider ---------- */
.tread { height: 14px; background: var(--tread-dark) repeat-x; }
.tread--light { background-image: var(--tread-light); background-color: var(--chalk); }
.tread--on-light { background-color: var(--chalk); }
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .tread { animation: tread-roll linear both; animation-timeline: view(); }
    @keyframes tread-roll { from { background-position: 0 0; } to { background-position: 44px 0; } }
  }
}

/* ---------- 32. 404 ---------- */
.notfound { min-height: 88vh; display: grid; align-items: center; padding: calc(var(--header-h) + 48px) 0 72px; }
.notfound__grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) { .notfound__grid { grid-template-columns: 1.2fr .8fr; } }
.notfound__code { font-stretch: 125%; font-weight: 800; font-size: clamp(6rem, 22vw, 15rem); line-height: .85; color: transparent; -webkit-text-stroke: 2px var(--steel); }
.notfound .tach { max-width: 280px; margin-inline: auto; }

/* ---------- 33. Reveal & motion ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .42s var(--ease-throttle), transform .42s var(--ease-throttle); transition-delay: calc(var(--i, 0) * 60ms); }
.js [data-reveal].is-in { opacity: 1; transform: none; }
.js .hero [data-rise] { animation: rise .6s var(--ease-throttle) both; animation-delay: calc(var(--i, 0) * 80ms + 120ms); }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } }
.hero__title .display { background: linear-gradient(100deg, var(--chalk) 40%, #fff 50%, var(--chalk) 60%) 0 0 / 300% 100% no-repeat; -webkit-background-clip: text; background-clip: text; }
.js .hero__title .display { -webkit-text-fill-color: transparent; animation: sweep .9s ease .35s 1 both; }
@keyframes sweep { from { background-position: 100% 0; } to { background-position: 0 0; } }

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

/* ---------- 34. Forced colours (Windows High Contrast) ---------- */
@media (forced-colors: active) {
  .cf::before, .cf--line::after, .btn::before, .btn::after, .chip > span::before, .chip > span::after, .icon-btn::before, .hero__pause::before { display: none; }
  .cf, .btn, .icon-btn, .chip > span, .hero__pause { border: 1px solid CanvasText; }
  .chip input:checked + span { border-width: 3px; }
  :focus-visible { outline: 2px solid CanvasText; }
  .display, .hero__title .display { -webkit-text-fill-color: CanvasText; background: none; }
}

/* ---------- 35. Print ---------- */
@media print {
  :root { --carbon: #fff; --gunmetal: #fff; --raised: #fff; --chalk: #000; --alloy: #333; }
  body { background: #fff; color: #000; }
  .site-header, .sticky-bar, .mobile-menu, .hero__media, .hero__hud, .hero__lap, .hero__pause, .map-card, .booking-panel, .tread, .grain, .skip-link, .rotor-dots { display: none !important; }
  .hero, .page-hero { min-height: 0; padding: 24px 0; }
  a { color: #000; }
  .footer-call { font-size: 28px; }
}
