/* ==========================================================================
   Northside Caravan Repairs and Spares, mockup stylesheet
   Implements 03-design/design-system.md exactly.
   Motif: the A-frame notch (45deg clip / chevron from the caravan drawbar).
   Palette: bitumen charcoal, galvanised zinc, hi-vis safety yellow,
            tail-light amber-red, docket off-white.
   Fonts: Saira Condensed (display) + Asap (body), both Google Fonts.
   Hard rule: border-radius: 0 on EVERY element. No blur/glassmorphism.
   ========================================================================== */

/* ---------------------------------------------------------------------------
   1. Tokens
   --------------------------------------------------------------------------- */
:root {
  /* ---- Colour: core palette ---- */
  --bitumen-900: #16181B;
  --bitumen-800: #212429;
  --charcoal-700: #2E333A;
  --zinc-500: #6B7480;
  --zinc-300: #AAB2BB;
  --zinc-150: #D7DCE1;
  --zinc-80:  #EBEEF1;
  --docket-50: #F6F4EF;
  --paper-0:  #FCFBF8;
  --hivis-500: #FFC400;
  --hivis-600: #E0AC00;
  --hivis-200: #FFE99E;
  --taillight-600: #C2410C;
  --taillight-100: #FBE6DC;
  --marker-500: #D97706;
  --verge-600: #3F7A4E;
  --verge-100: #E2EFE5;

  /* ---- Colour: semantic ---- */
  --bg:            var(--docket-50);
  --surface:       var(--paper-0);
  --surface-alt:   var(--zinc-80);
  --surface-dark:  var(--bitumen-800);
  --ink:           var(--charcoal-700);
  --ink-strong:    var(--bitumen-900);
  --ink-invert:    var(--paper-0);
  --muted:         var(--zinc-500);
  --muted-invert:  var(--zinc-300);
  --accent:        var(--hivis-500);
  --accent-hover:  var(--hivis-600);
  --accent-tint:   var(--hivis-200);
  --accent-ink:    var(--bitumen-900);
  --accent-link:   #B26A00;
  --line:          var(--zinc-150);
  --line-strong:   var(--zinc-500);
  --warning:       var(--taillight-600);
  --warning-bg:    var(--taillight-100);
  --success:       var(--verge-600);
  --success-bg:    var(--verge-100);
  --info:          var(--marker-500);
  --focus-ring:    var(--bitumen-900);

  /* ---- Typography ---- */
  --font-display: "Saira Condensed", "Arial Narrow", sans-serif;
  --font-body:    "Asap", system-ui, -apple-system, "Segoe UI", sans-serif;

  --fs-display: clamp(2.25rem, 1.40rem + 3.78vw, 4rem);      /* 36 -> 64 */
  --fs-h1:      clamp(1.875rem, 1.34rem + 2.38vw, 3rem);     /* 30 -> 48 */
  --fs-h2:      clamp(1.625rem, 1.39rem + 1.05vw, 2.25rem);  /* 26 -> 36 */
  --fs-h3:      clamp(1.25rem, 1.13rem + 0.53vw, 1.625rem);  /* 20 -> 26 */
  --fs-h4:      clamp(1.1875rem, 1.15rem + 0.16vw, 1.3125rem);/* 19 -> 21 */
  --fs-h5:      1.125rem;   /* 18 */
  --fs-h6:      1rem;       /* 16 */
  --fs-lead:    clamp(1.125rem, 1.07rem + 0.27vw, 1.3125rem);/* 18 -> 21 */
  --fs-body:    clamp(1rem, 0.97rem + 0.13vw, 1.0625rem);   /* 16 -> 17 */
  --fs-small:   0.9375rem;  /* 15 */
  --fs-xs:      0.8125rem;  /* 13 */
  --fs-overline:0.8125rem;  /* 13 */

  --lh-tight: 1.05;
  --lh-heading: 1.15;
  --lh-body: 1.6;

  --measure: 66ch;

  /* ---- Spacing (4px base) ---- */
  --space-1: 4px;   --space-2: 8px;   --space-3: 12px;  --space-4: 16px;
  --space-5: 24px;  --space-6: 32px;  --space-7: 48px;  --space-8: 64px;
  --space-9: 96px;  --space-10: 128px;

  /* ---- Layout ---- */
  --container: 1200px;
  --gutter: 16px;
  --notch: 18px;

  /* ---- Borders / elevation ---- */
  --bw-1: 1px; --bw-2: 2px; --bw-3: 3px;
  --elev-1: 0 0 0 1px var(--line);
  --elev-2: 4px 4px 0 0 var(--ink-strong);
  --elev-3: 0 0 0 2px var(--ink-strong);

  /* ---- Motion ---- */
  --dur-fast: 120ms;
  --dur: 200ms;
  --ease: cubic-bezier(0.2, 0, 0.1, 1);
}

@media (min-width: 768px)  { :root { --gutter: 24px; --notch: 18px; } }
@media (min-width: 1080px) { :root { --gutter: 40px; --notch: 24px; } }
@media (max-width: 480px)  { :root { --notch: 12px; } }

/* ---------------------------------------------------------------------------
   2. Global resets: border-radius: 0 everywhere
   --------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; border-radius: 0; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-strong);
  margin: 0 0 var(--space-4);
}
h1 { font-size: var(--fs-h1); font-weight: 700; line-height: var(--lh-tight); }
h2 { font-size: var(--fs-h2); font-weight: 700; line-height: var(--lh-heading); }
h3 { font-size: var(--fs-h3); font-weight: 600; line-height: var(--lh-heading); }
h4 { font-size: var(--fs-h4); font-weight: 600; line-height: 1.2; }

p { max-width: var(--measure); margin: 0 0 var(--space-4); }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 var(--space-4); padding-left: 1.2em; }
li { margin-bottom: var(--space-2); }

a { color: var(--accent-link); }

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

strong, b { font-weight: 700; }

.tnum { font-feature-settings: "tnum" 1; }

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

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------------------------------------------------------------------------
   3. Layout helpers
   --------------------------------------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section { padding-top: var(--space-8); padding-bottom: var(--space-8); }
@media (min-width: 768px) { .section { padding-top: var(--space-9); padding-bottom: var(--space-9); } }

.section--alt  { background: var(--surface-alt); }
.section--dark { background: var(--surface-dark); color: var(--ink-invert); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--ink-invert); }
.section--dark p { color: var(--muted-invert); }

.section-head { max-width: 60ch; margin-bottom: var(--space-7); }
.section-head .eyebrow { margin-bottom: var(--space-3); }
.section-head p { color: var(--muted); font-size: var(--fs-lead); }
.section--dark .section-head p { color: var(--muted-invert); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-overline);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-link);
  margin-bottom: var(--space-3);
}
.section--dark .eyebrow { color: var(--accent); }

.lead { font-size: var(--fs-lead); line-height: 1.5; color: var(--muted); max-width: 60ch; }

.center { text-align: center; }
.mt-0 { margin-top: 0; }

/* Heading coupler marker (motif) */
.marker { position: relative; }
.marker::before {
  content: "";
  display: inline-block;
  width: 0; height: 0;
  border-style: solid;
  border-width: 6px 0 6px 9px;
  border-color: transparent transparent transparent var(--accent);
  margin-right: 0.5rem;
  vertical-align: 0.05em;
}

/* ---------------------------------------------------------------------------
   4. Skip link
   --------------------------------------------------------------------------- */
.skip-link {
  position: absolute; left: 8px; top: -56px;
  background: var(--ink-strong); color: var(--ink-invert);
  padding: 12px 16px;
  font: 700 16px/1 var(--font-body);
  text-decoration: none;
  z-index: 1000;
  transition: top var(--dur-fast) var(--ease);
}
.skip-link:focus { top: 8px; }

/* ---------------------------------------------------------------------------
   5. Motif dividers
   --------------------------------------------------------------------------- */
.hazard-rule {
  height: 6px;
  background: repeating-linear-gradient(
    45deg,
    var(--accent) 0, var(--accent) 14px,
    var(--ink-strong) 14px, var(--ink-strong) 28px
  );
}

.divider-chevron {
  height: 28px;
  background: var(--surface-dark);
  clip-path: polygon(0 0, 100% 0, 100% 60%, 50% 100%, 0 60%);
}

.rule {
  display: flex; align-items: center; gap: var(--space-4);
  color: var(--line);
  margin: var(--space-7) 0;
}
.rule::before, .rule::after { content: ""; height: 1px; flex: 1; background: currentColor; }
.rule__mark {
  width: 0; height: 0; border-style: solid;
  border-width: 6px 0 6px 9px;
  border-color: transparent transparent transparent var(--accent);
}

/* ---------------------------------------------------------------------------
   6. Header / navigation
   --------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--surface-dark);
  border-bottom: var(--bw-3) solid var(--accent);
  color: var(--ink-invert);
  transition: min-height var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.site-header__inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex; align-items: center; gap: var(--space-5);
  min-height: 72px;
  transition: min-height var(--dur) var(--ease);
}
.site-header.is-condensed { box-shadow: 0 2px 0 0 rgba(0,0,0,0.25); }
.site-header.is-condensed .site-header__inner { min-height: 60px; }

.site-logo { display: inline-flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.site-logo img { height: 40px; width: auto; display: block; border: var(--bw-1) solid var(--surface-dark); }
.site-logo:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.nav { margin-left: auto; }
.nav__list { display: flex; gap: var(--space-5); list-style: none; margin: 0; padding: 0; }
.nav__link {
  display: inline-flex; align-items: center; min-height: 44px;
  font: 600 16px/1 var(--font-body);
  color: var(--ink-invert); text-decoration: none;
  padding: 0 2px;
  border-bottom: 3px solid transparent;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.nav__link:hover { color: var(--accent); }
.nav__link[aria-current="page"] { border-bottom-color: var(--accent); color: #fff; }
.nav__link:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

/* Phone CTA in header */
.btn-phone {
  display: inline-flex; align-items: center; gap: var(--space-2);
  min-height: 44px; padding: 0 var(--space-5);
  background: var(--accent); color: var(--accent-ink);
  font: 700 16px/1 var(--font-display); letter-spacing: 0.02em;
  text-decoration: none;
  border: var(--bw-2) solid var(--accent);
  font-feature-settings: "tnum" 1;
  flex-shrink: 0;
  transition: background var(--dur) var(--ease), transform var(--dur-fast) var(--ease);
}
.btn-phone svg { width: 18px; height: 18px; }
.btn-phone:hover { background: var(--accent-hover); }
.btn-phone:active { transform: translateY(1px); }
.btn-phone:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  width: 48px; height: 48px;
  background: transparent;
  border: var(--bw-2) solid var(--line-strong);
  color: var(--ink-invert);
  cursor: pointer;
  align-items: center; justify-content: center;
  margin-left: auto;
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

@media (max-width: 768px) {
  .site-header__inner { gap: var(--space-3); }
  .header-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--surface-dark);
    border-bottom: var(--bw-3) solid var(--accent);
    margin-left: 0;
    transform: translateY(-8px);
    opacity: 0;
    transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
  }
  .nav.is-open { display: block; transform: translateY(0); opacity: 1; }
  .nav__list { flex-direction: column; gap: 0; }
  .nav__link {
    width: 100%; min-height: 48px;
    padding: 0 var(--gutter);
    border-bottom: 1px solid #33373d;
  }
  .nav__link[aria-current="page"] {
    border-bottom-color: #33373d;
    border-left: 4px solid var(--accent);
    padding-left: calc(var(--gutter) - 4px);
  }
}

/* Persistent mobile call bar */
.call-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  min-height: 56px;
  align-items: center; justify-content: center; gap: var(--space-2);
  background: var(--accent); color: var(--accent-ink);
  font: 700 18px/1 var(--font-display); letter-spacing: 0.03em;
  text-decoration: none;
  border-top: var(--bw-3) solid var(--ink-strong);
  font-feature-settings: "tnum" 1;
}
.call-bar svg { width: 20px; height: 20px; }
.call-bar:focus-visible { outline: 3px solid var(--ink-strong); outline-offset: -3px; }
@media (max-width: 768px) {
  .call-bar { display: flex; }
  body { padding-bottom: 56px; }
}

/* ---------------------------------------------------------------------------
   7. Buttons
   --------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  min-height: 44px; padding: 12px var(--space-5);
  font: 700 16px/1 var(--font-display); letter-spacing: 0.03em;
  text-transform: uppercase; text-decoration: none; cursor: pointer;
  border: var(--bw-2) solid transparent;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform var(--dur-fast) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.btn svg { width: 18px; height: 18px; }
.btn:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 3px; }

.btn--primary { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); font-feature-settings: "tnum" 1; }
.btn--primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-2px); box-shadow: var(--elev-2); }
.btn--primary:active { transform: translateY(0); box-shadow: none; }

.btn--secondary { background: transparent; color: var(--ink-strong); border-color: var(--ink-strong); }
.btn--secondary:hover { background: var(--ink-strong); color: var(--ink-invert); }

.btn--ghost { background: transparent; color: var(--ink-invert); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

.section--dark .btn--secondary { color: var(--ink-invert); border-color: var(--ink-invert); }
.section--dark .btn--secondary:hover { background: var(--ink-invert); color: var(--ink-strong); }

.btn[disabled] { background: var(--line); color: var(--zinc-300); border-color: var(--line); cursor: not-allowed; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-6); }

/* ---------------------------------------------------------------------------
   8. Hero
   --------------------------------------------------------------------------- */
.hero { background: var(--bg); }
.hero__inner {
  max-width: var(--container); margin: 0 auto;
  padding: var(--space-8) var(--gutter);
  display: grid; gap: var(--space-7); align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 1080px) {
  .hero__inner { grid-template-columns: 1.05fr 0.95fr; gap: var(--space-8); padding: var(--space-9) var(--gutter); }
}
.hero__media {
  position: relative;
  clip-path: polygon(24px 0, 100% 0, 100% 100%, 0 100%, 0 24px);
  border: var(--bw-2) solid var(--ink-strong);
  background: var(--surface-alt);
  order: -1;
}
@media (min-width: 1080px) { .hero__media { order: 0; } }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: var(--fs-display); line-height: 1.02;
  color: var(--ink-strong); letter-spacing: -0.01em;
  margin: var(--space-3) 0 var(--space-4);
}
.hero__lead { font-size: var(--fs-lead); line-height: 1.5; color: var(--muted); max-width: 52ch; }

/* Page hero (interior pages) */
.page-hero { background: var(--surface-dark); color: var(--ink-invert); border-bottom: var(--bw-3) solid var(--accent); }
.page-hero__inner {
  max-width: var(--container); margin: 0 auto;
  padding: var(--space-7) var(--gutter) var(--space-8);
}
.page-hero h1 { color: var(--ink-invert); font-size: var(--fs-h1); margin-bottom: var(--space-4); }
.page-hero .eyebrow { color: var(--accent); }
.page-hero .lead { color: var(--muted-invert); }
.page-hero .btn-row { margin-top: var(--space-6); }

/* Breadcrumbs */
.crumbs { font: 400 14px/1.4 var(--font-body); color: var(--muted); padding: var(--space-4) 0 0; }
.page-hero .crumbs { color: var(--muted-invert); padding-bottom: var(--space-5); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: var(--space-2); margin: 0; padding: 0; }
.crumbs li { margin: 0; display: flex; gap: var(--space-2); }
.crumbs li + li::before { content: "/"; color: var(--muted-invert); }
.crumbs a { color: var(--accent); text-underline-offset: 0.18em; text-decoration-thickness: 2px; }
.crumbs [aria-current="page"] { color: var(--ink-invert); }

/* ---------------------------------------------------------------------------
   9. Trust band
   --------------------------------------------------------------------------- */
.trust-band { background: var(--surface-dark); color: var(--ink-invert); border-top: var(--bw-3) solid var(--accent); }
.trust-band__inner {
  max-width: var(--container); margin: 0 auto;
  padding: var(--space-6) var(--gutter);
  display: grid; gap: var(--space-5);
  grid-template-columns: 1fr;
}
@media (min-width: 480px) { .trust-band__inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .trust-band__inner { grid-template-columns: repeat(4, 1fr); } }
.trust-item { display: flex; flex-direction: column; gap: var(--space-1); }
.trust-item__value {
  font: 700 var(--fs-h4)/1.1 var(--font-display);
  color: var(--accent); letter-spacing: 0.01em;
  font-feature-settings: "tnum" 1;
}
.trust-item__label { font: 400 14px/1.4 var(--font-body); color: var(--muted-invert); }

/* ---------------------------------------------------------------------------
   10. Grids + service cards
   --------------------------------------------------------------------------- */
.grid { display: grid; gap: var(--space-6); grid-template-columns: 1fr; }
@media (min-width: 768px)  { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px)  { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 768px)  { .grid--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: var(--bw-1) solid var(--line);
  padding: var(--space-6);
  clip-path: polygon(var(--notch) 0, 100% 0, 100% 100%, 0 100%, 0 var(--notch));
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: var(--notch); height: var(--notch);
  background: var(--accent);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--elev-2); border-color: var(--ink-strong); }
.card:focus-within { box-shadow: var(--elev-3); }
.card__icon { width: 40px; height: 40px; color: var(--ink-strong); margin-bottom: var(--space-4); }
.card__title {
  font: 600 var(--fs-h3)/1.15 var(--font-display);
  color: var(--ink-strong); margin: 0 0 var(--space-3);
}
.card__title a { color: inherit; text-decoration: none; }
.card__title a::after { content: ""; position: absolute; inset: 0; }
.card__title a:focus-visible { outline: none; }
.card:focus-within .card__title a { text-decoration: underline; text-underline-offset: 0.18em; }
.card__body { font: 400 var(--fs-body)/1.6 var(--font-body); color: var(--muted); margin: 0; }
.card__more {
  margin-top: auto; padding-top: var(--space-5);
  font: 700 14px/1 var(--font-display); text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--accent-link);
  display: inline-flex; align-items: center; gap: var(--space-2);
}
.card__more svg { width: 14px; height: 14px; }

/* Plain (non-link) feature card */
.feature {
  background: var(--surface); border: var(--bw-1) solid var(--line);
  border-top: var(--bw-3) solid var(--accent);
  padding: var(--space-6);
}
.feature h3 { color: var(--ink-strong); margin-bottom: var(--space-3); }
.feature p { color: var(--muted); }

/* ---------------------------------------------------------------------------
   11. Service detail blocks (Services page)
   --------------------------------------------------------------------------- */
.service-list { display: grid; gap: var(--space-5); grid-template-columns: 1fr; margin-top: var(--space-6); }
@media (min-width: 768px) { .service-list { grid-template-columns: repeat(2, 1fr); } }
.service-block {
  position: relative;
  background: var(--surface); border: var(--bw-1) solid var(--line);
  border-left: var(--bw-3) solid var(--accent);
  padding: var(--space-6);
}
.service-block h3 { color: var(--ink-strong); margin-bottom: var(--space-3); }
.service-block p { color: var(--muted); margin-bottom: 0; }

/* Steps / how it works */
.steplist { counter-reset: step; list-style: none; padding: 0; margin: var(--space-6) 0 0; display: grid; gap: var(--space-5); }
.steplist li {
  position: relative;
  background: var(--surface); border: var(--bw-1) solid var(--line);
  padding: var(--space-5) var(--space-5) var(--space-5) var(--space-8);
  margin: 0;
}
.steplist li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0;
  width: var(--space-7); height: 100%;
  background: var(--ink-strong); color: var(--accent);
  font: 800 20px/1 var(--font-display);
  display: flex; align-items: center; justify-content: center;
  font-feature-settings: "tnum" 1;
}

/* ---------------------------------------------------------------------------
   12. FAQ (details/summary)
   --------------------------------------------------------------------------- */
.faq { margin-top: var(--space-6); border-top: var(--bw-1) solid var(--line); }
.faq details { border-bottom: var(--bw-1) solid var(--line); background: var(--surface); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: var(--space-5); min-height: 44px;
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  font: 600 var(--fs-h4)/1.25 var(--font-display); color: var(--ink-strong);
  transition: background var(--dur) var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: var(--surface-alt); }
.faq summary:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: -3px; }
.faq summary::after {
  content: ""; flex-shrink: 0;
  width: 0; height: 0; border-style: solid;
  border-width: 8px 6px 0 6px;
  border-color: var(--accent-link) transparent transparent transparent;
  transition: transform var(--dur) var(--ease);
}
.faq details[open] summary::after { transform: rotate(180deg); }
.faq__body { padding: 0 var(--space-5) var(--space-5); }
.faq__body p { color: var(--muted); margin: 0; }

/* ---------------------------------------------------------------------------
   13. Brand grid + categories (Spares)
   --------------------------------------------------------------------------- */
.brand-grid { display: grid; gap: var(--space-4); grid-template-columns: repeat(2, 1fr); margin-top: var(--space-6); }
@media (min-width: 768px)  { .brand-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1080px) { .brand-grid { grid-template-columns: repeat(5, 1fr); } }
.brand-tile {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--space-3);
  background: var(--surface); border: var(--bw-1) solid var(--line);
  padding: var(--space-5); min-height: 120px;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.brand-tile img {
  max-width: 100%; height: auto; max-height: 44px; width: auto;
  filter: grayscale(1); opacity: 0.85;
  transition: filter var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.brand-tile:hover { border-color: var(--ink-strong); box-shadow: var(--elev-2); }
.brand-tile:hover img { filter: grayscale(0); opacity: 1; }
.brand-tile__name { font: 600 13px/1.2 var(--font-body); color: var(--muted); text-align: center; }

.category-card {
  background: var(--surface); border: var(--bw-1) solid var(--line);
  border-top: var(--bw-3) solid var(--accent);
  padding: var(--space-6);
}
.category-card h3 { color: var(--ink-strong); margin-bottom: var(--space-4); }
.category-card ul { margin: 0; padding-left: 1.2em; color: var(--muted); }

/* Logo strip (insurer / warranty) */
.logo-strip { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-5); }
.logo-strip li { list-style: none; margin: 0; }
.logo-tile {
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); border: var(--bw-1) solid var(--line);
  padding: var(--space-4); min-height: 72px; min-width: 120px;
}
.logo-tile img { max-height: 40px; width: auto; }
.section--dark .logo-tile { background: var(--paper-0); }

.name-strip {
  display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-4);
  margin: var(--space-4) 0 0; padding: 0; list-style: none;
}
.name-strip li {
  margin: 0;
  font: 700 16px/1.2 var(--font-display);
  letter-spacing: 0.02em;
  color: var(--ink-strong);
  padding: var(--space-2) var(--space-3);
  border: var(--bw-1) solid var(--line);
  background: var(--surface);
}
.section--dark .name-strip li { color: var(--ink-invert); border-color: #3a3f46; background: transparent; }

/* ---------------------------------------------------------------------------
   14. Offer band
   --------------------------------------------------------------------------- */
.offer {
  background: var(--accent-tint);
  border-top: var(--bw-3) solid var(--accent);
  border-bottom: var(--bw-3) solid var(--accent);
}
.offer__inner {
  max-width: var(--container); margin: 0 auto;
  padding: var(--space-6) var(--gutter);
  display: flex; align-items: center; gap: var(--space-5); flex-wrap: wrap;
}
.offer__figure {
  font: 800 var(--fs-h1)/1 var(--font-display);
  color: var(--ink-strong); font-feature-settings: "tnum" 1;
  flex-shrink: 0;
}
.offer__text { font: 400 var(--fs-lead)/1.4 var(--font-body); color: var(--ink); margin: 0; max-width: 60ch; }
.offer__text strong { color: var(--ink-strong); }

/* ---------------------------------------------------------------------------
   15. Reviews
   --------------------------------------------------------------------------- */
.review-grid { display: grid; gap: var(--space-6); grid-template-columns: 1fr; }
@media (min-width: 768px) { .review-grid { grid-template-columns: repeat(3, 1fr); } }
.review {
  background: var(--surface); border: var(--bw-1) solid var(--line);
  border-left: var(--bw-3) solid var(--accent);
  padding: var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-4);
}
.review__stars { color: var(--accent); letter-spacing: 0.1em; font-size: 18px; line-height: 1; }
.review__quote { font: 400 var(--fs-body)/1.6 var(--font-body); color: var(--ink); margin: 0; }
.review__name { font: italic 400 15px/1.3 var(--font-body); color: var(--muted); margin: auto 0 0; }
.review__name::before { content: "– "; }
.reviews__caption { font: 400 var(--fs-small)/1.5 var(--font-body); color: var(--muted); margin-top: var(--space-6); }
.reviews__caption a { color: var(--accent-link); text-underline-offset: 0.18em; text-decoration-thickness: 2px; }

/* ---------------------------------------------------------------------------
   16. Split / image + text rows
   --------------------------------------------------------------------------- */
.split { display: grid; gap: var(--space-6); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 768px) { .split { grid-template-columns: 1fr 1fr; gap: var(--space-8); } }
.split--reverse .split__media { order: -1; }
@media (min-width: 768px) { .split--reverse .split__media { order: 0; } }
.split__media {
  position: relative;
  clip-path: polygon(var(--notch) 0, 100% 0, 100% 100%, 0 100%, 0 var(--notch));
  border: var(--bw-2) solid var(--ink-strong);
  background: var(--surface-alt);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__body h2 { margin-bottom: var(--space-4); }
.split__body ul { color: var(--muted); }
.section--dark .split__body ul { color: var(--muted-invert); }

/* Pull-quote */
.pullquote {
  border-left: var(--bw-3) solid var(--accent);
  padding: var(--space-3) 0 var(--space-3) var(--space-5);
  margin: var(--space-5) 0;
  font: 400 var(--fs-lead)/1.5 var(--font-body); color: var(--ink);
  max-width: 60ch;
}
.section--dark .pullquote { color: var(--ink-invert); }

/* ---------------------------------------------------------------------------
   17. Location / info panel
   --------------------------------------------------------------------------- */
.info-grid { display: grid; gap: var(--space-6); grid-template-columns: 1fr; }
@media (min-width: 768px) { .info-grid { grid-template-columns: 1fr 1fr; } }
.info-block dl { margin: 0; display: grid; gap: var(--space-4); }
.info-block dt {
  font: 700 14px/1.2 var(--font-display); text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--accent-link); margin-bottom: var(--space-1);
}
.section--dark .info-block dt { color: var(--accent); }
.info-block dd { margin: 0; color: var(--ink); }
.section--dark .info-block dd { color: var(--ink-invert); }
.info-block dd a { color: var(--accent-link); text-underline-offset: 0.18em; }
.section--dark .info-block dd a { color: var(--accent); }

.hours-table { width: 100%; border-collapse: collapse; font-feature-settings: "tnum" 1; max-width: 360px; }
.hours-table th, .hours-table td {
  text-align: left; padding: var(--space-3) var(--space-4);
  border-bottom: var(--bw-1) solid var(--line);
  font: 400 var(--fs-body)/1.4 var(--font-body);
}
.hours-table th { font-weight: 600; color: var(--ink-strong); }
.hours-table td { color: var(--muted); }
.hours-table tr:nth-child(even) { background: var(--surface-alt); }
.section--dark .hours-table th, .section--dark .hours-table td { border-bottom-color: #3a3f46; }
.section--dark .hours-table th { color: var(--ink-invert); }
.section--dark .hours-table td { color: var(--muted-invert); }
.section--dark .hours-table tr:nth-child(even) { background: #2a2e34; }

.map-frame {
  border: var(--bw-2) solid var(--ink-strong);
  clip-path: polygon(var(--notch) 0, 100% 0, 100% 100%, 0 100%, 0 var(--notch));
  overflow: hidden;
  background: var(--surface-alt);
}
.map-frame iframe { display: block; width: 100%; height: 360px; border: 0; }

/* ---------------------------------------------------------------------------
   18. Forms
   --------------------------------------------------------------------------- */
.form-wrap {
  background: var(--surface); border: var(--bw-1) solid var(--line);
  padding: var(--space-6);
}
@media (min-width: 768px) { .form-wrap { padding: var(--space-7); } }
.field { display: flex; flex-direction: column; gap: var(--space-2); margin-bottom: var(--space-5); }
.field label { font: 600 15px/1.3 var(--font-body); color: var(--ink-strong); }
.field .req { color: var(--warning); }
.field input, .field select, .field textarea {
  min-height: 48px; padding: 12px var(--space-4);
  font: 400 16px/1.4 var(--font-body); color: var(--ink);
  background: var(--surface); border: var(--bw-2) solid var(--line-strong);
  width: 100%;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: 3px solid var(--accent); outline-offset: 0; border-color: var(--ink-strong);
}
.field input::placeholder, .field textarea::placeholder { color: var(--zinc-300); }
.field__hint { font: 400 13px/1.4 var(--font-body); color: var(--muted); }

.field--error input, .field--error select, .field--error textarea { border-color: var(--warning); background: var(--warning-bg); }
.field--error .field__msg { color: var(--warning); font: 600 14px/1.4 var(--font-body); }
.field--ok input { border-color: var(--success); }
.field--ok .field__msg { color: var(--success); font: 600 14px/1.4 var(--font-body); }
.field__msg { display: flex; align-items: center; gap: var(--space-2); }
.field__msg svg { width: 16px; height: 16px; flex-shrink: 0; }

.field-row { display: grid; gap: var(--space-4); grid-template-columns: 1fr; }
@media (min-width: 600px) { .field-row { grid-template-columns: 1fr 1fr; } }

.dropzone {
  border: var(--bw-2) dashed var(--line-strong);
  background: var(--surface-alt);
  padding: var(--space-6); text-align: center;
  color: var(--muted);
}
.dropzone:focus-within { border-color: var(--accent); }
.dropzone input { border: 0; min-height: 0; background: transparent; padding: var(--space-3) 0 0; }

/* multi-step progress */
.steps { display: flex; gap: 0; border: var(--bw-2) solid var(--ink-strong); margin-bottom: var(--space-6); }
.steps__item {
  flex: 1; padding: var(--space-3) var(--space-4);
  font: 600 14px/1.2 var(--font-display); text-transform: uppercase;
  letter-spacing: 0.06em; text-align: center;
  background: var(--surface); color: var(--muted);
}
.steps__item + .steps__item { border-left: var(--bw-2) solid var(--ink-strong); }
.steps__item[aria-current="step"] { background: var(--accent); color: var(--accent-ink); }

fieldset { border: var(--bw-1) solid var(--line); padding: var(--space-5); margin: 0 0 var(--space-6); }
legend { font: 700 var(--fs-h4)/1.2 var(--font-display); color: var(--ink-strong); padding: 0 var(--space-3); }

.form-note {
  background: var(--surface-alt); border-left: var(--bw-3) solid var(--info);
  padding: var(--space-4) var(--space-5); margin: 0 0 var(--space-6);
  font: 400 var(--fs-small)/1.5 var(--font-body); color: var(--ink);
}

/* ---------------------------------------------------------------------------
   19. Callout / CTA band
   --------------------------------------------------------------------------- */
.cta-band { background: var(--surface-dark); color: var(--ink-invert); border-top: var(--bw-3) solid var(--accent); }
.cta-band__inner {
  max-width: var(--container); margin: 0 auto;
  padding: var(--space-8) var(--gutter);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: var(--space-6);
}
.cta-band h2 { color: var(--ink-invert); margin: 0 0 var(--space-3); }
.cta-band p { color: var(--muted-invert); margin: 0; }
.cta-band .btn-row { margin-top: 0; }

/* Checklist (with motif tick) */
.checklist { list-style: none; padding: 0; margin: var(--space-4) 0 0; display: grid; gap: var(--space-3); }
.checklist li {
  position: relative; padding-left: var(--space-6); margin: 0;
  color: var(--muted);
}
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 0.35em;
  width: 0; height: 0; border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent var(--accent);
}
.section--dark .checklist li { color: var(--muted-invert); }

/* ---------------------------------------------------------------------------
   20. Footer
   --------------------------------------------------------------------------- */
.site-footer { background: var(--ink-strong); color: var(--ink-invert); }
.site-footer__inner {
  max-width: var(--container); margin: 0 auto;
  padding: var(--space-8) var(--gutter);
  display: grid; gap: var(--space-7); grid-template-columns: 1fr;
}
@media (min-width: 480px) { .site-footer__inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .site-footer__inner { grid-template-columns: repeat(4, 1fr); } }
.footer-col h2 {
  font: 700 16px/1.2 var(--font-display); text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--accent); margin: 0 0 var(--space-4);
}
.footer-col p, .footer-col address { font: 400 15px/1.6 var(--font-body); color: var(--muted-invert); font-style: normal; margin: 0 0 var(--space-3); }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin: 0 0 var(--space-2); }
.footer-col a {
  font: 400 15px/1.6 var(--font-body); color: var(--muted-invert); text-decoration: none;
  min-height: 24px; display: inline-block;
}
.footer-col a:hover { color: var(--accent); text-decoration: underline; text-underline-offset: 0.18em; }
.footer-col a:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.footer-hours { font-feature-settings: "tnum" 1; }
.footer-hours span { display: block; }
.footer-bottom {
  border-top: 1px solid #2a2e34;
  padding: var(--space-5) var(--gutter); text-align: center;
  font: 400 var(--fs-xs)/1.5 var(--font-body); color: var(--muted-invert);
}
.footer-bottom a { color: var(--muted-invert); }

/* ---------------------------------------------------------------------------
   21. Scroll-reveal (one effect, disabled under reduced-motion)
   --------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(8px); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------------------------------------------------------------------------
   22. Reduced motion
   --------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  .btn--primary:hover, .card:hover, .split__media:hover { transform: none; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------------------------------------------------------------------------
   23. Print
   --------------------------------------------------------------------------- */
@media print {
  .site-header, .call-bar, .nav-toggle, .hazard-rule, .divider-chevron, .map-frame iframe { display: none !important; }
  body { background: #fff; color: #000; padding-bottom: 0; }
  .section--dark, .page-hero, .cta-band, .trust-band, .site-footer { background: #fff !important; color: #000 !important; }
  .section--dark h1, .section--dark h2, .section--dark h3, .page-hero h1,
  .cta-band h2, .footer-col h2 { color: #000 !important; }
  .card, .review, .feature, .service-block { box-shadow: none !important; border: 1px solid #000; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 11px; }
}
