/* ==========================================================================
   Furnace Repair Pros - style.css
   The one stylesheet for the whole site. styleguide.html displays it.

   Rules this file follows
   1. Every font size and every spacing value is a clamp(), fluid from a
      320px screen to a 1280px screen, fixed outside that range.
   2. The heaviest weight anywhere is 800.
   3. Every reusable style is a token or a class. Nothing is set by hand.
   4. Border radius is global: three base sizes, named by what they are for.
   ========================================================================== */


/* --------------------------------------------------------------------------
   1. Fonts - self-hosted, variable, Latin subset
      Put these two lines in every page <head>:
      <link rel="preload" href="assets/fonts/inter-latin-var.woff2" as="font" type="font/woff2" crossorigin>
      <link rel="preload" href="assets/fonts/montserrat-latin-var.woff2" as="font" type="font/woff2" crossorigin>
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/inter-latin-var.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700 800;
  font-display: swap;
  src: url("../fonts/montserrat-latin-var.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}


/* --------------------------------------------------------------------------
   2. Tokens
   -------------------------------------------------------------------------- */
:root {

  /* ---- colour: brand, sampled from the logo file ----------------------- */
  --orange:      #FA5A0A;   /* primary action - every call button */
  --orange-2:    #E63C0A;   /* hover, pressed */
  --orange-ink:  #C43405;   /* orange text on light backgrounds */
  --orange-soft: #FFF1E9;   /* tint for callouts */
  --black:       #1E2832;   /* logo black - header, footer, dark bands */

  /* ---- colour: the one blue -------------------------------------------- */
  --blue:        #1F6FAF;   /* links, secondary buttons */
  --blue-2:      #175A90;   /* blue hover */
  --blue-soft:   #EDF4FA;   /* blue tint */

  /* ---- colour: text, derived from the logo black ----------------------- */
  --ink:         #1E2832;   /* headings */
  --ink-2:       #2A3641;   /* bold text */
  --ink-3:       #3D4A57;   /* labels */
  --body:        #4A5563;   /* paragraphs */
  --muted:       #5E6A76;   /* notes, captions - 5:1 on --sand */

  /* ---- colour: surfaces, lines, status --------------------------------- */
  --white:       #FFFFFF;
  --mist:        #F4F6F8;   /* light grey section */
  --sand:        #F8F6F4;   /* warm grey section */
  --line:        #E2E7EB;   /* borders */
  --line-2:      #EDF0F3;   /* subtle dividers */
  --ok:          #1F8A4C;   /* success */
  --on-dark:     #C9D3DE;   /* body text on --black */

  /* ---- colour: photo scrims - flat layers, never a gradient ------------ */
  --scrim:        rgba(30,40,50,.66);   /* text over a photo */
  --scrim-strong: rgba(30,40,50,.78);   /* busy photos, faces */
  --line-dark:    rgba(255,255,255,.14);/* borders and rules on --black */

  /* ---- colour: third-party marks (Google reviews widget only) ---------- */
  --star:         #FBBC04;
  --g-meta:       #70757A;              /* Google's grey for dates, "Read more" */


  /* ---- font families --------------------------------------------------- */
  --font-display: "Montserrat", ui-sans-serif, system-ui, "Segoe UI", Arial, sans-serif;
  --font-body:    "Inter", ui-sans-serif, system-ui, "Segoe UI", Roboto, Arial, sans-serif;

  /* ---- font weights - 800 is the ceiling ------------------------------- */
  --fw-regular:   400;      /* body text */
  --fw-semibold:  600;      /* labels, nav, small UI text */
  --fw-bold:      700;      /* bold text, buttons */
  --fw-extrabold: 800;      /* every heading */

  /* ---- font sizes - fluid 320px -> 1280px ------------------------------ */
  /*                         at 320px      at 1280px                        */
  --fs-h1:      clamp(2.125rem, 1.6667rem + 2.2917vw, 3.5rem);      /* 34 -> 56 */
  --fs-h2:      clamp(1.625rem, 1.3333rem + 1.4583vw, 2.5rem);      /* 26 -> 40 */
  --fs-h3:      clamp(1.1875rem, 1.0833rem + 0.5208vw, 1.5rem);     /* 19 -> 24 */
  --fs-h4:      clamp(1.0625rem, 1.0208rem + 0.2083vw, 1.1875rem);  /* 17 -> 19 */
  --fs-lead:    clamp(1.0625rem, 1rem + 0.3125vw, 1.25rem);         /* 17 -> 20 */
  --fs-body:    clamp(1rem, 0.9792rem + 0.1042vw, 1.0625rem);       /* 16 -> 17 */
  --fs-sm:      clamp(0.875rem, 0.8542rem + 0.1042vw, 0.9375rem);   /* 14 -> 15 */
  --fs-xs:      clamp(0.7812rem, 0.7708rem + 0.0521vw, 0.8125rem);  /* 12.5 -> 13 */
  --fs-eyebrow: clamp(0.75rem, 0.7292rem + 0.1042vw, 0.8125rem);    /* 12 -> 13 */
  --fs-stat:    clamp(1.25rem, 1.125rem + 0.625vw, 1.625rem);       /* 20 -> 26 */
  --fs-btn:     clamp(0.9375rem, 0.9167rem + 0.1042vw, 1rem);       /* 15 -> 16 */
  --fs-btn-lg:  clamp(1rem, 0.9583rem + 0.2083vw, 1.125rem);        /* 16 -> 18 */
  --fs-btn-call: clamp(1.0625rem, 1.0208rem + 0.2083vw, 1.1875rem); /* 17 -> 19  phone number */
  --fs-phone:   clamp(1.75rem, 1.4583rem + 1.4583vw, 2.625rem);     /* 28 -> 42  big tap-to-call number */

  /* ---- line height & letter spacing ------------------------------------ */
  --lh-tight:   1.16;       /* headings */
  --lh-snug:    1.35;       /* buttons, short labels */
  --lh-body:    1.62;       /* paragraphs */
  --ls-tight:   -0.015em;   /* headings */
  --ls-normal:  0;
  --ls-wide:    0.14em;     /* eyebrow labels, uppercase */

  /* ---- spacing - fluid 320px -> 1280px --------------------------------- */
  --space-3xs:     clamp(0.25rem, 0.2292rem + 0.1042vw, 0.3125rem); /*  4 ->  5 */
  --space-2xs:     clamp(0.5rem, 0.4792rem + 0.1042vw, 0.5625rem);  /*  8 ->  9 */
  --space-xs:      clamp(0.75rem, 0.7083rem + 0.2083vw, 0.875rem);  /* 12 -> 14 */
  --space-s:       clamp(1rem, 0.9167rem + 0.4167vw, 1.25rem);      /* 16 -> 20 */
  --space-m:       clamp(1.25rem, 1.0833rem + 0.8333vw, 1.75rem);   /* 20 -> 28 */
  --space-l:       clamp(1.75rem, 1.5rem + 1.25vw, 2.5rem);         /* 28 -> 40 */
  --space-xl:      clamp(2.5rem, 2.0833rem + 2.0833vw, 3.75rem);    /* 40 -> 60 */
  --space-2xl:     clamp(3.5rem, 2.8333rem + 3.3333vw, 5.5rem);     /* 56 -> 88 */
  --space-section: clamp(3.25rem, 2.3333rem + 4.5833vw, 6rem);      /* 52 -> 96 */
  --gutter:        clamp(1rem, 0.8333rem + 0.8333vw, 1.5rem);       /* 16 -> 24 */

  /* ---- button padding - fluid ------------------------------------------ */
  --pad-btn-y:     clamp(0.625rem, 0.6042rem + 0.1042vw, 0.6875rem); /* 10 -> 11 */
  --pad-btn-x:     clamp(1.125rem, 1.0417rem + 0.4167vw, 1.375rem);  /* 18 -> 22 */
  --pad-btn-lg-y:  clamp(0.75rem, 0.7083rem + 0.2083vw, 0.875rem);   /* 12 -> 14 */
  --pad-btn-lg-x:  clamp(1.375rem, 1.25rem + 0.625vw, 1.75rem);      /* 22 -> 28 */
  --btn-inset:     clamp(0.25rem, 0.2292rem + 0.1042vw, 0.3125rem);  /*  4 ->  5  gap round the icon circle */

  /* ---- radius - change a base size, the whole site follows ------------- */
  --radius-xs:   2px;
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-full: 999px;
  /* what each one is for - use these in components, not the sizes above */
  --radius-badge:   var(--radius-xs);    /* tags, small labels */
  --radius-control: var(--radius-sm);    /* inputs, selects, small UI */
  --radius-card:    var(--radius-md);    /* cards, panels, images */
  --radius-button:  var(--radius-full);  /* every button - pill */

  /* ---- depth: flat, no gradients anywhere ------------------------------ */
  --shadow-1: 0 1px 2px rgba(30,40,50,.06), 0 6px 18px -12px rgba(30,40,50,.20);
  --shadow-2: 0 1px 3px rgba(30,40,50,.07), 0 16px 34px -20px rgba(30,40,50,.30);
  --shadow-3: 0 2px 6px rgba(30,40,50,.08), 0 26px 56px -28px rgba(30,40,50,.38);

  /* ---- layout ---------------------------------------------------------- */
  --shell: 1200px;
  --header-offset: 96px;              /* keeps anchors clear of the sticky header */
  --header-h: 84px;                   /* main header bar, desktop */
  --measure: 68ch;                    /* longest comfortable line of body text */
  --tap: 48px;                        /* smallest touch target */

  /* ---- motion ---------------------------------------------------------- */
  --ease: .16s ease;
}


/* --------------------------------------------------------------------------
   3. Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-2); text-decoration: underline; }

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

::selection { background: var(--orange); color: var(--white); }


/* --------------------------------------------------------------------------
   4. Typography - elements
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  color: var(--ink);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin: 0 0 var(--space-xs);
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p            { margin: 0 0 var(--space-s); }
ul, ol       { margin: 0 0 var(--space-s); padding-left: 1.15em; }
li           { margin: var(--space-3xs) 0; }
strong, b    { color: var(--ink-2); font-weight: var(--fw-bold); }
small        { font-size: var(--fs-xs); }


/* --------------------------------------------------------------------------
   5. Typography - classes
      Look like a heading without being one, so the H1 -> H2 -> H3 order
      stays clean for search engines while the design stays flexible.
   -------------------------------------------------------------------------- */
.text-h1, .text-h2, .text-h3, .text-h4 {
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  color: var(--ink);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}
.text-h1   { font-size: var(--fs-h1); }
.text-h2   { font-size: var(--fs-h2); }
.text-h3   { font-size: var(--fs-h3); }
.text-h4   { font-size: var(--fs-h4); }

.text-lead { font-size: var(--fs-lead); line-height: 1.55; color: var(--ink-3); }
.text-body { font-size: var(--fs-body); line-height: var(--lh-body); }
.text-sm   { font-size: var(--fs-sm); }
.text-xs   { font-size: var(--fs-xs); }

/* small uppercase label above a heading */
.eyebrow {
  font-family: var(--font-display);
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-extrabold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--orange-ink);
  margin: 0 0 var(--space-2xs);
}

/* big numbers - prices, step numbers, the phone number */
.text-stat {
  font-family: var(--font-display);
  font-size: var(--fs-stat);
  font-weight: var(--fw-extrabold);
  line-height: 1;
  letter-spacing: var(--ls-tight);
  color: var(--ink);
}

/* families */
.font-display { font-family: var(--font-display); }
.font-body    { font-family: var(--font-body); }

/* weights */
.fw-400 { font-weight: var(--fw-regular); }
.fw-600 { font-weight: var(--fw-semibold); }
.fw-700 { font-weight: var(--fw-bold); }
.fw-800 { font-weight: var(--fw-extrabold); }

/* colour */
.text-ink    { color: var(--ink); }
.text-body-c { color: var(--body); }
.text-muted  { color: var(--muted); }
.text-orange { color: var(--orange-ink); }
.text-blue   { color: var(--blue); }
.text-white  { color: var(--white); }

/* alignment */
.text-center { text-align: center; }


/* --------------------------------------------------------------------------
   6. Layout
   -------------------------------------------------------------------------- */
.shell {
  width: min(100% - var(--gutter) * 2, var(--shell));
  margin-inline: auto;
}

.section          { padding-block: var(--space-section); }
.section--mist    { background: var(--mist); }
.section--sand    { background: var(--sand); }
.section--dark    { background: var(--black); color: var(--on-dark); }
.section--dark :is(h1, h2, h3, h4, .text-h1, .text-h2, .text-h3, .text-h4) { color: var(--white); }

/* vertical rhythm between direct children */
.stack    > * + * { margin-top: var(--space-s); }
.stack-xs > * + * { margin-top: var(--space-xs); }
.stack-l  > * + * { margin-top: var(--space-l); }


/* --------------------------------------------------------------------------
   7. Buttons - pill, with the icon in a circle
      .btn + one colour modifier + optional size modifier.

      Text + icon circle at the end:
      <a class="btn btn--primary" href="#">Get a quote
        <span class="btn__icon"><svg><use href="#i-arrow"/></svg></span></a>

      The call button - icon circle at the start, the number only:
      <a class="btn btn--primary btn--call" href="tel:+17207310663"
         aria-label="Call Furnace Repair Pros at (720) 731-0663">
        <span class="btn__icon btn__icon--start"><svg aria-hidden="true"><use href="#i-phone"/></svg></span>
        (720) 731-0663</a>
   -------------------------------------------------------------------------- */
.btn {
  --_py: var(--pad-btn-y);            /* padding the icon circle sizes itself from */
  --_px: var(--pad-btn-x);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--_py) var(--_px);
  font-family: var(--font-display);
  font-size: var(--fs-btn);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  letter-spacing: .01em;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
  border-radius: var(--radius-button);
  cursor: pointer;
  transition: background-color var(--ease), border-color var(--ease), color var(--ease);
}
.btn:hover         { text-decoration: none; }
.btn:active        { transform: translateY(1px); }
.btn:focus-visible { border-radius: var(--radius-button); }
.btn > svg         { width: 1.15em; height: 1.15em; flex: none; }   /* inline icon, no circle */

/* button icon - no circle, same colour as the button text (22 Sep 2026) */
.btn__icon {
  display: inline-grid;
  place-items: center;
  flex: none;
  color: currentColor;
  background: none;
  transition: transform var(--ease);
}
.btn__icon svg { width: 1.2em; height: 1.2em; }
.btn:hover .btn__icon:not(.btn__icon--start) svg { transform: translateX(2px); transition: transform var(--ease); }

/* primary - orange, every phone call */
.btn--primary       { background: var(--orange); color: var(--white); }
.btn--primary:hover { background: var(--orange-2); color: var(--white); }

/* secondary - blue, secondary actions */
.btn--secondary       { background: var(--blue); color: var(--white); }
.btn--secondary:hover { background: var(--blue-2); color: var(--white); }

/* outline - on dark backgrounds, beside a primary */
.btn--outline       { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn--outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); color: var(--white); }

/* outline-dark - the same, on light backgrounds */
.btn--outline-dark       { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--outline-dark:hover { border-color: var(--ink); color: var(--ink); }

/* white - solid white on dark photos, e.g. "Read More Reviews" */
.btn--white       { background: var(--white); color: var(--ink); }
.btn--white:hover { background: var(--mist); color: var(--ink); }

/* dark - logo black, the call button in the mobile call bar */
.btn--dark        { background: var(--black); color: var(--white); }
.btn--dark:hover  { background: var(--ink-2); color: var(--white); }

/* ghost - text link with an arrow, lowest priority, no circle */
.btn--ghost {
  background: transparent;
  color: var(--orange-ink);
  padding-inline: 0;
  border-color: transparent;
}
.btn--ghost:hover { color: var(--orange-2); }
.btn--ghost > svg { transition: transform var(--ease); }
.btn--ghost:hover > svg { transform: translateX(3px); }

/* sizes */
.btn--lg    { --_py: var(--pad-btn-lg-y); --_px: var(--pad-btn-lg-x); font-size: var(--fs-btn-lg); }
.btn--block { display: flex; width: 100%; }
.btn--block .btn__icon:not(.btn__icon--start) { margin-inline-start: auto; }

/* call - phone icon + the number, nothing else. Normal button size; the
   number is set a step larger and at 800 so it reads first. */
.btn--call {
  font-size: var(--fs-btn-call);
  font-weight: var(--fw-extrabold);
  letter-spacing: .02em;
  font-variant-numeric: tabular-nums;
}

/* disabled */
.btn:disabled,
.btn[aria-disabled="true"] { opacity: .45; cursor: not-allowed; pointer-events: none; }


/* --------------------------------------------------------------------------
   8. Accessibility
   -------------------------------------------------------------------------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.sr-only:focus {
  position: fixed; top: var(--space-2xs); left: var(--space-2xs); z-index: 100;
  width: auto; height: auto; margin: 0; clip: auto; overflow: visible; white-space: normal;
  padding: var(--space-2xs) var(--space-s); background: var(--black); color: var(--white);
  border-radius: var(--radius-control);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}


/* ==========================================================================
   Components go below this line, one block per section, as we build them.
   ========================================================================== */

/* --------------------------------------------------------------------------
   9. Shared pieces - icons, headings, links, pills
   -------------------------------------------------------------------------- */
.icon { width: 1em; height: 1em; flex: none; fill: none; stroke: currentColor;
        stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon--fill { fill: currentColor; stroke: none; }

/* one coloured phrase per heading */
.hl { color: var(--orange-2); }
.section--dark .hl, .on-photo .hl { color: var(--orange); }

.measure { max-width: var(--measure); }

/* section header: eyebrow + H2 + one intro line */
.sec-head { max-width: 46rem; margin-bottom: var(--space-l); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head > :last-child { margin-bottom: 0; }
.sec-head--split {
  max-width: none; display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: var(--space-s);
}
.sec-head--split > div { max-width: 46rem; }
.sec-head--split > div > :last-child { margin-bottom: 0; }

/* eyebrow as a pill with a dot */
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: var(--space-2xs);
  padding: var(--space-3xs) var(--space-xs);
  font-family: var(--font-display); font-size: var(--fs-eyebrow);
  font-weight: var(--fw-extrabold); letter-spacing: var(--ls-wide);
  text-transform: uppercase; line-height: var(--lh-snug);
  color: var(--orange-ink); background: var(--orange-soft);
  border-radius: var(--radius-full); margin: 0 0 var(--space-xs);
}
.eyebrow-pill::before {
  content: ""; width: 6px; height: 6px; border-radius: var(--radius-full); background: var(--orange);
}
.on-photo .eyebrow-pill, .section--dark .eyebrow-pill {
  color: var(--white); background: rgba(255,255,255,.12); border: 1px solid var(--line-dark);
}

/* text link with an arrow - the C1 "→ [link]" lines */
.arrow-link {
  display: inline; line-height: var(--lh-snug);
  font-family: var(--font-display); font-weight: var(--fw-bold);
  font-size: var(--fs-sm); color: var(--orange-ink);
}
.arrow-link .icon { display: inline-block; vertical-align: -0.12em; margin-left: var(--space-3xs); transition: transform var(--ease); }
.arrow-link:hover { color: var(--orange-2); text-decoration: none; }
.arrow-link:hover .icon { transform: translateX(3px); }
.on-photo .arrow-link, .section--dark .arrow-link { color: var(--white); }
.links-row { display: flex; flex-wrap: wrap; gap: var(--space-2xs) var(--space-s); margin: 0; }

/* the "Short answer" block */
.short-answer {
  background: var(--orange-soft);
  border-radius: var(--radius-control); padding: var(--space-xs) var(--space-s);
  color: var(--ink-2); font-size: var(--fs-sm);
}
.short-answer strong { color: var(--orange-ink); }

.btn-row { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-xs); }

/* photos */
.photo { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-card); }


/* --------------------------------------------------------------------------
   10. Top bar + header
   -------------------------------------------------------------------------- */
.topbar { background: var(--black); color: var(--on-dark); font-size: var(--fs-xs); }
.topbar__in {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-s);
  min-height: 40px;
}
.topbar__list { display: flex; flex-wrap: wrap; gap: var(--space-2xs) var(--space-m); margin: 0; padding: 0; list-style: none; }
.topbar__list li { display: flex; align-items: center; gap: var(--space-2xs); margin: 0; }
.topbar .icon { color: var(--orange); font-size: 1.15em; }
.topbar__tag {
  display: inline-flex; align-items: center; gap: var(--space-2xs);
  color: var(--white); font-weight: var(--fw-semibold);
}
.topbar__tag::before { content: ""; width: 8px; height: 8px; border-radius: var(--radius-full); background: var(--orange); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--white); border-bottom: 1px solid var(--line);
  transition: box-shadow var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-2); }
.site-header__in {
  display: flex; align-items: center; gap: var(--space-m);
  min-height: var(--header-h); transition: min-height var(--ease);
}
.site-header.is-scrolled .site-header__in { min-height: 68px; }
.logo { display: block; flex: none; }
.logo img { height: 52px; width: auto; transition: height var(--ease); }
.site-header.is-scrolled .logo img { height: 44px; }

/* desktop nav */
.nav { margin-inline: auto; }
.nav__list { display: flex; align-items: center; gap: var(--space-3xs); margin: 0; padding: 0; list-style: none; }
.nav__item { position: relative; margin: 0; }
.nav__link {
  display: inline-flex; align-items: center; gap: var(--space-3xs);
  padding: var(--space-2xs) var(--space-xs); min-height: var(--tap);
  font-family: var(--font-display); font-size: var(--fs-sm); font-weight: var(--fw-bold);
  color: var(--ink); background: none; border: 0; cursor: pointer; position: relative;
  white-space: nowrap;
}
.nav__link::after {
  content: ""; position: absolute; left: var(--space-xs); right: var(--space-xs); bottom: 8px;
  height: 2px; background: var(--orange); transform: scaleX(0); transition: transform var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--orange-ink); text-decoration: none; }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link .icon { font-size: .8em; transition: transform var(--ease); }
.nav__item:hover > .nav__link .icon,
.nav__link[aria-expanded="true"] .icon { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: 100%; left: 50%; min-width: 17rem;
  padding: var(--space-2xs); margin: 0; list-style: none;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-card);
  box-shadow: var(--shadow-3);
  opacity: 0; visibility: hidden; transform: translate(-50%, 6px);
  transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
}
.dropdown::before { content: ""; position: absolute; inset: -14px 0 auto; height: 14px; } /* hover bridge */
.dropdown--wide { display: grid; grid-template-columns: 1fr 1fr; min-width: 33rem; }
.dropdown li { margin: 0; }
.dropdown a {
  display: flex; align-items: center; gap: var(--space-2xs);
  padding: var(--space-2xs) var(--space-xs); border-radius: var(--radius-control);
  font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--ink);
}
.dropdown a .icon { color: var(--orange); font-size: .9em; }
.dropdown a:hover { background: var(--mist); color: var(--orange-ink); text-decoration: none; }
.nav__item:not(.is-dismissed):hover > .dropdown,
.nav__item:not(.is-dismissed):focus-within > .dropdown,
.nav__link[aria-expanded="true"] + .dropdown {
  opacity: 1; visibility: visible; transform: translate(-50%, 0);
}

.site-header__cta { flex: none; }
.burger {
  display: none; place-items: center; width: 44px; height: 44px; margin-left: auto;
  border: 0; border-radius: var(--radius-control); background: var(--orange); color: var(--white);
  font-size: 22px; cursor: pointer;
}

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 80; visibility: hidden;
}
.drawer__backdrop {
  position: absolute; inset: 0; background: rgba(30,40,50,.55); opacity: 0; transition: opacity .25s ease;
}
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(88vw, 360px);
  display: flex; flex-direction: column; background: var(--white);
  transform: translateX(100%); transition: transform .25s ease; overflow-y: auto;
}
.drawer.is-open { visibility: visible; }
.drawer.is-open .drawer__backdrop { opacity: 1; }
.drawer.is-open .drawer__panel { transform: none; }
.drawer__top {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-xs) var(--space-s); border-bottom: 1px solid var(--line);
}
.drawer__top img { height: 38px; width: auto; }
.drawer__close {
  display: grid; place-items: center; width: var(--tap); height: var(--tap);
  border: 0; background: none; color: var(--ink); font-size: 24px; cursor: pointer;
}
.drawer__nav { flex: 1; padding: 0 var(--space-s); }
.drawer__nav > a, .drawer__nav summary {
  display: flex; align-items: center; justify-content: space-between; min-height: 56px;
  font-family: var(--font-display); font-weight: var(--fw-bold); color: var(--ink);
  border-bottom: 1px solid var(--line); cursor: pointer; list-style: none;
}
.drawer__nav summary::-webkit-details-marker { display: none; }
.drawer__nav summary .icon { transition: transform var(--ease); }
.drawer__nav details[open] summary .icon { transform: rotate(180deg); }
.drawer__nav details ul { margin: 0; padding: var(--space-3xs) 0 var(--space-2xs) var(--space-s); list-style: none; }
.drawer__nav details li { margin: 0; }
.drawer__nav details a {
  display: flex; align-items: center; min-height: var(--tap);
  font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--body);
}
.drawer__foot { display: grid; gap: var(--space-xs); padding: var(--space-s); border-top: 1px solid var(--line); }
.drawer__foot p { margin: 0; text-align: center; font-size: var(--fs-xs); color: var(--muted); }
body.is-locked { overflow: hidden; }


/* --------------------------------------------------------------------------
   11. Hero - photo, flat scrim, copy left, LeadSmart form card right
   -------------------------------------------------------------------------- */
.hero { position: relative; isolation: isolate; color: var(--on-dark); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--scrim); }
.hero__grid {
  display: grid; grid-template-columns: minmax(0, 1fr) 440px; gap: var(--space-xl);
  align-items: start; padding-block: var(--space-l) var(--space-xl);
}
.hero h1 { color: var(--white); font-size: var(--fs-h1); margin-bottom: var(--space-s); }
.hero__copy p { color: var(--on-dark); max-width: 36rem; }
.hero__copy .hero__lead { font-size: var(--fs-lead); color: var(--white); }
.hero__copy strong { color: var(--white); }
.hero .btn-row { margin: var(--space-m) 0 var(--space-s); }
.hero__hours {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-3xs) var(--space-xs);
  margin: 0; font-size: var(--fs-sm); color: var(--on-dark);
}
.hero__hours strong { color: var(--white); }
.hero__hours .icon { color: var(--orange); }
.hero__rating {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2xs) var(--space-xs);
  margin: 0 0 var(--space-s); font-size: var(--fs-sm); color: var(--on-dark);
}
.hero__rating img { height: 44px; width: auto; }
.hero__rating > span { display: inline-flex; align-items: center; gap: var(--space-2xs); }
.hero__rating .stars .icon { width: 16px; height: 16px; }

/* the form card - white, framing the vendor iframe */
.quote-card {
  background: var(--white); color: var(--body);
  border-radius: var(--radius-card); box-shadow: 0 20px 48px rgba(0,0,0,.28);
  padding: var(--space-m) var(--space-m) var(--space-s);
  scroll-margin-top: calc(var(--header-offset) + var(--space-s));
}
.quote-card__title { font-size: var(--fs-h4); margin-bottom: var(--space-3xs); }
.quote-card .eyebrow { margin-bottom: var(--space-3xs); }
.quote-card__sub { font-size: var(--fs-xs); color: var(--muted); margin-bottom: var(--space-xs); }
.quote-card #polyares_form { max-width: 100%; margin-inline: auto; }
.quote-card #polyares_form iframe { display: block; }
.quote-card__foot {
  margin: var(--space-s) 0 0; padding-top: var(--space-xs); border-top: 1px solid var(--line);
  font-size: var(--fs-sm); text-align: center;
}
.quote-card__foot a { font-family: var(--font-display); font-weight: var(--fw-extrabold); color: var(--orange-ink); }


/* --------------------------------------------------------------------------
   11b. Inner-page hero: About, Contact, legal pages. Shorter than the home hero.
        <section class="page-hero on-photo">
          <div class="page-hero__bg"><img ...></div>
          <div class="shell page-hero__in">
            <nav class="crumbs" aria-label="Breadcrumb"><ol><li><a href="/">Home</a></li><li aria-current="page">About us</li></ol></nav>
            <h1>...</h1><p class="page-hero__lead">...</p><div class="btn-row">...</div>
          </div>
        </section>
        .page-hero--plain drops the photo (legal pages).
   -------------------------------------------------------------------------- */
.page-hero { position: relative; isolation: isolate; overflow: hidden; background: var(--black); color: var(--on-dark); }
.page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--scrim-strong); }
.page-hero--plain::before { display: none; }
.page-hero__in { padding-block: var(--space-2xl) var(--space-xl); max-width: var(--shell); }
.page-hero h1 { color: var(--white); font-size: var(--fs-h1); margin-bottom: var(--space-xs); max-width: 22ch; }
.page-hero__lead { font-size: var(--fs-lead); color: var(--white); max-width: 40rem; margin-bottom: 0; }
.page-hero .btn-row { margin-top: var(--space-m); }
.crumbs ol { display: flex; flex-wrap: wrap; gap: var(--space-3xs) var(--space-2xs); margin: 0 0 var(--space-s); padding: 0; list-style: none; font-size: var(--fs-sm); }
.crumbs li { margin: 0; display: inline-flex; align-items: center; gap: var(--space-2xs); color: var(--on-dark); }
.crumbs li + li::before { content: "/"; color: rgba(255,255,255,.4); }
.crumbs a { color: var(--white); }
.crumbs a:hover { color: var(--orange); }
.crumbs [aria-current="page"] { color: var(--on-dark); }

/* long-form reading column (legal pages, About story) */
.prose { max-width: var(--measure); }
.prose h2 { font-size: var(--fs-h3); margin-top: var(--space-l); }
.prose h3 { font-size: var(--fs-h4); margin-top: var(--space-m); }
.prose > :first-child { margin-top: 0; }
.prose ul, .prose ol { padding-left: 1.2em; }


/* --------------------------------------------------------------------------
   13. Cards
   -------------------------------------------------------------------------- */
.card {
  display: flex; flex-direction: column; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius-card); overflow: hidden;
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
}
.card:hover { box-shadow: var(--shadow-2); transform: translateY(-3px); }
.card__media { aspect-ratio: 16 / 10; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card__media img { transform: scale(1.04); }
.card__body { display: flex; flex-direction: column; gap: var(--space-xs); flex: 1; padding: var(--space-m); }
.card__body > * { margin: 0; }
.card__body h3 { font-size: var(--fs-h4); }
.card__foot { margin-top: auto; padding-top: var(--space-xs); border-top: 1px solid var(--line-2); }

/* cards in a row line up part by part (title, short answer, text, link): subgrid.
   --rows = number of parts including the image. */
.card--sub {
  display: grid; grid-template-rows: subgrid; grid-row: span var(--rows, 4);
  row-gap: var(--space-xs); padding-bottom: var(--space-m);
}
.card--sub .card__body { display: contents; }
.card--sub .card__body > * { margin: 0 var(--space-m); }
.card--sub .card__media + .card__body > :first-child { margin-top: var(--space-xs); }
.card--sub .card__foot { margin-top: 0; align-self: start; }
.card--sub .card__body > h3 { align-self: end; }   /* titles sit level when one card has a tag above it */
.card__title { display: grid; justify-items: start; gap: var(--space-2xs); }

/* problems: 3 + 2 on desktop */
.grid-problems { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--space-m); }
.grid-problems > * { grid-column: span 2; }
.grid-problems > :nth-child(4), .grid-problems > :nth-child(5) { grid-column: span 3; }
.grid-problems > :nth-child(n+4) .card__media { aspect-ratio: 16 / 7; }
.card--warn { border-color: var(--orange); border-top: 4px solid var(--orange); }
.card__tag {
  align-self: flex-start; padding: 2px var(--space-2xs); border-radius: var(--radius-badge);
  background: var(--orange-ink); color: var(--white); font-family: var(--font-display);
  font-size: var(--fs-eyebrow); font-weight: var(--fw-extrabold); letter-spacing: .06em; text-transform: uppercase;
}

/* services: one featured card, then three */
.service-feature {
  display: grid; grid-template-columns: 1.1fr 1fr; margin-bottom: var(--space-m);
}
.service-feature .card__media { aspect-ratio: auto; position: relative; min-height: 18rem; }
.service-feature .card__media img { position: absolute; inset: 0; }   /* text sets the card height, photo crops to fit */
.service-feature .card__body { padding: var(--space-l); justify-content: center; }
.service-feature h3 { font-size: var(--fs-h3); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-m); }

/* brands strip */
.brands {
  display: grid; justify-items: center; gap: var(--space-m);
  margin-top: var(--space-l); padding-top: var(--space-m); border-top: 1px solid var(--line);
}
.brands__label {
  font-family: var(--font-display); font-size: var(--fs-eyebrow); font-weight: var(--fw-extrabold);
  letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--muted);
}
.brands ul {
  display: grid; grid-template-columns: repeat(8, 1fr); align-items: center; justify-items: center;
  gap: var(--space-m) var(--space-l); width: 100%; margin: 0; padding: 0;
}
.brands li { list-style: none; margin: 0; display: flex; align-items: center; }
/* manufacturer logos: one height, each in its own original colours */
.brands img { height: 38px; width: auto; max-width: 100%; object-fit: contain; }


/* --------------------------------------------------------------------------
   14. Split layouts + image with an overlapping inset
   -------------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; }
.split--top { align-items: start; }
.split--wide-text { grid-template-columns: 1.15fr .85fr; }

.inset-stack { position: relative; padding: 0 var(--space-l) var(--space-xl) 0; }
.inset-stack__main { aspect-ratio: 4 / 3.4; }
.inset-stack__inset {
  position: absolute; right: 0; bottom: 0; width: 46%; aspect-ratio: 1;
  border: 6px solid var(--white); border-radius: var(--radius-card); box-shadow: var(--shadow-3);
  overflow: hidden;
}
.inset-stack__inset img { width: 100%; height: 100%; object-fit: cover; }
/* inset on the bottom-left corner instead, landscape (S6 checks, S7 altitude) */
.inset-stack--left { padding: 0 0 var(--space-xl) var(--space-l); }
.inset-stack__inset--wide { right: auto; left: 0; width: 45%; aspect-ratio: 16 / 10; }
.inset-stack__chip {
  position: absolute; left: calc(var(--space-s) * -1); top: var(--space-l);
  display: flex; align-items: center; gap: var(--space-xs);
  padding: var(--space-xs) var(--space-s); background: var(--white);
  border-radius: var(--radius-card); box-shadow: var(--shadow-3);
}
.inset-stack__chip .icon { font-size: 28px; color: var(--orange); }
.inset-stack__chip strong { display: block; font-family: var(--font-display); font-weight: var(--fw-extrabold); color: var(--ink); line-height: 1.2; }
.inset-stack__chip span { font-size: var(--fs-xs); color: var(--muted); }

/* numbered steps - vertical, joined by a dashed line */
.steps { margin: 0; padding: 0; list-style: none; position: relative; }
.steps::before {
  content: ""; position: absolute; left: 21px; top: 22px; bottom: 22px; width: 2px;
  background: var(--line); z-index: 0;
}
.steps li { position: relative; display: grid; grid-template-columns: 44px 1fr; gap: var(--space-s); margin: 0 0 var(--space-m); }
.steps li:last-child { margin-bottom: 0; }
.steps__num {
  position: relative; z-index: 1; display: grid; place-items: center; width: 44px; height: 44px;
  border-radius: var(--radius-full); background: var(--black); color: var(--white);
  font-family: var(--font-display); font-weight: var(--fw-extrabold); box-shadow: 0 0 0 6px var(--mist);
}
.section:not(.section--mist) .steps__num { box-shadow: 0 0 0 6px var(--white); }
.steps h3 { font-size: var(--fs-h4); margin: 8px 0 var(--space-3xs); }
.steps p { margin: 0; }

/* one square photo per step, under the split, the step number on the corner */
.step-photos {
  grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-s);
  margin: 0; padding: 0; list-style: none;
}
.step-photos li { position: relative; margin: 0; }
.step-photos img { aspect-ratio: 1; }
.step-photos__num {
  position: absolute; left: var(--space-2xs); top: var(--space-2xs);
  display: grid; place-items: center; width: 36px; height: 36px;
  border-radius: var(--radius-full); background: var(--black); color: var(--white);
  font-family: var(--font-display); font-weight: var(--fw-extrabold); box-shadow: 0 0 0 4px var(--white);
}


/* --------------------------------------------------------------------------
   15. Costs - plain text, no price boxes
   -------------------------------------------------------------------------- */
.cost-lines { margin: 0 0 var(--space-s); padding: 0; list-style: none; }
.cost-lines li { padding: var(--space-xs) 0; margin: 0; border-bottom: 1px solid var(--line); }
.cost-lines li:first-child { border-top: 1px solid var(--line); }

.panel {
  background: var(--mist); border-radius: var(--radius-card); padding: var(--space-l);
}
.panel--dark { background: var(--black); color: var(--on-dark); }
.panel--dark h3 { color: var(--white); }
.x-list, .tick-list { margin: 0 0 var(--space-s); padding: 0; list-style: none; }
.x-list li, .tick-list li {
  display: flex; align-items: flex-start; gap: var(--space-xs); margin: 0; padding: var(--space-2xs) 0;
  font-weight: var(--fw-semibold);
}
.x-list .icon, .tick-list .icon {
  flex: none; width: 24px; height: 24px; padding: 5px; margin-top: 1px;
  border-radius: var(--radius-full); background: var(--orange); color: var(--white); stroke-width: 3;
}
.panel--dark .x-list li { color: var(--white); }
.panel__img { margin-top: var(--space-m); aspect-ratio: 16 / 9; }
/* small photo floated beside the "range is wide" paragraph */
.costs__photo { float: right; width: 168px; height: auto; aspect-ratio: 1; margin: var(--space-3xs) 0 var(--space-xs) var(--space-m); }
.trust-line { display: flex; gap: var(--space-2xs); align-items: center; margin: 0; font-size: var(--fs-sm); }
.trust-line .icon { color: var(--orange); font-size: 1.2em; }


/* --------------------------------------------------------------------------
   16. Google reviews widget - laid out like the Google review widgets
       used on local-service sites: summary bar, card carousel, two buttons
   -------------------------------------------------------------------------- */
.reviews { position: relative; isolation: isolate; overflow: hidden; }
.reviews__bg { position: absolute; inset: 0; z-index: -2; }
.reviews__bg img { width: 100%; height: 100%; object-fit: cover; }
.reviews::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--scrim-strong); }
.reviews h2 { color: var(--white); text-align: center; margin-bottom: var(--space-l); }

.g-summary {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2xs) var(--space-xs);
  padding: var(--space-xs) var(--space-s); margin-bottom: var(--space-s);
  background: #F4F4F4; border-radius: var(--radius-card);
  font-family: var(--font-body); color: #202124;
}
.g-summary__logo { height: 26px; width: auto; }
.g-summary__word { font-weight: var(--fw-bold); font-size: var(--fs-body); }
.g-summary__score { font-weight: var(--fw-bold); }
.g-summary__rule { width: 1px; height: 18px; background: rgba(32,33,36,.4); }
.g-summary__count { font-weight: var(--fw-semibold); }

.stars { display: inline-flex; gap: 1px; color: var(--star); }
.stars .icon { width: 20px; height: 20px; }
.stars .icon--off { color: #DADCE0; }   /* empty star in a 4-star review */
.g-summary .stars .icon { width: 22px; height: 22px; }

.g-carousel { position: relative; }
.g-track {
  display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 2 * var(--space-s)) / 3);
  gap: var(--space-s); overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  scrollbar-width: none; padding: 2px; margin: -2px;
}
.g-track::-webkit-scrollbar { display: none; }
.g-card {
  scroll-snap-align: start; display: flex; flex-direction: column;
  background: #F4F4F4; border-radius: var(--radius-card); padding: var(--space-s);
  font-family: var(--font-body); color: #202124;
}
.g-card__head { display: grid; grid-template-columns: 40px 1fr 20px; gap: var(--space-xs); align-items: center; }
.g-card__avatar {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: var(--radius-full);
  color: var(--white); font-size: 18px; font-weight: var(--fw-regular); line-height: 1;
}
.g-card__name { display: block; font-weight: var(--fw-semibold); font-size: var(--fs-body); line-height: 1.25;
                white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.g-card__date { display: block; font-size: var(--fs-sm); color: var(--g-meta); line-height: 1.3; }
.g-card__g { width: 20px; height: 20px; align-self: start; }
.g-card__rating { display: flex; align-items: center; gap: var(--space-3xs); margin: var(--space-xs) 0 var(--space-2xs); }
.g-card__rating .stars .icon { width: 19px; height: 19px; }
.g-card__verified { width: 17px; height: 17px; color: #1A73E8; }
.g-card__text {
  margin: 0; font-size: var(--fs-body); line-height: 1.5;
}

.g-arrow {
  position: absolute; top: 50%; z-index: 2; display: grid; place-items: center;
  width: 44px; height: 44px; margin-top: -22px; border: 0; border-radius: var(--radius-full);
  background: var(--white); color: #202124; box-shadow: 0 2px 8px rgba(0,0,0,.2); cursor: pointer;
}
.g-arrow--prev { left: -22px; }
.g-arrow--next { right: -22px; }
.g-arrow .icon { width: 18px; height: 18px; }
.g-arrow:disabled { opacity: 0; pointer-events: none; }
.g-dots { display: none; justify-content: center; gap: var(--space-3xs); margin-top: var(--space-s); }
.g-dots button {
  width: 8px; height: 8px; padding: 0; border: 0; border-radius: var(--radius-full);
  background: rgba(255,255,255,.45); cursor: pointer; transition: width var(--ease), background-color var(--ease);
}
.g-dots button[aria-current="true"] { width: 20px; background: var(--orange); }


/* --------------------------------------------------------------------------
   17. Photo band - emergency
   -------------------------------------------------------------------------- */
.band { position: relative; isolation: isolate; color: var(--on-dark); overflow: hidden; }
.band__bg { position: absolute; inset: 0; z-index: -2; }
.band__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--scrim-strong); }
.band h2 { color: var(--white); }
.band__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: var(--space-xl); align-items: center; }
.band__call {
  display: grid; gap: var(--space-xs); justify-items: start;
  padding: var(--space-l); border: 1px solid var(--line-dark); border-radius: var(--radius-card);
  background: rgba(30,40,50,.55);
}
.band__call p { margin: 0; }
/* photo on top of the right column, the phone box overlapping its bottom edge */
.band__photo { aspect-ratio: 3 / 2; box-shadow: var(--shadow-3); }
.band__side .band__call {
  position: relative; margin: calc(var(--space-l) * -1) var(--space-s) 0;
  background: var(--black); box-shadow: var(--shadow-3);
}
.big-phone {
  font-family: var(--font-display); font-size: var(--fs-phone); font-weight: var(--fw-extrabold);
  line-height: 1.05; letter-spacing: var(--ls-tight); color: var(--white); font-variant-numeric: tabular-nums;
}
.big-phone:hover { color: var(--orange); text-decoration: none; }
.alert-icon {
  display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: var(--space-s);
  border-radius: var(--radius-full); background: var(--orange); color: var(--white); font-size: 24px;
}


/* --------------------------------------------------------------------------
   18. Checklist, altitude, areas
   -------------------------------------------------------------------------- */
.checklist { margin: 0 0 var(--space-m); padding: 0; list-style: none; counter-reset: chk; }
.checklist li {
  counter-increment: chk; position: relative; margin: 0 0 var(--space-xs);
  padding: var(--space-s) var(--space-s) var(--space-s) calc(var(--space-s) + 48px);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-card);
}
.checklist li::before {
  content: counter(chk); position: absolute; left: var(--space-s); top: var(--space-s);
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: var(--radius-full);
  background: var(--orange); color: var(--white); font-family: var(--font-display); font-weight: var(--fw-extrabold);
}
.callout {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-s);
  padding: var(--space-s) var(--space-m); background: var(--black); color: var(--white);
  border-radius: var(--radius-card);
}
.callout p { margin: 0; font-weight: var(--fw-semibold); }
.callout + p { margin-top: var(--space-s); }
.sticky-media { position: sticky; top: calc(var(--header-h) + var(--space-m)); }
.sticky-media > img { aspect-ratio: 4 / 5; height: auto; }

.stat-chip {
  display: inline-flex; align-items: baseline; gap: var(--space-2xs);
  padding: var(--space-2xs) var(--space-s); margin-bottom: var(--space-s);
  background: var(--black); color: var(--white); border-radius: var(--radius-card);
}
.stat-chip strong { font-family: var(--font-display); font-size: var(--fs-stat); font-weight: var(--fw-extrabold); color: var(--orange); }
.stat-chip span { font-size: var(--fs-sm); color: var(--on-dark); }
.parts { position: relative; }
.parts > img { aspect-ratio: 1; }
.parts-list { margin: var(--space-s) 0 0; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xs); }
.parts-list li {
  display: grid; grid-template-columns: 28px 1fr; gap: var(--space-2xs); margin: 0;
  padding: var(--space-xs); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-card);
  font-size: var(--fs-sm);
}
.parts-list b {
  display: grid; place-items: center; width: 28px; height: 28px; border-radius: var(--radius-full);
  background: var(--orange); color: var(--white); font-family: var(--font-display); font-size: var(--fs-xs);
}
.sources { font-size: var(--fs-xs); color: var(--muted); font-style: italic; }

.areas-intro { gap: var(--space-l); }
.areas-intro__photo { aspect-ratio: 4 / 3; }
.areas-route { gap: var(--space-l); }
.areas-route > p { margin: 0; }
.areas-banner { aspect-ratio: 21 / 9; }
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-s); margin-block: var(--space-m); }
.area-card .card__media { aspect-ratio: 4 / 3; }
.area-card .card__body { padding: var(--space-s); gap: var(--space-2xs); }
.area-card--text { grid-column: span 2; background: var(--mist); }
.area-card--text .card__body { flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: space-between; }
.zips { display: flex; flex-wrap: wrap; gap: var(--space-3xs); margin: 0; padding: 0; list-style: none; }
.zips li {
  margin: 0; padding: 2px var(--space-2xs); border: 1px solid var(--line); border-radius: var(--radius-badge);
  background: var(--white); font-size: var(--fs-xs); font-weight: var(--fw-semibold); color: var(--ink-3);
  font-variant-numeric: tabular-nums;
}
.area-card h3 { display: flex; align-items: center; gap: var(--space-3xs); }
.area-card h3 .icon { color: var(--orange); }


/* --------------------------------------------------------------------------
   19. FAQ - sticky contact card + accordion
   -------------------------------------------------------------------------- */
.faq-grid { display: grid; grid-template-columns: 5fr 7fr; gap: var(--space-xl); align-items: start; }
.faq-aside { position: sticky; top: calc(var(--header-h) + var(--space-m)); }
.faq-aside__photo { aspect-ratio: 4 / 3; margin-top: var(--space-m); }
/* short screens: a wider crop keeps the sticky aside's call button in view */
@media (min-width: 900px) and (max-height: 919px) { .faq-aside__photo { aspect-ratio: 21 / 9; } }
.contact-card {
  margin-top: var(--space-m); padding: var(--space-m); background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius-card);
}
.contact-card > * { margin: 0 0 var(--space-xs); }
.contact-card > :last-child { margin-bottom: 0; }
.faq-list { display: grid; gap: var(--space-xs); }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-card); transition: border-color var(--ease); }
.faq-item[open] { border-color: rgba(250,90,10,.45); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-s);
  min-height: 64px; padding: var(--space-xs) var(--space-m); cursor: pointer; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 { margin: 0; font-size: var(--fs-h4); }
.faq-item__icon {
  flex: none; display: grid; place-items: center; width: 32px; height: 32px;
  border-radius: var(--radius-control); background: var(--orange-soft); color: var(--orange);
  transition: background-color var(--ease), color var(--ease);
}
.faq-item__icon svg { transition: transform var(--ease); }
.faq-item[open] .faq-item__icon { background: var(--orange); color: var(--white); }
.faq-item[open] .faq-item__icon svg { transform: rotate(45deg); }
.faq-item__body { padding: 0 var(--space-m) var(--space-m); display: grid; gap: var(--space-xs); }
.faq-item__body > * { margin: 0; }


/* --------------------------------------------------------------------------
   20. Final CTA - photo card straddling the footer edge
   -------------------------------------------------------------------------- */
.cta-wrap { position: relative; background: var(--black); padding-top: var(--space-xl); }  /* room for the cutout's head */
.cta-wrap::before { content: ""; position: absolute; inset: 0 0 45% 0; background: var(--sand); } /* continues the FAQ section above */
.cta-card {
  position: relative; isolation: isolate; border-radius: var(--radius-card);
  padding: var(--space-xl) var(--space-xl); color: var(--on-dark);
  background: var(--ink-2); border: 1px solid var(--line-dark);   /* flat dark, a shade off the footer */
}
/* technician cutout on the right, pointing at the heading; head breaks out of the card top */
.cta-card__cutout {
  position: absolute; right: var(--space-l); bottom: 0; z-index: -1;
  height: calc(100% + var(--space-xl)); width: auto; pointer-events: none;
}
.cta-card__content { max-width: min(48rem, 64%); }
.cta-card__content .text-lead { color: var(--on-dark); max-width: 40rem; }
.cta-card__content .btn-row { margin: var(--space-m) 0; }
.cta-card__meta { display: block; margin: 0 0 var(--space-3xs); font-style: normal; font-size: var(--fs-sm); color: var(--on-dark); }
.cta-card__meta strong { color: var(--white); }
/* trust badges supplied by the owner, sitting straight on the dark photo */
.cta-badges {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-s) var(--space-l);
  margin: var(--space-m) 0 0; padding: 0; list-style: none;
}
.cta-badges li { margin: 0; }
.cta-badges img { height: 56px; width: auto; }
.cta-card h2 { color: var(--white); }
.cta-card p { color: var(--on-dark); }
.cta-card address { font-style: normal; }


/* --------------------------------------------------------------------------
   21. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--black); color: var(--on-dark); font-size: var(--fs-sm); padding-top: var(--space-2xl); }
.footer-grid { display: grid; grid-template-columns: 4fr 2.4fr 2.6fr 3.4fr; gap: var(--space-l); }
.site-footer h2 { font-size: var(--fs-h4); color: var(--white); margin-bottom: var(--space-s); }
.site-footer a:not(.btn) { color: var(--on-dark); }
.site-footer a:not(.btn):hover { color: var(--white); }   /* buttons keep their own white text */
.footer-logo { height: 52px; width: auto; margin-bottom: var(--space-s); }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin: 0; }
.footer-links a { display: inline-flex; align-items: center; gap: var(--space-2xs); min-height: 40px; }
.footer-links .icon { color: var(--orange); font-size: .8em; transition: transform var(--ease); }
.footer-links a:hover { text-decoration: none; }
.footer-links a:hover .icon { transform: translateX(3px); }
.nap { font-style: normal; display: grid; gap: var(--space-xs); margin-bottom: var(--space-s); }
.nap__row { display: grid; grid-template-columns: 36px 1fr; gap: var(--space-xs); align-items: center; }
.nap__ic {
  display: grid; place-items: center; width: 36px; height: 36px; border-radius: var(--radius-full);
  background: var(--orange); color: var(--white);
}
.nap__label { display: block; font-size: var(--fs-xs); letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.nap__val, .site-footer a.nap__val { display: block; color: var(--white); font-weight: var(--fw-semibold); }
.hours-card { border: 1px solid var(--line-dark); background: rgba(255,255,255,.05); border-radius: var(--radius-card); padding: var(--space-3xs) var(--space-s); }
.hours-card div { display: flex; justify-content: space-between; gap: var(--space-s); padding: var(--space-2xs) 0; }
.hours-card div + div { border-top: 1px solid var(--line-dark); }
.hours-card dt { margin: 0; }
.hours-card dd { margin: 0; color: var(--white); font-weight: var(--fw-semibold); text-align: right; }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-xs);
  margin-top: var(--space-xl); padding-block: var(--space-m); border-top: 1px solid var(--line-dark);
  font-size: var(--fs-xs); color: rgba(255,255,255,.6);
}
.footer-bottom ul { display: flex; gap: var(--space-s); margin: 0; padding: 0; list-style: none; }
.footer-bottom li { margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.6); }


/* --------------------------------------------------------------------------
   22. Mobile call bar
   -------------------------------------------------------------------------- */
.callbar { display: none; }


/* --------------------------------------------------------------------------
   23. Responsive
   -------------------------------------------------------------------------- */
/* narrow desktop: tighten the header so nav + call button stay on one line */
@media (min-width: 1100px) and (max-width: 1279px) {
  .site-header__in { gap: var(--space-s); }
  .nav__link { padding-inline: var(--space-2xs); }
  .site-header__cta.btn--call { font-size: var(--fs-btn); }
}
@media (max-width: 1099px) {
  .nav, .site-header__cta { display: none; }
  .burger { display: grid; }
  .site-header__in { min-height: 68px; }
  .logo img, .site-header.is-scrolled .logo img { height: 42px; }
  .hero__grid { grid-template-columns: minmax(0, 1fr) 400px; gap: var(--space-l); }
  .g-track { grid-auto-columns: calc((100% - var(--space-s)) / 2); }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 899px) {
  :root { --header-offset: 80px; }
  .topbar__hide-m { display: none !important; }
  .topbar__in { justify-content: center; }
  .hero__grid { grid-template-columns: 1fr; padding-block: var(--space-xl) var(--space-xl); }
  .hero::before { background: var(--scrim-strong); }
  .quote-card { max-width: 480px; width: 100%; margin-inline: auto; }
  .grid-problems { grid-template-columns: 1fr 1fr; }
  .grid-problems > *, .grid-problems > :nth-child(4), .grid-problems > :nth-child(5) { grid-column: auto; }
  .grid-problems > :nth-child(5) { grid-column: 1 / -1; }
  .grid-problems > :nth-child(n+4) .card__media { aspect-ratio: 16 / 10; }
  .service-feature { grid-template-columns: 1fr; }
  .service-feature .card__media { aspect-ratio: 16 / 9; }
  .service-feature .card__body { padding: var(--space-m); }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .split, .split--wide-text, .band__grid, .faq-grid { grid-template-columns: 1fr; }
  .split > .order-first-m { order: -1; }
  .sticky-media, .faq-aside { position: static; }
  .sticky-media.inset-stack { position: relative; top: auto; }   /* keeps the S6 inset anchored */
  .sticky-media > img { aspect-ratio: 16 / 10; }
  .inset-stack__inset--wide { width: 40%; }
  .faq-aside .contact-card, .faq-aside__photo { display: none; }
  .contact-card--after { display: block; }
  .cta-card { padding: var(--space-l) var(--space-m); }
  .cta-wrap { padding-top: 0; }
  .cta-card__cutout { display: none; }
  .cta-card__content { max-width: none; }
  .callbar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xs);
    padding: var(--space-2xs) var(--space-xs) calc(var(--space-2xs) + env(safe-area-inset-bottom));
    background: var(--white); border-top: 1px solid var(--line); box-shadow: 0 -4px 16px rgba(30,40,50,.08);
    transform: translateY(110%); transition: transform .2s ease;
  }
  .callbar.is-shown { transform: none; }
  .callbar .btn { padding-inline: var(--space-xs); }
  body { padding-bottom: 76px; }
}

@media (min-width: 900px) {
  .contact-card--after { display: none; }
}

@media (max-width: 699px) {
  .cta-badges { gap: var(--space-xs); }
  .cta-badges img { height: 38px; }
  .hero__rating img { height: 32px; }
  .cta-card .btn-row .btn { flex: 1 1 100%; }
  .brands ul { grid-template-columns: repeat(4, 1fr); }
  .g-track { grid-auto-columns: calc(100% - 40px); }
  .g-arrow { display: none; }
  .g-dots { display: flex; }
  .g-summary { justify-content: flex-start; }
  .g-summary__rule { display: none; }
  .grid-problems, .grid-3 { grid-template-columns: 1fr; }
  .grid-problems > :nth-child(5) { grid-column: auto; }
  .parts-list { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr 1fr; gap: var(--space-xs); }
  .area-card--text { grid-column: 1 / -1; }
  .inset-stack { padding: 0 var(--space-s) var(--space-l) 0; }
  .inset-stack--left { padding: 0 0 var(--space-l) var(--space-s); }
  .inset-stack__inset--wide { border-width: 4px; }
  .step-photos { grid-template-columns: 1fr 1fr; gap: var(--space-xs); }
  .band__side .band__call { margin-inline: 0; }
  .areas-banner { aspect-ratio: 16 / 9; }
  .costs__photo { width: 112px; margin-left: var(--space-s); }
  .inset-stack__chip { left: var(--space-2xs); top: var(--space-2xs); padding: var(--space-2xs) var(--space-xs); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child, .footer-grid > :last-child { grid-column: 1 / -1; }
  .hero .btn-row .btn { flex: 1 1 100%; }
}

@media (max-width: 420px) {
  .area-grid { grid-template-columns: 1fr; }
}


/* --------------------------------------------------------------------------
   Page: About page
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   About us (/about-us/) - page-only pieces. Merge into style.css.
   Everything else on the page uses existing components.
   -------------------------------------------------------------------------- */

/* hero: the lit house stays right, the sky behind the text */
.about-hero .page-hero__bg img { object-position: 75% center; }

/* two cards side by side (since 2020 + altitude, technicians + brands) */
.about-duo { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-m); align-items: stretch; }
.about-card:hover { transform: none; }                 /* content cards, not links */
.about-card .card__body { padding: var(--space-l); }
.about-card .card__body > .eyebrow-pill { align-self: flex-start; }
.about-card h2 { font-size: var(--fs-h3); }

/* the one line that sums up section A1 */
.about-point {
  padding: var(--space-s) var(--space-m); margin: 0;
  background: var(--orange-soft); border-radius: var(--radius-card);
  color: var(--ink-2); font-weight: var(--fw-semibold);
}

/* price panel: the two ranges */
.about-price { padding: var(--space-m); margin-bottom: var(--space-s); }
.about-price p { margin: 0; color: var(--ink-2); }
.about-price strong { color: var(--orange-ink); }

/* shield + licensed-and-insured line */
.about-lead-line { display: flex; align-items: flex-start; gap: var(--space-xs); }
.about-lead-line .icon {
  width: 32px; height: 32px; padding: var(--space-2xs); flex: none;
  border-radius: var(--radius-full); background: var(--orange); color: var(--white);
}

/* brand logos, 4 x 2 in the card */
.about-brands {
  display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; justify-items: center;
  gap: var(--space-m) var(--space-s); margin: var(--space-2xs) 0; padding: var(--space-m) var(--space-s);
  list-style: none; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-card);
}
.about-brands li { margin: 0; }
.about-brands img { height: 32px; width: auto; max-width: 100%; object-fit: contain; }
.about-brands__names { font-size: var(--fs-sm); color: var(--muted); }

/* town links as pills */
.about-towns { display: flex; flex-wrap: wrap; gap: var(--space-2xs); margin: 0 0 var(--space-s); padding: 0; list-style: none; }
.about-towns li { margin: 0; }
.about-towns a {
  display: inline-flex; align-items: center; gap: var(--space-3xs); min-height: 40px;
  padding: var(--space-3xs) var(--space-s); border: 1px solid var(--line); border-radius: var(--radius-full);
  background: var(--white); font-family: var(--font-display); font-size: var(--fs-sm);
  font-weight: var(--fw-bold); color: var(--ink);
  transition: border-color var(--ease), color var(--ease);
}
.about-towns a:hover { border-color: var(--orange); color: var(--orange-ink); text-decoration: none; }
.about-towns .icon { color: var(--orange); }
.about-zips-title { font-size: var(--fs-h4); margin-top: var(--space-m); }
.about-zips { margin-bottom: var(--space-s); }
.about-area-photo { aspect-ratio: 1; height: auto; object-position: 40% center; }

/* final CTA: follows a white section, not the sand FAQ */
.cta-wrap--after-white::before { background: var(--white); }
.about-nap { margin: 0 0 var(--space-s); font-size: var(--fs-lead); color: var(--on-dark); }
.cta-card .about-nap strong { color: var(--white); }
.about-cta-link { margin: var(--space-s) 0 0; }
.cta-card .arrow-link { color: var(--white); }
.cta-card .arrow-link:hover { color: var(--orange); }

/* our process: 4 cards in a row, numbered circles joined by one line */
.about-process {
  --num: var(--tap);
  position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-m); margin: 0; padding: 0; list-style: none; counter-reset: none;
}
.about-process::before {                               /* connector: first circle to last */
  content: ""; position: absolute; z-index: 0; height: 2px;
  top: calc(var(--num) / 2 - 1px); left: 12.5%; right: 12.5%;
  background: var(--orange);
}
.about-process__step { position: relative; display: flex; flex-direction: column; align-items: center; gap: var(--space-s); margin: 0; }
.about-process__num {
  position: relative; z-index: 1; display: grid; place-items: center; flex: none;
  width: var(--num); height: var(--num); border-radius: var(--radius-full);
  background: var(--black); color: var(--white); box-shadow: 0 0 0 6px var(--mist);
  font-family: var(--font-display); font-size: var(--fs-h4); font-weight: var(--fw-extrabold);
}
.about-process__step:last-child .about-process__num { background: var(--orange); }
.about-process__card {
  display: flex; flex-direction: column; gap: var(--space-2xs); flex: 1; width: 100%;
  padding: var(--space-m); background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius-card); box-shadow: var(--shadow-1);
}
.about-process__card > * { margin: 0; }
.about-process__ic {
  display: grid; place-items: center; width: var(--tap); height: var(--tap);
  border-radius: var(--radius-full); background: var(--orange-soft); color: var(--orange); font-size: var(--fs-h4);
}
.about-process__card h3 { font-size: var(--fs-h4); margin-top: var(--space-3xs); }
.about-process__card p { font-size: var(--fs-sm); }

/* sample team (PLACEHOLDER-TEAM, preview only): 3 / 2 / scroll-snap */
.about-team {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-m);
  margin: 0; padding: 0; list-style: none;
}
.about-team__card {
  display: flex; flex-direction: column; margin: 0; overflow: hidden;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-card);
  transition: box-shadow var(--ease), border-color var(--ease);
}
.about-team__card:hover { box-shadow: var(--shadow-2); border-color: var(--orange-soft); }
.about-team__photo { display: block; width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; object-position: center 40%; background: var(--mist); }
.about-team__body { display: flex; flex-direction: column; gap: var(--space-2xs); padding: var(--space-m); }
.about-team__body > * { margin: 0; }
.about-team__body h3 { font-size: var(--fs-h3); }
.about-team__role {
  align-self: flex-start; padding: var(--space-3xs) var(--space-xs); border-radius: var(--radius-full);
  background: var(--orange-soft); color: var(--orange-ink);
  font-family: var(--font-display); font-size: var(--fs-eyebrow); font-weight: var(--fw-extrabold);
  letter-spacing: var(--ls-wide); text-transform: uppercase; line-height: var(--lh-snug);
}
.about-team__body p:last-child { font-size: var(--fs-sm); }

@media (max-width: 1099px) {
  .about-process { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: var(--space-l); }
  .about-process::before { display: none; }
}

@media (max-width: 899px) {
  .about-duo { grid-template-columns: 1fr; }
  .about-area-photo { aspect-ratio: 16 / 10; }
  .about-team { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 699px) {
  .about-card .card__body { padding: var(--space-m); }
  .about-hero .btn-row .btn { flex: 1 1 100%; }

  /* process: stacked, circle left, one vertical line down the circles */
  .about-process { grid-template-columns: 1fr; row-gap: var(--space-s); }
  .about-process::before { display: none; }
  .about-process__step:not(:last-child)::after {       /* segment: this circle to the next */
    content: ""; position: absolute; z-index: 0; width: 2px;
    left: calc(var(--num) / 2 - 1px); top: calc(var(--num) / 2); bottom: calc(var(--space-s) * -1 - var(--num) / 2);
    background: var(--orange);
  }
  .about-process__step { flex-direction: row; align-items: flex-start; gap: var(--space-xs); }
  .about-process__card { padding: var(--space-s); }
  .about-process__ic { display: none; }                 /* the number carries the step on a phone */
  .about-process__card h3 { margin-top: 0; }

  /* team: horizontal scroll-snap, next card peeks in */
  .about-team {
    grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 80%;
    gap: var(--space-s); overflow-x: auto; overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter);
    margin-inline: calc(var(--gutter) * -1); padding: 0 var(--gutter) var(--space-xs);
  }
  .about-team__card { scroll-snap-align: start; }
  .about-team__body { padding: var(--space-s); }
}


/* --------------------------------------------------------------------------
   Page: Contact page
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   Contact page (/contact/). Only what style.css does not already have.
   Uses: .page-hero, .crumbs, .card, .quote-card, .checklist, .zips, .panel,
   .alert-icon, .big-phone, .section--dark from style.css.
   -------------------------------------------------------------------------- */

/* hero: the phone button is the biggest thing on the page */
.contact-hero .contact-hero__call { font-size: var(--fs-stat); }
.contact-hero .eyebrow-pill { margin-bottom: var(--space-s); }
.contact-hero .page-hero__lead strong { color: var(--white); }
.contact-hero__hours { margin-top: var(--space-s); flex-wrap: nowrap; align-items: flex-start; }
.contact-hero__hours .icon { margin-top: var(--space-3xs); }
/* copy left, van photo right (the van carries the logo and number, so it is
   shown as a photo rather than behind the text) */
.contact-hero__grid {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: var(--space-xl); align-items: center; padding-block: var(--space-xl);
}
.contact-hero__photo { aspect-ratio: 3 / 2; height: auto; box-shadow: var(--shadow-3); }

/* two columns: contact methods left, LeadSmart form right */
.contact-layout {
  display: grid; grid-template-columns: minmax(0, 1fr) 440px;
  gap: var(--space-xl); align-items: start;
}
.contact-methods { display: grid; gap: var(--space-m); }
.contact-quote {
  position: sticky; top: calc(var(--header-h) + var(--space-m));
  border: 1px solid var(--line); box-shadow: var(--shadow-3);
}

/* the "Call us" cards: phone + hours side by side, emergency full width */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-s); }
.contact-method:hover, .contact-block:hover { transform: none; box-shadow: var(--shadow-1); }
.contact-method h3 { font-size: var(--fs-h4); }
.contact-method__ic {
  display: grid; place-items: center; flex: none;
  width: var(--tap); height: var(--tap); border-radius: var(--radius-full);
  background: var(--orange-soft); color: var(--orange); font-size: var(--fs-h4);
}
.contact-method__phone {
  font-family: var(--font-display); font-size: var(--fs-stat); font-weight: var(--fw-extrabold);
  line-height: 1.1; letter-spacing: var(--ls-tight); color: var(--ink); font-variant-numeric: tabular-nums;
}
.contact-method__phone:hover { color: var(--orange-2); text-decoration: none; }
.contact-method .btn { align-self: flex-start; margin-top: auto; }

.contact-hours { margin: 0; }
.contact-hours div {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-3xs) var(--space-s);
  padding: var(--space-2xs) 0; border-bottom: 1px solid var(--line-2);
}
.contact-hours div:first-child { padding-top: 0; }
.contact-hours dt { color: var(--ink-3); font-weight: var(--fw-semibold); }
.contact-hours dd { margin: 0; color: var(--ink-2); font-weight: var(--fw-bold); font-variant-numeric: tabular-nums; }

.contact-method--emergency { grid-column: 1 / -1; background: var(--orange-soft); border-color: var(--orange-soft); }
.contact-method--emergency .card__body { flex-direction: row; align-items: flex-start; gap: var(--space-s); }
.contact-method--emergency .contact-method__ic { background: var(--orange); color: var(--white); }
.contact-method--emergency h3 { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2xs); margin-bottom: var(--space-2xs); }
.contact-method--emergency p { margin: 0; color: var(--ink-2); }
.contact-method__tag {
  padding: var(--space-3xs) var(--space-2xs); border-radius: var(--radius-badge);
  background: var(--orange); color: var(--white);
  font-size: var(--fs-xs); letter-spacing: .04em; text-transform: uppercase;
}

/* "Location" and "Areas we cover": icon left, content right */
.contact-block .card__body { flex-direction: row; align-items: flex-start; gap: var(--space-s); }
.contact-block .card__body > div > * { margin: 0 0 var(--space-xs); }
.contact-block .card__body > div > :last-child { margin-bottom: 0; }
.contact-block h2 { font-size: var(--fs-h3); }
.contact-address { font-style: normal; color: var(--ink-2); line-height: var(--lh-body); }

.contact-towns { display: flex; flex-wrap: wrap; gap: var(--space-2xs); padding: 0; list-style: none; }
.contact-towns li { margin: 0; }
.contact-towns a {
  display: inline-flex; align-items: center; min-height: 40px;
  padding: var(--space-3xs) var(--space-s); border: 1px solid var(--line); border-radius: var(--radius-full);
  background: var(--mist); color: var(--ink-2); font-size: var(--fs-sm); font-weight: var(--fw-semibold);
  transition: border-color var(--ease), color var(--ease);
}
.contact-towns a:hover { border-color: var(--orange); color: var(--orange-ink); text-decoration: none; }

/* what to have ready */
.contact-ready__photo { aspect-ratio: 4 / 3; height: auto; object-position: 30% center; }
.checklist + .btn { margin-top: 0; }

/* gas warning: orange tint, heading and steps side by side */
.gas-panel {
  display: grid; grid-template-columns: 5fr 7fr; gap: var(--space-l); align-items: start;
  background: var(--orange-soft);
}
.gas-panel h2 { margin-bottom: var(--space-2xs); }
.gas-panel .text-lead { margin-bottom: var(--space-s); }
.gas-panel__steps { margin: 0; }
.gas-panel__steps li:last-child { margin-bottom: 0; }

/* final call */
.contact-final__in { display: grid; justify-items: center; gap: var(--space-s); text-align: center; }
.contact-final__in > * { margin: 0; }
.contact-final__phone { font-size: inherit; }
.contact-final__phone .big-phone { display: inline-flex; align-items: center; gap: var(--space-xs); }
.contact-final__phone .icon { color: var(--orange); font-size: .8em; }
.contact-final__links { justify-content: center; gap: var(--space-2xs) var(--space-l); }
.contact-final__links .icon { margin: 0 var(--space-3xs) 0 0; }

/* responsive */
@media (max-width: 1099px) {
  .contact-layout { grid-template-columns: minmax(0, 1fr) 400px; gap: var(--space-l); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 899px) {
  .contact-hero__grid { grid-template-columns: 1fr; gap: var(--space-l); padding-block: var(--space-l) var(--space-xl); }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-quote { position: static; max-width: 480px; width: 100%; margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .gas-panel { grid-template-columns: 1fr; }
}
@media (max-width: 699px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-hero .btn-row .btn { flex: 1 1 100%; }
  .contact-block .card__body, .contact-method--emergency .card__body { flex-direction: column; }
  .gas-panel { padding: var(--space-m); }
}


/* --------------------------------------------------------------------------
   Page: Legal pages (Privacy Policy)
   -------------------------------------------------------------------------- */
/* ==========================================================================
   Legal pages (Privacy Policy, Terms). Loaded after style.css.
   Plain hero (11b) + sticky table of contents + .prose reading column.
   ========================================================================== */

/* hero meta: "Last updated" and "Operated by" */
.legal-meta { display: flex; flex-wrap: wrap; gap: var(--space-2xs) var(--space-l); margin: var(--space-s) 0 0; font-size: var(--fs-sm); }
.legal-meta > div { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-3xs) var(--space-2xs); }
.legal-meta dt { font-weight: var(--fw-semibold); color: var(--white); }
.legal-meta dd { margin: 0; color: var(--on-dark); }

/* owner placeholder: a value still to be confirmed before launch */
.ph {
  display: inline-block;
  padding: 0 var(--space-2xs);
  border: 1px dashed var(--orange);
  border-radius: var(--radius-control);
  background: var(--orange-soft);
  color: var(--orange-ink);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-snug);
  overflow-wrap: anywhere;
}

/* layout: TOC column + reading column */
.legal__grid { display: grid; gap: var(--space-l); align-items: start; }
.legal__body { min-width: 0; }
@media (min-width: 900px) {
  .legal__grid { grid-template-columns: 15.5rem minmax(0, 1fr); gap: var(--space-2xl); }
  .legal__aside { position: sticky; top: calc(var(--header-h) + var(--space-m)); }
}

/* table of contents */
.toc { background: var(--mist); border-radius: var(--radius-card); }
.toc__head {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-xs);
  min-height: var(--tap);
  padding: var(--space-2xs) var(--space-s);
  font-family: var(--font-display); font-size: var(--fs-eyebrow); font-weight: var(--fw-extrabold);
  letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--ink);
  list-style: none; cursor: pointer;
}
.toc__head::-webkit-details-marker { display: none; }
.toc__head .icon { transition: transform var(--ease); }
.toc[open] .toc__head .icon { transform: rotate(180deg); }
.toc__list { margin: 0; padding: 0 var(--space-2xs) var(--space-2xs); list-style: none; counter-reset: none; }
.toc__list li { margin: 0; }
.toc__list a {
  display: flex; align-items: baseline; gap: var(--space-2xs);
  padding: var(--space-3xs) var(--space-2xs);
  border-radius: var(--radius-control);
  font-size: var(--fs-sm); line-height: var(--lh-snug); color: var(--ink-3);
  transition: background-color var(--ease), color var(--ease);
}
.toc__list a:hover { background: var(--white); color: var(--ink); text-decoration: none; }
.toc__n {
  flex: none; min-width: 1.6em;
  font-family: var(--font-display); font-size: var(--fs-xs); font-weight: var(--fw-extrabold);
  font-variant-numeric: tabular-nums; color: var(--muted);
}
.toc__list a[aria-current] { background: var(--white); color: var(--ink); font-weight: var(--fw-semibold); box-shadow: var(--shadow-1); }
.toc__list a[aria-current] .toc__n { color: var(--orange-ink); }

@media (min-width: 900px) {
  .toc { background: transparent; }
  .toc__head { min-height: 0; padding: 0 var(--space-2xs) var(--space-xs); cursor: default; pointer-events: none; }
  .toc__head .icon { display: none; }
  .toc__list { padding: 0; }
  .toc__list a { padding-block: var(--space-2xs); }
  .toc__list a:hover { background: var(--mist); }
  .toc__list a[aria-current] { background: var(--orange-soft); box-shadow: none; }
}

/* sections */
.legal-sec { scroll-margin-top: var(--header-offset); }
.legal-sec + .legal-sec { margin-top: var(--space-l); padding-top: var(--space-l); border-top: 1px solid var(--line); }
.legal__body .legal-sec h2 { margin-top: 0; }
.legal-sec__n { color: var(--orange-ink); font-variant-numeric: tabular-nums; }
.legal-sec > :last-child { margin-bottom: 0; }

/* 1. the short version: a summary card */
.legal-summary {
  margin: 0; padding: var(--space-m) var(--space-m) var(--space-m) calc(var(--space-m) + 1.15em);
  background: var(--sand); border-radius: var(--radius-card);
}
.legal-summary li { padding-left: var(--space-3xs); }
.legal-summary li::marker { color: var(--orange); }
.legal-summary li + li { margin-top: var(--space-2xs); }

.legal__body ul li::marker { color: var(--orange); }

/* "We do not sell your personal information." */
.legal-note {
  display: inline-block;
  padding: var(--space-2xs) var(--space-s);
  background: var(--blue-soft); border-radius: var(--radius-card);
}

/* tables */
.legal-table { margin: 0 0 var(--space-m); border: 1px solid var(--line); border-radius: var(--radius-card); overflow: hidden; }
.legal-table table { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); line-height: 1.5; }
.legal-table th, .legal-table td { padding: var(--space-xs) var(--space-s); text-align: left; vertical-align: top; }
.legal-table thead th {
  background: var(--mist); color: var(--ink);
  font-family: var(--font-display); font-size: var(--fs-eyebrow); font-weight: var(--fw-extrabold);
  letter-spacing: var(--ls-wide); text-transform: uppercase;
}
.legal-table tbody tr + tr td { border-top: 1px solid var(--line-2); }
.legal-table td:first-child { color: var(--ink-2); font-weight: var(--fw-semibold); }

/* phones: each row becomes a small labelled card */
@media (max-width: 599px) {
  .legal-table { border: 0; border-radius: 0; overflow: visible; }
  .legal-table table, .legal-table tbody, .legal-table tr, .legal-table td { display: block; }
  .legal-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .legal-table tr { padding: var(--space-xs) var(--space-s); border: 1px solid var(--line); border-radius: var(--radius-card); }
  .legal-table tr + tr { margin-top: var(--space-2xs); }
  .legal-table td { padding: var(--space-3xs) 0; }
  .legal-table tbody tr + tr td { border-top: 0; }
  .legal-table td::before {
    content: attr(data-label);
    display: block;
    font-family: var(--font-display); font-size: var(--fs-eyebrow); font-weight: var(--fw-extrabold);
    letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--muted);
  }
  .legal-table td:first-child::before { display: none; }
  .legal-table td:first-child { font-size: var(--fs-body); }
}

/* partner privacy policies: link chips */
.legal__body ul.legal-links { display: flex; flex-wrap: wrap; gap: var(--space-2xs); padding: 0; list-style: none; }
.legal-links li { margin: 0; padding: var(--space-3xs) var(--space-xs); background: var(--blue-soft); border-radius: var(--radius-control); font-size: var(--fs-sm); }
.legal-links a { font-weight: var(--fw-semibold); }

/* the referral-disclosure note sits above its paragraph */
.legal-sec > .legal-note:first-of-type:not(:last-child) { margin-bottom: var(--space-s); }

/* rights list */
.legal-rights { padding-left: 1.2em; }
.legal-rights li + li { margin-top: var(--space-2xs); }
.legal-tel { font-weight: var(--fw-bold); white-space: nowrap; }

/* 12. contact */
.legal-nap { font-style: normal; }
.legal-nap__line { display: inline-flex; flex-wrap: wrap; align-items: center; gap: var(--space-3xs) var(--space-2xs); margin-top: var(--space-3xs); }
.legal-nap__line .icon { color: var(--orange); }
.legal-nap__line a { font-weight: var(--fw-bold); white-space: nowrap; }

/* closing call card */
.legal-cta {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-s) var(--space-m);
  margin-top: var(--space-xl);
  padding: var(--space-m);
  background: var(--black); color: var(--on-dark);
  border-radius: var(--radius-card);
}
.legal-cta__ic {
  flex: none; display: grid; place-items: center;
  width: var(--tap); height: var(--tap);
  border-radius: var(--radius-full);
  background: var(--line-dark); color: var(--orange);
  font-size: var(--fs-h4);
}
.legal-cta__text { flex: 1 1 14rem; margin: 0; font-size: var(--fs-lead); line-height: var(--lh-snug); }
.legal-cta__text strong { display: block; color: var(--white); font-family: var(--font-display); font-weight: var(--fw-extrabold); }
@media (max-width: 599px) {
  .legal-cta .btn { width: 100%; justify-content: center; }
}


/* --------------------------------------------------------------------------
   Page templates: single service (/emergency-furnace-repair-littleton/ etc.)
   and single service area (/furnace-repair-centennial-co/ etc.).
   One column, no sidebars. Shell and hero are shared; the middle of the page
   is built from the blocks below plus existing ones (.checklist, .callout,
   .cost-lines, .about-process, .faq-list, .brands, .zips, .about-towns).
   Reference builds: emergency-furnace-repair-littleton/ (service) and
   furnace-repair-centennial-co/ (area). Block map:
   _source/templates/page-templates.md
   -------------------------------------------------------------------------- */

/* hero: the home hero (copy + LeadSmart form card) with a breadcrumb */
.tpl-hero .crumbs ol { margin-bottom: var(--space-xs); }
.tpl-hero .hero__grid { padding-block: var(--space-m) var(--space-xl); }
.tpl-hero .eyebrow-pill { margin-bottom: var(--space-xs); }

/* four facts under the hero */
.fact-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.fact-strip__list {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--space-s);
  margin: 0; padding: var(--space-m) 0; list-style: none;
}
.fact-strip__list li { display: flex; align-items: flex-start; gap: var(--space-xs); margin: 0; }
.fact-strip__ic {
  flex: none; display: grid; place-items: center; width: 44px; height: 44px;
  border-radius: var(--radius-full); background: var(--orange-soft); color: var(--orange); font-size: 20px;
}
.fact-strip strong { display: block; font-family: var(--font-display); font-weight: var(--fw-extrabold); color: var(--ink); line-height: 1.25; }
.fact-strip__txt { display: block; font-size: var(--fs-sm); color: var(--muted); line-height: var(--lh-snug); margin-top: 2px; }

/* two lists side by side: "call now" vs "can wait" */
.duo-lists { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-m); }
.list-card {
  padding: var(--space-l); background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius-card); box-shadow: var(--shadow-1);
}
.list-card--alert { border-top: 4px solid var(--orange); }
.list-card--calm { border-top: 4px solid var(--blue); }
.list-card__head { display: flex; align-items: center; gap: var(--space-xs); margin-bottom: var(--space-s); }
.list-card__head h3 { margin: 0; font-size: var(--fs-h3); }
.list-card__ic {
  flex: none; display: grid; place-items: center; width: 40px; height: 40px;
  border-radius: var(--radius-full); color: var(--white); font-size: 20px;
}
.list-card--alert .list-card__ic { background: var(--orange); }
.list-card--calm .list-card__ic { background: var(--blue); }
.list-card ul { margin: 0; padding: 0; list-style: none; }
.list-card li { position: relative; margin: 0; padding: var(--space-2xs) 0 var(--space-2xs) 28px; border-bottom: 1px solid var(--line-2); }
.list-card li:last-child { border-bottom: 0; }
.list-card li::before {
  content: ""; position: absolute; left: 4px; top: calc(var(--space-2xs) + .55em);
  width: 10px; height: 10px; border-radius: var(--radius-full); background: var(--orange);
}
.list-card--calm li::before { background: var(--blue); }
.duo-lists + .note-line { margin-top: var(--space-m); }
.note-line {
  margin: 0; padding: var(--space-s) var(--space-m);
  background: var(--mist); border-radius: var(--radius-card); color: var(--ink-2); font-weight: var(--fw-semibold);
}
.section--mist .note-line { background: var(--white); }

/* safety block: dark panel, numbered steps, one closing line */
.safety {
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: var(--space-xl); align-items: center;
  padding: var(--space-xl); background: var(--black); color: var(--on-dark); border-radius: var(--radius-card);
}
.safety h2 { color: var(--white); }
.safety .hl { color: var(--orange); }
.safety .eyebrow-pill { color: var(--white); background: rgba(255,255,255,.12); border: 1px solid var(--line-dark); }
.safety__steps { margin: 0 0 var(--space-s); padding: 0; list-style: none; counter-reset: sft; }
.safety__steps li {
  counter-increment: sft; position: relative; margin: 0; padding: var(--space-xs) 0 var(--space-xs) 52px;
  border-bottom: 1px solid var(--line-dark); color: var(--white); font-weight: var(--fw-semibold);
}
.safety__steps li:last-child { border-bottom: 0; }
.safety__steps li::before {
  content: counter(sft); position: absolute; left: 0; top: var(--space-2xs);
  display: grid; place-items: center; width: 36px; height: 36px; border-radius: var(--radius-full);
  background: var(--orange); color: var(--white); font-family: var(--font-display); font-weight: var(--fw-extrabold);
}
.safety p { margin: 0; }
.safety strong { color: var(--white); }
.safety__photo { aspect-ratio: 3 / 4; height: auto; }

/* tips with icons + a "do not" line */
.tip-list { margin: 0 0 var(--space-m); padding: 0; list-style: none; display: grid; gap: var(--space-xs); }
.tip-list li {
  display: grid; grid-template-columns: 40px 1fr; gap: var(--space-xs); align-items: start; margin: 0;
  padding: var(--space-s); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-card);
}
.tip-list__ic {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: var(--radius-full);
  background: var(--blue-soft); color: var(--blue); font-size: 20px;
}
.tip-list p { margin: 0; }
.warn-line {
  display: flex; align-items: flex-start; gap: var(--space-xs); margin: 0;
  padding: var(--space-s) var(--space-m); background: var(--orange-soft);
  border-left: 4px solid var(--orange); border-radius: var(--radius-control); color: var(--ink-2);
}
.warn-line .icon { flex: none; margin-top: 3px; color: var(--orange-ink); font-size: 20px; }
.warn-line strong { color: var(--orange-ink); }

/* process: .about-process steps, with a short line under them */
.process-note { max-width: 46rem; margin: var(--space-l) auto 0; text-align: center; font-weight: var(--fw-semibold); color: var(--ink-2); }

/* pricing: three tiles, then the words */
.price-tiles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-s); margin: 0 0 var(--space-l); padding: 0; list-style: none; }
.price-tiles li {
  display: flex; flex-direction: column; gap: var(--space-3xs); margin: 0; padding: var(--space-m);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-card); box-shadow: var(--shadow-1);
}
.price-tiles li:nth-child(2) { border-top: 4px solid var(--orange); }
.price-tiles__label { font-family: var(--font-display); font-size: var(--fs-eyebrow); font-weight: var(--fw-extrabold); letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--muted); }
.price-tiles__fig { font-family: var(--font-display); font-size: var(--fs-h2); font-weight: var(--fw-extrabold); line-height: 1.1; color: var(--ink); font-variant-numeric: tabular-nums; }
.price-tiles__fig--word { font-size: var(--fs-h3); }
.price-tiles__note { font-size: var(--fs-sm); color: var(--body); }
.price-words { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, .7fr); gap: var(--space-l); align-items: start; }
.price-words > div > :last-child { margin-bottom: 0; }
.price-words .panel { padding: var(--space-m); }
.price-words .panel > :last-child { margin-bottom: 0; }
.price-words .photo { aspect-ratio: 3 / 2; height: auto; }

/* "what you are seeing / what we check" table; stacks into cards on a phone */
.fault-table {
  width: 100%; border-collapse: separate; border-spacing: 0; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius-card); overflow: hidden;
}
.fault-table th, .fault-table td { padding: var(--space-s) var(--space-m); text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.fault-table tr:last-child > * { border-bottom: 0; }
.fault-table thead th {
  background: var(--black); color: var(--white); font-family: var(--font-display);
  font-size: var(--fs-sm); font-weight: var(--fw-extrabold); letter-spacing: .02em;
}
.fault-table tbody th { width: 42%; font-family: var(--font-display); font-weight: var(--fw-bold); color: var(--ink); }
.fault-table tbody tr:nth-child(even) > * { background: var(--mist); }
.fault-table + p, .fault-table + .callout { margin-top: var(--space-m); }

/* numbered fault cards (area pages: "what we see most") */
.fault-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-m); margin: 0; padding: 0; list-style: none; }
.fault-cards li {
  margin: 0; padding: var(--space-l) var(--space-m) var(--space-m);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-card); box-shadow: var(--shadow-1);
}
.fault-cards__num {
  display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: var(--space-s);
  border-radius: var(--radius-full); background: var(--black); color: var(--white);
  font-family: var(--font-display); font-weight: var(--fw-extrabold);
}
.fault-cards h3 { font-size: var(--fs-h4); margin: 0 0 var(--space-2xs); }
.fault-cards p { margin: 0; font-size: var(--fs-sm); }

/* photo + copy intro (area pages) */
.local-intro__media { position: relative; }
.local-intro__media .photo { aspect-ratio: 4 / 3; height: auto; }
.local-intro__chip {
  position: absolute; left: var(--space-s); bottom: var(--space-s);
  display: flex; flex-direction: column; gap: 2px; padding: var(--space-xs) var(--space-s);
  background: var(--white); border-radius: var(--radius-card); box-shadow: var(--shadow-3);
}
.local-intro__chip strong { font-family: var(--font-display); font-weight: var(--fw-extrabold); color: var(--ink); }
.local-intro__chip span { font-size: var(--fs-xs); color: var(--muted); }

/* altitude strip: one short block, links to the full explanation */
.alt-strip {
  display: grid; grid-template-columns: auto minmax(0, 1fr); gap: var(--space-l); align-items: center;
  padding: var(--space-l); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-card);
}
.alt-strip .stat-chip { flex-direction: column; align-items: flex-start; margin: 0; padding: var(--space-s) var(--space-m); }
.alt-strip h2 { font-size: var(--fs-h3); }
.alt-strip p:last-child { margin-bottom: 0; }

/* service list (area pages): one card per service, linked when the page exists */
.svc-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-s); margin: 0; padding: 0; list-style: none; }
.svc-list li {
  display: flex; flex-direction: column; gap: var(--space-2xs); margin: 0; padding: var(--space-m);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-card);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.svc-list li:hover { border-color: rgba(250,90,10,.45); box-shadow: var(--shadow-1); }
.svc-list__ic {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: var(--radius-full);
  background: var(--orange-soft); color: var(--orange); font-size: 20px;
}
.svc-list h3 { font-size: var(--fs-h4); margin: var(--space-3xs) 0 0; }
.svc-list p { margin: 0; font-size: var(--fs-sm); }
.svc-list .arrow-link { margin-top: auto; padding-top: var(--space-2xs); }
.svc-list + p, .svc-list + .brands { margin-top: var(--space-l); }

/* coverage: ZIPs + neighbourhoods + photo */
.coverage__label { font-family: var(--font-display); font-size: var(--fs-h4); font-weight: var(--fw-extrabold); color: var(--ink); margin: var(--space-m) 0 var(--space-2xs); }
.coverage .zips li { font-size: var(--fs-sm); padding: var(--space-3xs) var(--space-xs); }
.hood-list { display: flex; flex-wrap: wrap; gap: var(--space-2xs); margin: 0; padding: 0; list-style: none; }
.hood-list li {
  margin: 0; padding: var(--space-3xs) var(--space-s); border-radius: var(--radius-full);
  background: var(--white); border: 1px solid var(--line); font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--ink-3);
}
.coverage__photo { aspect-ratio: 4 / 3; height: auto; }

/* info panel (permits and the like) */
.info-panel {
  display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: var(--space-s); align-items: start;
  padding: var(--space-l); background: var(--blue-soft); border-radius: var(--radius-card);
}
.info-panel__ic { display: grid; place-items: center; width: 48px; height: 48px; border-radius: var(--radius-full); background: var(--blue); color: var(--white); font-size: 22px; }
.info-panel h2 { font-size: var(--fs-h3); }
.info-panel > div > :last-child { margin-bottom: 0; }

/* FAQ in one centred column, call card underneath */
.faq-wide { max-width: 52rem; margin-inline: auto; }
.faq-wide .contact-card { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-s); margin-top: var(--space-l); }
.faq-wide .contact-card > * { margin: 0; }
.faq-wide .contact-card__text { flex: 1 1 18rem; }
.faq-wide .contact-card__text p { margin: 0; }

/* nearby pages row */
.next-links { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2xs) var(--space-s); margin-top: var(--space-m); }
.next-links__label { font-family: var(--font-display); font-weight: var(--fw-extrabold); color: var(--ink); }

@media (max-width: 1099px) {
  .fact-strip__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .svc-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 899px) {
  .duo-lists, .safety, .price-words, .fault-cards { grid-template-columns: 1fr; }
  .safety { padding: var(--space-l) var(--space-m); gap: var(--space-l); }
  .safety__photo { aspect-ratio: 16 / 9; }
  .price-tiles { grid-template-columns: 1fr; }
  .alt-strip { grid-template-columns: 1fr; gap: var(--space-s); }
}
@media (max-width: 699px) {
  .tpl-hero .btn-row .btn { flex: 1 1 100%; }
  .fact-strip__list { grid-template-columns: 1fr; gap: var(--space-xs); padding: var(--space-s) 0; }
  .list-card, .info-panel, .alt-strip { padding: var(--space-m); }
  .info-panel { grid-template-columns: 1fr; }
  .svc-list { grid-template-columns: 1fr; }
  .fault-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .fault-table, .fault-table tbody, .fault-table tr, .fault-table th, .fault-table td { display: block; width: 100%; }
  .fault-table { border: 0; background: none; }
  .fault-table tr { margin-bottom: var(--space-xs); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-card); overflow: hidden; }
  .fault-table tbody tr:nth-child(even) > * { background: none; }
  .fault-table tbody th { width: 100%; padding-bottom: var(--space-3xs); border: 0; }
  .fault-table td { padding-top: 0; border: 0; }
  .fault-table td::before { content: attr(data-label) ": "; font-weight: var(--fw-semibold); color: var(--muted); }
}
.section--flush-top { padding-top: 0; }
/* town pill without a page yet: same pill, not a link */
.about-towns li > span {
  display: inline-flex; align-items: center; gap: var(--space-3xs); min-height: 40px;
  padding: var(--space-3xs) var(--space-s); border: 1px solid var(--line); border-radius: var(--radius-full);
  background: var(--white); font-family: var(--font-display); font-size: var(--fs-sm);
  font-weight: var(--fw-bold); color: var(--ink-3);
}
.about-towns li > span .icon { color: var(--orange); }
.contact-email { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-lead); word-break: break-word; }
/* LeadSmart offer disclaimer (required on every page) */
.footer-disclaimer { max-width: none; margin: var(--space-l) 0 0; padding-top: var(--space-m); border-top: 1px solid var(--line-dark); font-size: var(--fs-xs); line-height: var(--lh-body); color: rgba(255,255,255,.6); }
