/* ===========================================================================
   New York Garage Door Repair — garage door template
   Skin: Counterweight (see DESIGN.md). Built to read as a company that names
   the part before it prices the work: a cool galvanised ground, graphite bands
   carrying the horizontal section lines of a closed door, and one amber
   voltage — the colour of the hazard tag on every torsion spring, and the one
   colour the franchise networks in this SERP do not already own.
   Deliberately PHOTO-OPTIONAL — every surface renders complete with no imagery.
   Type: Geologica (squared technical grotesque) + Cabin (humanist body).
   Signatures: the named-part mark (.part) and the panel band on dark grounds.
   =========================================================================== */


/* Metric-matched fallbacks: web fonts load async (non-blocking), so text first
   paints in a size-adjusted local font that closely matches the web font's box
   — the swap-in then reflows almost nothing (kills font-swap CLS). */
/* Metric-matched fallbacks: web fonts load async (non-blocking), so text first
   paints in a size-adjusted local font that closely matches the web font's box
   — the swap-in then reflows almost nothing (kills font-swap CLS).

   The overrides below are MEASURED in-browser against Helvetica Neue, not
   estimated. tire-shop's DESIGN.md records why that matters: a guessed value
   makes the swap reflow worse than no override at all. Geologica is measured on
   a MIXED-CASE sample, because unlike tire-shop this skin sets its display face
   mixed-case at hero scale and reserves caps for the label tier.

   What the measurement was worth, on the hero lead paragraph at 18px/560px:
   unadjusted Helvetica Neue wrapped it to three lines (57.2px) where Cabin
   needs two (38.2px). The adjusted fallback lands on 38.2px exactly, so the
   web font swapping in moves nothing. That is a whole line of layout shift
   that a plausible-looking guess would have left in place.

   ascent/descent are the WEB font's metrics divided by size-adjust — the
   overrides resolve against the already-adjusted em, so dividing is what makes
   the two boxes the same height rather than merely the same width. */
@font-face {
  font-family: "Geologica Fallback";
  src: local("Helvetica Neue"), local("Arial");
  size-adjust: 105.2%; ascent-override: 92.7%; descent-override: 26.1%; line-gap-override: 0%;
}
@font-face {
  font-family: "Cabin Fallback";
  src: local("Helvetica Neue"), local("Arial");
  size-adjust: 92.2%; ascent-override: 104.7%; descent-override: 27.1%; line-gap-override: 0%;
}

/* Counterweight, on the fleet's 35 token names. Graphite identifies, amber
   instructs, and every neutral is COOL — galvanised steel and primed concrete,
   the two materials a garage door is actually made of. Every ratio below was
   computed, not estimated (the Measured Contrast Rule). */
:root {
  --bg: #ffffff;            /* canvas */
  --surface: #f4f6f7;       /* galvanised grey — cool, never warm */
  --surface-2: #e5e9ec;     /* chips, inset panels */
  --border: #d0d7dc;        /* hairline */

  --ink: #15191d;           /* 17.67:1 on --bg, 16.30:1 on --surface, 14.47:1 on --surface-2 */
  --muted: #545c64;         /* 6.79:1 on --bg, 6.27:1 on --surface, 5.56:1 on --surface-2 */

  --brand: #15191d;         /* graphite identifies: step numbers, marks, bands */
  --brand-ink: #8a5300;     /* amber as TYPE — 6.33:1 on --bg, 5.80:1 on --brand-soft */
  --brand-soft: #fff4dd;

  --cta: #ffb000;           /* the one voltage — ink label 9.64:1 */
  --cta-press: #f0a000;     /* pressed — ink label 8.19:1 */
  --on-cta: #15191d;        /* 9.64:1 on --cta. NEVER white here: it is 1.83:1 */

  --band: #15191d;
  --on-band: #ffffff;       /* 17.67:1 on --band */
  --hl-on-dark: #ffc24d;    /* lifted amber for dark grounds — 11.00:1 on --band */
  --star-on-dark: #f5b301;  /* 9.53:1 on --band */

  --dark: #15191d;          /* hero scrim, footer, topbar */
  --dark-2: #1f252b;        /* cool near-black — proof band, white 15.47:1 */
  --live: #1a7f4b;          /* white check 5.02:1 */
  --star-ink: #8a6100;      /* 5.54:1 on --bg */

  --font-display: "Geologica", "Geologica Fallback", "Helvetica Neue", system-ui, sans-serif;
  --font-body: "Cabin", "Cabin Fallback", system-ui, sans-serif;

  --space-section: clamp(3.5rem, 8vw, 7rem);
  --radius: 4px;
  --radius-lg: 6px;
  --radius-btn: 3px;
  --radius-pill: 999px;
  --shadow: 0 1px 2px rgb(21 25 29 / 0.05), 0 12px 30px rgb(21 25 29 / 0.09);
  --shadow-sm: 0 1px 2px rgb(21 25 29 / 0.06), 0 6px 16px rgb(21 25 29 / 0.07);
  --shadow-lg: 0 2px 4px rgb(21 25 29 / 0.08), 0 18px 40px rgb(21 25 29 / 0.13);
  /* Ink-tinted, NOT an amber halo. An accent-hued glow behind a light CTA
     reads as a rendering artefact rather than depth — the fleet doc calls
     this out, and on the dark bands here the amber version visibly smeared
     under the nav button. septic-pumping made the same call for lime. */
  --shadow-cta: 0 4px 14px rgb(21 25 29 / 0.18);
  --shadow-up: 0 -6px 20px rgb(21 25 29 / 0.20);
  --z-callbar: 40;
  --z-nav: 50;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}


* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, .brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
p { text-wrap: pretty; }
a { color: inherit; }

.wrap { width: 100%; max-width: 1160px; margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.5rem); }

.skip { position: absolute; left: -999px; top: 0; z-index: 100; background: var(--ink); color: #fff; padding: 0.6rem 1rem; border-radius: 0 0 var(--radius) 0; }
.skip:focus { left: 0; }

/* Pulsing "live / available" dot */
.dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: var(--live); box-shadow: 0 0 0 0 color-mix(in srgb, var(--live) 60%, transparent); animation: pulse 1.8s var(--ease) infinite; vertical-align: middle; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--live) 55%, transparent); } 70% { box-shadow: 0 0 0 7px color-mix(in srgb, var(--live) 0%, transparent); } 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--live) 0%, transparent); } }
@media (prefers-reduced-motion: reduce) { .dot { animation: none; } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem; letter-spacing: -0.01em;
  padding: 0.75rem 1.4rem; border-radius: var(--radius-btn); border: 1px solid transparent;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform 0.18s var(--ease), background-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.btn--cta { background: var(--cta); color: var(--on-cta); box-shadow: var(--shadow-cta); }
.btn--cta:hover { background: var(--cta-press); transform: translateY(-2px); }
.btn--cta:active { transform: translateY(0); }
.btn--ghost { background: oklch(1 0 0 / 0.08); color: #fff; border-color: oklch(1 0 0 / 0.3); }
.btn--ghost:hover { background: oklch(1 0 0 / 0.16); }
.btn--lg { font-size: 1.1rem; padding: 0.95rem 1.8rem; }
.btn--block { width: 100%; }

/* ---------------------------------------------------------------------------
   Focus indicator — TWO-TONE, and that is a WCAG requirement, not a style.

   SC 1.4.11 (Non-text Contrast, AA) wants 3:1 between the focus indicator and
   the colours next to it. A single accent ring cannot deliver that across this
   system, because the same ring has to land on a white card and on a saturated
   dark band. Measured across the fleet, a --cta-only ring failed on 9 of 13
   templates: the light accents (amber, yellow, lime, safety orange) vanish on
   white at 1.21-2.87:1, and the dark accents vanish on their own urgency band —
   water-damage's --band IS its --cta, so the ring measured 1.00:1 and was
   literally invisible.

   So the ring is two colours at once: --cta bracketed by --on-cta. The outline
   paints over the box-shadow, which leaves --on-cta showing as a band on each
   side of the accent. Those two already carry a guaranteed >=4.5:1 against each
   other (they are the button label pair, measured per template), so whichever
   ground the ring lands on, one of the two clears 3:1 while the pair stays
   legible as a ring. Nothing here is per-component: it is one treatment applied
   to every focusable thing.

   The element list is spelled out rather than wrapped in :where() on purpose.
   :where() contributes no specificity, so the old (0,1,0) rule tied with plain
   component classes and lost on source order — .urgency__btn and .btn--cta both
   set box-shadow later in this file and would have silently dropped the second
   tone off the two controls that matter most.
   --------------------------------------------------------------------------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--cta); outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--on-cta);
  border-radius: var(--radius-btn);
}

/* Top bar */
.topbar { background: var(--dark); color: oklch(1 0 0 / 0.85); font-size: 0.86rem; }
/* padding-BLOCK, not the `padding: 0.5rem 0` shorthand: this element is also a
   .wrap, and the shorthand resets .wrap's padding-inline to 0, leaving the
   phone number flush against the viewport edge on narrow screens. */
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.5rem; }
.topbar__status { display: inline-flex; align-items: center; gap: 0.5rem; }
.topbar__phone { color: #fff; text-decoration: none; font-weight: 700; font-family: var(--font-display); }

/* Nav */
.nav { position: sticky; top: 0; z-index: var(--z-nav); background: oklch(1 0 0 / 0.85); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.nav__inner { display: flex; align-items: center; gap: 1.25rem; height: 66px; }
.brand { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; font-size: 1.2rem; color: var(--ink); }
.brand__mark { width: 30px; height: 30px; flex-shrink: 0; background: center / contain no-repeat url("data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20512%20512%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M24%20232%20256%2060%20488%20232%20488%20470%2024%20470Z%22%20fill%3D%22%2315191D%22%2F%3E%3Crect%20x%3D%2296%22%20y%3D%22272%22%20width%3D%22320%22%20height%3D%2256%22%20rx%3D%226%22%20fill%3D%22%23FFB000%22%2F%3E%3Crect%20x%3D%2296%22%20y%3D%22344%22%20width%3D%22320%22%20height%3D%2256%22%20rx%3D%226%22%20fill%3D%22%23FFFFFF%22%2F%3E%3Crect%20x%3D%2296%22%20y%3D%22416%22%20width%3D%22320%22%20height%3D%2254%22%20rx%3D%226%22%20fill%3D%22%23FFFFFF%22%2F%3E%3C%2Fsvg%3E"); }
.nav__links { display: flex; gap: 1.35rem; margin-left: auto; }
.nav__links a { text-decoration: none; color: var(--muted); font-weight: 600; font-size: 0.96rem; white-space: nowrap; transition: color 0.15s; }
/* Between the mobile collapse and full width, scale the links down so the
   row stays on one line instead of wrapping. */
@media (max-width: 1180px) {
  .nav__links { gap: 0.95rem; }
  .nav__links a { font-size: 0.9rem; }
  .nav__inner { gap: 1rem; }
}
.nav__links a:hover { color: var(--brand-ink); }
.nav__cta { margin-left: 1.25rem; }
.nav__toggle { display: none; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; margin-left: 0.35rem; padding: 0.4rem; background: none; border: 1px solid var(--border); border-radius: var(--radius-btn); color: var(--ink); cursor: pointer; }
@media (max-width: 860px) {
  .nav__inner { flex-wrap: wrap; height: auto; min-height: 66px; }
  .nav__links { display: none; order: 99; flex-basis: 100%; width: 100%; flex-direction: column; gap: 0; margin-left: 0; margin-top: 0.4rem; border-top: 1px solid var(--border); }
  .nav.nav--open .nav__links { display: flex; }
  .nav__links a { min-height: 44px; display: flex; align-items: center; padding: 0.7rem 0.25rem; font-size: 1rem; }
  .nav__cta { margin-left: auto; }
  .nav__toggle { display: inline-flex; }
}

/* Hero — dark, image-led */
.hero { position: relative; isolation: isolate; overflow: hidden; padding: clamp(3rem, 8vw, 6rem) 0; color: #fff; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(95deg, color-mix(in srgb, var(--dark) 88%, transparent) 0%, color-mix(in srgb, var(--dark) 78%, transparent) 38%, color-mix(in srgb, var(--dark) 40%, transparent) 68%, color-mix(in srgb, var(--dark) 12%, transparent) 100%); }
.hero__inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero__kicker { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--hl-on-dark); font-weight: 700; font-size: 0.95rem; margin-bottom: 1rem; }
.hero h1 { font-size: clamp(2.5rem, 6.5vw, 4.2rem); font-weight: 600; letter-spacing: -0.015em; max-width: 16ch; }
.hero h1 .hl { color: var(--hl-on-dark); }
.hero__lead { margin-top: 1.2rem; font-size: clamp(1.05rem, 2.2vw, 1.22rem); color: oklch(1 0 0 / 0.84); max-width: 48ch; }
.hero__actions { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: 0.8rem; }
.hero__points { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; margin-top: 1.6rem; font-size: 0.95rem; color: oklch(1 0 0 / 0.82); }
.hero__points li { position: relative; padding-left: 1.3rem; }
.hero__points li::before { content: "✓"; position: absolute; left: 0; color: var(--live); font-weight: 800; }

/* Quote card (light card over dark hero) */
.quote { background: var(--bg); color: var(--ink); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: clamp(1.4rem, 3vw, 2rem); }
.quote__title { font-size: 1.5rem; }
.quote__sub { color: var(--muted); margin-top: 0.4rem; font-size: 0.98rem; }
.quote .form { margin-top: 1.2rem; }

/* Forms */
.form { display: grid; gap: 0.9rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.field { display: grid; gap: 0.35rem; }
.field__label { font-size: 0.86rem; font-weight: 600; color: var(--ink); }
.field__opt { color: var(--muted); font-weight: 400; }
input, select, textarea { font-family: inherit; font-size: 1rem; color: var(--ink); padding: 0.7rem 0.85rem; border: 1px solid var(--border); border-radius: var(--radius-btn); background: var(--bg); width: 100%; transition: border-color 0.15s, box-shadow 0.15s; }
input::placeholder, textarea::placeholder { color: var(--muted); opacity: 1; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-soft); }
input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid var(--cta); outline-offset: 2px; box-shadow: 0 0 0 6px var(--on-cta); }
textarea { resize: vertical; }
.form__fine { font-size: 0.82rem; color: var(--muted); text-align: center; }
.form__fine a { color: var(--brand-ink); font-weight: 700; }
.form__msg { font-size: 0.95rem; font-weight: 600; text-align: center; }
.form__msg[data-state="ok"] { color: var(--brand-ink); }
.form__msg[data-state="err"] { color: var(--cta-press); }

/* SMS-consent checkbox + hidden honeypot */
.consent { display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.8rem; line-height: 1.45; color: var(--muted); cursor: pointer; }
.consent input { width: auto; flex: none; margin-top: 0.15rem; accent-color: var(--brand); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* Proof band */
.proof { background: var(--dark-2); color: oklch(1 0 0 / 0.92); }
/* padding-BLOCK, not the `padding: X 0` shorthand: this element is also a
   .wrap, and the shorthand resets .wrap's padding-inline to 0, leaving its
   content flush against the viewport edge on narrow screens and 40px out of
   alignment with every other section on wide ones. */
.proof__inner { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2rem; padding-block: 1.4rem; justify-content: space-between; }
.proof__lead { font-size: 1.05rem; }
.proof__lead strong { color: #fff; }
.proof__badges { display: flex; flex-wrap: wrap; gap: 0.5rem 0.7rem; list-style: none; }
.proof__badges li { font-size: 0.85rem; font-weight: 600; padding: 0.35rem 0.8rem; border-radius: var(--radius-pill); background: oklch(1 0 0 / 0.1); border: 1px solid oklch(1 0 0 / 0.16); }

/* Credentials strip — what every job includes */
.carriers { background: var(--surface); border-bottom: 1px solid var(--border); }
.carriers__inner { display: grid; gap: 1.1rem; justify-items: center; text-align: center; padding-block: clamp(1.6rem, 3.5vw, 2.4rem); }
.carriers__lead { font-size: 1.02rem; color: var(--muted); max-width: 62ch; }
.carriers__lead strong { color: var(--ink); font-weight: 700; }
.carriers__list { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.9rem; }
.carriers__list li { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; letter-spacing: -0.01em; color: var(--muted); }

/* Sections */
.section { padding-block: var(--space-section); }

/* A section whose only content is the page heading and its intro.
 *
 * .lede carries a bottom margin to separate it from the content that follows it
 * INSIDE the section. On the contact page nothing does, so that margin has no
 * job, and the section's full bottom padding then stacks on top of the next
 * section's own top padding. Measured on a live site at 1352px: 367px of
 * section holding 102px of content — 72% void, with 156px of dead space below
 * the last line. That also inverts the spacing rule the design system works to,
 * which wants more room above a heading than below it. */
.section--head { padding-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.section--head .lede { margin-bottom: 0; }

.section--tint { background: var(--surface); }
.section--dark { background: var(--dark); color: oklch(1 0 0 / 0.86); }
.section--dark h2 { color: #fff; }
.lede { max-width: 56ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.lede--left { margin-bottom: 0; }
.lede h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); }
.lede p { margin-top: 0.8rem; color: var(--muted); font-size: 1.1rem; }

/* The <h2>Garage door repair across all five NYC boroughs</h2>
<p>Our coverage includes <a href="/areas/manhattan">Manhattan</a>, <a href="/areas/brooklyn">Brooklyn</a>, <a href="/areas/queens">Queens</a>, <a href="/areas/the-bronx">the Bronx</a> and <a href="/areas/staten-island">Staten Island</a>. Browse the <a href="/areas">service-area directory</a> for borough and Queens neighborhood pages, or <a href="/contact">contact us</a> with your address and garage door problem. Confirm appointment availability and equipment coverage when booking.</p> slot carries authored prose — a heading and several
 * paragraphs — rather than template markup, so it arrives as bare <h2> and <p>.
 * This stylesheet styles classes and never bare elements inside .wrap, so every
 * one of these blocks rendered completely unstyled: browser-default 16px text at
 * a 128-character measure with zero space between paragraphs, and an h2 at 24px
 * against a headline ramp that starts at 30px. Measured on a live homepage at
 * 1352px. All 34 sites carrying city copy looked like this.
 *
 * Scoped to .city-note, which wraps the slot in index.html, so it cannot reach
 * any other section. */
.city-note h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); line-height: 1.1; }
.city-note p { max-width: 66ch; margin-top: 1.5rem; color: var(--muted); font-size: clamp(1.05rem, 2.2vw, 1.22rem); line-height: 1.7; }
.city-note h2 + p { margin-top: 1.1rem; }

/* Wide viewports: heading left, prose right.
 * A single constrained column left roughly 500px of dead space on the right
 * of a 1160px row — readable, and visibly lopsided. The split uses the width
 * without widening the measure: heading column ~318px, prose ~695px, 67
 * characters per line. Measured live at 1352px. */
@media (min-width: 900px) {
  .city-note .wrap { display: grid; grid-template-columns: minmax(12rem, 0.8fr) minmax(0, 1.75fr); column-gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
  .city-note h2 { grid-column: 1; grid-row: 1; font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
  .city-note p { grid-column: 2; }
  .city-note p:first-of-type { grid-row: 1; margin-top: 0; }
}
.section--dark .lede p { color: oklch(1 0 0 / 0.72); }
.center { text-align: center; margin-top: 2.5rem; }
.link { color: var(--brand-ink); font-weight: 700; text-decoration: none; font-family: var(--font-display); }
.link:hover { text-decoration: underline; }

/* Services */
.services { display: grid; gap: clamp(1.3rem, 3vw, 2rem); }
/* Primary service — full-width banner, image beside copy */
.feature { display: grid; grid-template-columns: 1.1fr 1fr; border-radius: var(--radius-lg); overflow: hidden; background: var(--bg); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.feature__img { width: 100%; height: 100%; min-height: 240px; object-fit: cover; }
.feature__body { padding: clamp(1.4rem, 3vw, 2.2rem); display: grid; gap: 0.7rem; align-content: center; }
.feature__body h3 { font-size: 1.45rem; }
.feature__body p { color: var(--muted); }
/* Supporting services — image cards */
.service-cards { display: grid; grid-template-columns: 1fr; gap: clamp(1rem, 2vw, 1.5rem); }
@media (min-width: 560px) { .service-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 920px) { .service-cards { grid-template-columns: repeat(3, 1fr); } }
.scard { display: flex; flex-direction: column; border-radius: var(--radius); overflow: hidden; background: var(--surface); border: 1px solid var(--border); transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.scard:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.scard__img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform 0.5s var(--ease); }
.scard:hover .scard__img { transform: scale(1.05); }
.scard__body { padding: 1.05rem 1.2rem 1.25rem; display: grid; gap: 0.28rem; }
.scard__body h3 { font-size: 1.08rem; }
.scard__body p { color: var(--muted); font-size: 0.93rem; }
@media (prefers-reduced-motion: reduce) { .scard, .scard__img { transition: none; } .scard:hover { transform: none; } .scard:hover .scard__img { transform: none; } }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split__media img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.split__body h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.split__intro { color: oklch(1 0 0 / 0.78); font-size: 1.1rem; margin-top: 0.9rem; max-width: 50ch; }
.reasons { display: grid; gap: 1.1rem; margin-top: 1.8rem; }
.reasons dt { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: #fff; }
.reasons dd { color: oklch(1 0 0 / 0.72); margin-top: 0.15rem; }

/* Steps */
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem, 2.5vw, 1.8rem); }
.step { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(1.3rem, 3vw, 1.8rem); box-shadow: var(--shadow-sm); }
.step__num { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: var(--radius-btn); background: var(--brand); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; margin-bottom: 1rem; }
.step h3 { font-size: 1.18rem; }
.step p { color: var(--muted); margin-top: 0.4rem; font-size: 0.97rem; }

/* Reviews */
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(1.2rem, 2.5vw, 1.8rem); }
.review { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.6rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.review__stars { color: var(--star-ink); letter-spacing: 1px; margin-bottom: 0.8rem; }
.review blockquote { font-size: 1.05rem; }
.review figcaption { margin-top: auto; padding-top: 1rem; font-weight: 700; color: var(--brand-ink); font-size: 0.92rem; font-family: var(--font-display); }

/* Areas */
.areas__inner { display: grid; gap: 1.6rem; }
.areas { list-style: none; display: flex; flex-wrap: wrap; gap: 0.55rem; }
.areas li { font-size: 0.9rem; font-weight: 600; padding: 0.45rem 0.9rem; border-radius: var(--radius-pill); background: var(--surface-2); border: 1px solid var(--border); color: var(--ink); }

/* Booking */
.book { background: var(--brand); color: oklch(1 0 0 / 0.95); padding-block: var(--space-section); }
.book__inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.book__copy h2 { color: #fff; font-size: clamp(2rem, 4vw, 2.8rem); }
.book__copy p { margin-top: 0.9rem; font-size: 1.1rem; color: oklch(1 0 0 / 0.9); max-width: 42ch; }
.book__phone { display: inline-block; margin-top: 1.4rem; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.5rem); color: #fff; text-decoration: none; }
.book__hours { margin-top: 0.4rem; font-size: 0.95rem; color: oklch(1 0 0 / 0.82); }
.form--book { background: var(--bg); padding: clamp(1.4rem, 3vw, 2rem); border-radius: var(--radius-lg); box-shadow: var(--shadow); }

/* Urgency band — deep-coral punctuation between service area and FAQ */
.urgency { background: var(--band); color: var(--on-band); }
.urgency__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.4rem 2.5rem; padding-block: clamp(2.2rem, 5vw, 3.2rem); }
.urgency__text { max-width: 62ch; }
.urgency h2 { color: var(--on-band); font-size: clamp(1.6rem, 3.5vw, 2.3rem); }
.urgency .hl { color: var(--hl-on-dark); }
.urgency p { margin-top: 0.6rem; color: color-mix(in srgb, var(--on-band) 88%, transparent); }
.urgency__btn { flex: none; background: var(--on-band); color: var(--band); box-shadow: 0 8px 22px color-mix(in srgb, var(--ink) 34%, transparent); }
.urgency__btn:hover { background: color-mix(in srgb, var(--on-band) 94%, var(--ink)); transform: translateY(-2px); }
.urgency__btn:active { transform: translateY(0); }

/* Footer */
.footer { background: var(--dark); color: oklch(1 0 0 / 0.72); }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; padding-block: clamp(2.5rem, 5vw, 3.5rem); }
.footer__brand .brand__name { color: #fff; font-size: 1.35rem; }
.footer__brand p { margin-top: 0.6rem; max-width: 32ch; }
.footer__col h2, .footer__col h3 { font-family: var(--font-display); color: #fff; font-size: 1rem; margin-bottom: 0.8rem; }
.footer__col a, .footer__col span { display: block; text-decoration: none; color: oklch(1 0 0 / 0.72); font-size: 0.95rem; margin-bottom: 0.5rem; }
.footer__col a:hover { color: #fff; }
.footer__legal { border-top: 1px solid oklch(1 0 0 / 0.12); padding-block: 1.2rem; font-size: 0.85rem; color: oklch(1 0 0 / 0.6); }

/* Sticky mobile call bar */
.callbar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-callbar); background: var(--cta); color: var(--on-cta); text-align: center; font-family: var(--font-display); font-weight: 700; padding: 0.95rem; text-decoration: none; box-shadow: var(--shadow-up); }

/* Motion */
.reveal { opacity: 1; }
html.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
html.gsap .reveal { opacity: 1; transform: none; transition: none; }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html.js .reveal { opacity: 1; transform: none; transition: none; } .btn, .nav__links a, input, select, textarea { transition: none; } }

/* Responsive */
@media (max-width: 1000px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) {
  .feature { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split__media { order: -1; }
  .book__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .hero__inner { grid-template-columns: 1fr; }
  /* The scrim runs left-to-right because on desktop the copy sits in the left
     column, over the 88% end. Once the grid stacks, text spans the full width and
     the last words of every line land on the 12% end. Measured against the hero
     photograph that is 2.01:1 behind the right edge and 3.56:1 behind the lead
     paragraph — both below 4.5:1. So below this breakpoint the scrim becomes
     vertical: dark under the copy, clearing toward the foot of the image where
     nothing is set. This only matters now that a real photograph sits back there;
     the CSS fallback was uniformly dark and could not fail. */
  .hero__scrim {
    background: linear-gradient(
      to bottom,
      color-mix(in srgb, var(--dark) 90%, transparent) 0%,
      color-mix(in srgb, var(--dark) 86%, transparent) 55%,
      color-mix(in srgb, var(--dark) 70%, transparent) 100%
    );
  }
  .proof__inner { justify-content: flex-start; }
  .callbar { display: block; }
  body { padding-bottom: 56px; }
  .footer__inner { grid-template-columns: 1fr; }
}
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
@media (max-width: 460px) { .form__row { grid-template-columns: 1fr; } }

/* ── FAQ accordion ─────────────────────────────────────────────── */
.faq { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 28rem), 1fr)); align-items: start; gap: 0.85rem 1rem; }
.faq__item { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq__item[open] { border-color: color-mix(in srgb, var(--brand) 40%, var(--border)); box-shadow: var(--shadow); }
.faq__item > summary {
  list-style: none; cursor: pointer; padding: 1.15rem 1.35rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq__item > summary::-webkit-details-marker { display: none; }
.faq__item > summary:focus-visible { outline: 2px solid var(--cta); outline-offset: -3px; box-shadow: inset 0 0 0 5px var(--on-cta); }
.faq__item > summary::after {
  content: "+"; flex: none; display: grid; place-items: center;
  width: 1.9rem; height: 1.9rem; border-radius: 50%;
  background: var(--brand-soft); color: var(--brand-ink);
  font-size: 1.3rem; font-weight: 700; line-height: 1;
  transition: transform 0.25s var(--ease), background-color 0.2s var(--ease);
}
.faq__item[open] > summary::after { transform: rotate(45deg); }
.faq__item > summary:hover { color: var(--brand-ink); }
.faq__item > summary:hover::after { background: color-mix(in srgb, var(--brand) 20%, var(--brand-soft)); }
.faq__a { margin: 0 1.35rem; padding: 0.9rem 0 1.35rem; border-top: 1px solid var(--border); color: var(--muted); line-height: 1.65; }
.faq__a p { max-width: none; margin: 0; }
.faq__a p + p { margin-top: 0.7rem; }

/* ── Blog cards ────────────────────────────────────────────────── */
.posts { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 1.25rem; }
.post-card {
  display: flex; flex-direction: column; gap: 0.5rem; text-decoration: none;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.4rem; box-shadow: var(--shadow-sm); transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.post-card__tag {
  align-self: flex-start; font-family: var(--font-display); font-weight: 600; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.04em; color: var(--brand-ink);
  background: var(--brand-soft); border-radius: var(--radius-pill); padding: 0.2rem 0.7rem;
}
.post-card h2, .post-card h3 { color: var(--ink); font-size: 1.15rem; line-height: 1.3; }
.post-card p { color: var(--muted); flex: 1; }
.post-card .link { margin-top: 0.25rem; }

/* ── Article (blog post) ───────────────────────────────────────── */
.crumbs { font-size: 0.9rem; color: var(--muted); padding: 1.5rem 0 0; }
.crumbs a { color: var(--brand-ink); text-decoration: none; font-weight: 600; }
.crumbs a:hover { text-decoration: underline; }
.article { max-width: 46rem; margin: 0 auto; padding: 1.5rem 0 var(--space-section); }
.article__head { margin-bottom: 2rem; }
.article__tag {
  font-family: var(--font-display); font-weight: 600; font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--brand-ink); background: var(--brand-soft); border-radius: var(--radius-pill); padding: 0.2rem 0.7rem;
}
.article h1 { font-size: clamp(1.9rem, 5vw, 2.9rem); line-height: 1.1; margin: 0.9rem 0 0.6rem; }
.article__meta { color: var(--muted); font-size: 0.92rem; }
.article__body > * + * { margin-top: 1.1rem; }
.article__body h2 { font-size: clamp(1.4rem, 3vw, 1.8rem); margin-top: 2.2rem; }
.article__body p, .article__body li { color: var(--ink); font-size: clamp(1.05rem, 2.2vw, 1.22rem); line-height: 1.7; }
.article__body ul, .article__body ol { padding-left: 1.3rem; display: grid; gap: 0.5rem; }
.article__cta {
  margin-top: 2.5rem; background: var(--brand-soft); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.6rem; text-align: center;
}
.article__cta h2 { margin-top: 0; }
.article__cta p { color: var(--muted); margin: 0.5rem 0 1.2rem; }
.post-list { display: grid; gap: 1.1rem; max-width: 46rem; margin: 0 auto; padding-bottom: 1rem; }

.contact__line { margin-top: 0.4rem; }
.contact__line a { color: inherit; }

/* Service-area page */
.area-blocks { display: grid; grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr)); gap: 1.25rem; margin-top: 1.5rem; }
.area-block { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.4rem; box-shadow: var(--shadow-sm); }
.area-block h2 { font-size: 1.2rem; line-height: 1.25; }
.area-block p { color: var(--muted); margin: 0.5rem 0 0.8rem; font-size: 0.97rem; }
.map-embed { margin-top: 1.5rem; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 16 / 7; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

.areas__more { margin-top: 1.1rem; }

/* Internal cross-links on area / service pages */
.xsection { max-width: 46rem; margin: 2.5rem auto 0; }
.xsection h2 { font-size: 1.2rem; margin-bottom: 0.8rem; }
.xlinks { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 0.5rem 1.25rem; padding: 0; }
.xlinks a { color: var(--brand-ink); text-decoration: none; font-weight: 600; }
.xlinks a:hover { text-decoration: underline; }

/* Floating Google-reviews trust badge (bottom-left, desktop only) */
.gbadge { position: fixed; left: 1rem; bottom: 1rem; z-index: var(--z-callbar); display: flex; align-items: center; gap: 0.7rem; background: var(--bg); color: var(--ink); text-decoration: none; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 0.65rem 0.95rem; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.gbadge:not([data-has-rating="1"]) { display: none; }
.gbadge:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.gbadge__g { flex-shrink: 0; }
.gbadge__text { display: flex; flex-direction: column; gap: 0.1rem; font-size: 0.8rem; line-height: 1.25; }
.gbadge__text strong { font-size: 0.84rem; }
.gbadge__row { color: var(--muted); }
.gbadge__stars { color: var(--star-ink); letter-spacing: 0.1em; }
@media (max-width: 720px) { .gbadge { display: none; } }
@media (prefers-reduced-motion: reduce) { .gbadge { transition: none; } .gbadge:hover { transform: none; } }

/* Reviews section hidden until the prospect has real Google reviews */
#reviews:not([data-has-reviews="1"]) { display: none; }
/* Blog teaser hidden only when the site actually has no posts. Four templates
   ship no default set in _partials/blog.json, so without this the homepage
   carried a heading and a "Visit the blog" link with a tall empty gap between
   them. expandSite drops blog/index.html in the same case, and the dead-link
   pruner then removes the nav and footer links to it.

   Tested on EMPTY, not on "1" — the reverse of how #reviews and #brands gate,
   and deliberately so. fillOne leaves an unknown {{TOKEN}} literal, so a re-seed
   that lands before the Worker carrying HAS_POSTS would ship
   data-has-posts="1". Under a :not([data-has-posts="1"]) rule that
   string fails the test and the blog section would vanish from every site in the
   fleet, including the nine whose blogs are full. Matching the empty string
   instead means a stale Worker degrades to exactly today's behaviour.

   The reviews and brands gates keep the opposite polarity on purpose: there the
   unconfirmed state is fabricated testimonials, so hiding is the safe failure. */
#blog[data-has-posts=""] { display: none; }
/* brandsRequireCopy is on for this trade: no brand pages until this site's copy
   exists, and a heading over an empty list is worse than no section. */
#brands:not([data-has-brands="1"]) { display: none; }

/* reviews carousel — exactly 3 up (2 tablet, 1 mobile), circular arrow nav */
.reviews-carousel { position: relative; padding-inline: 54px; }
.reviews-carousel .reviews {
  --rgap: clamp(0.9rem, 2vw, 1.4rem);
  display: flex;
  flex-wrap: nowrap;
  gap: var(--rgap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.reviews-carousel .reviews::-webkit-scrollbar { display: none; }
.reviews-carousel .review {
  flex: 0 0 calc((100% - 2 * var(--rgap)) / 3);
  scroll-snap-align: start;
}
@media (max-width: 860px) { .reviews-carousel .review { flex-basis: calc((100% - var(--rgap)) / 2); } }
@media (max-width: 560px) { .reviews-carousel .review { flex-basis: 100%; } }
.reviews-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1;
  border-radius: var(--radius-pill);
  cursor: pointer;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: background-color 0.15s ease, transform 0.15s ease;
}
.reviews-nav:hover { transform: translateY(-50%) scale(1.06); }
.reviews-nav--prev { left: 0; }
.reviews-nav--next { right: 0; }
.reviews-nav[hidden] { display: none; }
@media (max-width: 560px) {
  .reviews-carousel { padding-inline: 42px; }
  .reviews-nav { width: 38px; height: 38px; font-size: 1.35rem; }
}
@media (prefers-reduced-motion: reduce) {
  .reviews-carousel .reviews { scroll-behavior: auto; }
  .reviews-nav { transition: none; }
}

/* service-area (#areas): two-column; the map card stretches to the text column
   height and the map fills it (no dead space, top-aligned with the heading).
   Scoped to #areas so shared .areas__inner sections (e.g. #makes) are untouched. */
#areas .areas__inner { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(2rem, 5vw, 4rem); align-items: stretch; }
#areas .areas__text { display: grid; gap: clamp(1.3rem, 3vw, 2rem); align-content: start; }
.map-card { margin: 0; display: flex; flex-direction: column; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); background: var(--surface); box-shadow: var(--shadow); }
.map-card__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.85rem 1.1rem; border-bottom: 1px solid var(--border); }
.map-card__label { display: block; font-size: 0.68rem; letter-spacing: 0.09em; text-transform: uppercase; font-weight: 700; color: var(--muted); }
.map-card__addr { display: block; font-weight: 700; color: var(--ink); font-size: 0.95rem; }
.map-card__link { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.85rem; font-weight: 700; color: var(--brand); text-decoration: none; white-space: nowrap; }
.map-card__link:hover { text-decoration: underline; }
.map-card .map-embed { margin: 0; border: 0; border-radius: 0; flex: 1 1 auto; min-height: 340px; aspect-ratio: auto; }
.map-card .map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 780px) {
  #areas .areas__inner { grid-template-columns: 1fr; align-items: start; }
  .map-card .map-embed { flex: none; aspect-ratio: 16 / 11; min-height: 0; }
}

/* coverage map (MapLibre + Carto) fills the map card; the canvas is absolutely
   positioned so it fills #coverage-map regardless of flex/aspect-ratio height. */
#coverage-map { position: relative; }
#coverage-map .maplibregl-map { position: absolute; inset: 0; width: 100%; height: 100%; }
#coverage-map .maplibregl-marker { cursor: pointer; }
#coverage-map .maplibregl-popup-content { font-weight: 700; font-size: 0.85rem; color: var(--ink); padding: 0.4rem 0.65rem; border-radius: var(--radius); }
#coverage-map .maplibregl-ctrl-attrib { font-size: 10px; }


/* ============================================================================
   BLOG POST LAYOUT v2 — shared, color-agnostic post template
   Structure + typography only. Every colour is pulled from this template's own
   tokens (--bg / --surface / --surface-2 / --border / --ink / --muted /
   --brand / --brand-ink / --brand-soft / --cta / --on-cta / --live), so each
   site keeps its own identity. --live falls back to --brand where a palette
   defines no success colour. Fonts inherit --font-display / --font-body.
   Used by _partials/blog-post.html (fanned out to blog/<slug>.html).
   ========================================================================== */
.post { --post-measure: 45rem; }

/* Hero — centered, with an optional soft accent glow behind it */
.post__hero { position: relative; isolation: isolate; overflow: hidden; text-align: center;
  padding: clamp(2.4rem, 6vw, 4.2rem) 0 clamp(1.4rem, 4vw, 2.2rem); }
.post__hero-glow { position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(58% 66% at 50% 0%, color-mix(in srgb, var(--brand) 16%, transparent), transparent 72%); }
.post__hero-inner { max-width: var(--post-measure); text-align: center; }

.post__kicker { display: inline-block; font-family: var(--font-display); font-weight: 700;
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--brand-ink);
  background: var(--brand-soft); border: 1px solid color-mix(in srgb, var(--brand) 22%, transparent);
  border-radius: var(--radius-pill); padding: 0.32rem 0.85rem; }
.post__title { font-family: var(--font-display); font-size: clamp(2rem, 5.2vw, 3.1rem);
  line-height: 1.08; letter-spacing: -0.02em; margin: 1.1rem auto 0.7rem; max-width: 20ch; text-wrap: balance; }
.post__subhead { color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.25rem); line-height: 1.5;
  max-width: 52ch; margin: 0 auto; text-wrap: pretty; }

/* Byline meta row: avatar + author + category + read time */
.post__byline { display: inline-flex; align-items: center; gap: 0.7rem; margin-top: 1.6rem; text-align: left; }
.post__avatar { display: grid; place-items: center; width: 2.6rem; height: 2.6rem; border-radius: 50%;
  /* --on-band, NOT --on-cta: this skin's --on-cta is near-black (it rides the
     yellow), and on the dark blue disc that pairing is 1.88:1. */
  background: var(--brand-ink); color: var(--on-band); font-family: var(--font-display); font-weight: 800;
  font-size: 0.95rem; letter-spacing: 0.01em; flex: none; }
.post__byline-lines { display: flex; flex-direction: column; gap: 0.12rem; }
.post__author { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--ink); line-height: 1.2; }
.post__byline-meta { font-size: 0.82rem; color: var(--muted); display: inline-flex; align-items: center; gap: 0.4rem; }
.post__cat { color: var(--brand-ink); font-weight: 600; }
.post__dot { opacity: 0.55; }

/* At-a-glance stat row (server omits it when a post has no key numbers) */
.stat-row { max-width: var(--post-measure); display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.7rem, 2vw, 1.1rem); margin-top: clamp(1.6rem, 4vw, 2.6rem); }
.stat-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: clamp(1rem, 2.5vw, 1.4rem) 1rem; text-align: center; box-shadow: var(--shadow-sm); }
.stat-card__num { display: block; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 2.35rem); line-height: 1; letter-spacing: -0.02em; color: var(--brand-ink); }
.stat-card__label { display: block; margin-top: 0.45rem; font-size: 0.82rem; color: var(--muted); line-height: 1.3; }

/* Body column — single centered measure, ~18px body, generous line-height */
.post__wrap { max-width: var(--post-measure); padding-top: clamp(2rem, 5vw, 3rem); padding-bottom: var(--space-section); }
.prose { font-size: 1.125rem; line-height: 1.7; color: var(--ink); }
.prose > * + * { margin-top: 1.15rem; }
.prose h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 2.9vw, 1.8rem);
  line-height: 1.18; letter-spacing: -0.01em; font-weight: 700; margin-top: 2.4rem; }
.prose h3 { font-family: var(--font-display); font-size: clamp(1.2rem, 2.4vw, 1.45rem); font-weight: 700; margin-top: 1.9rem; }
.prose p, .prose li { color: var(--ink); }
.prose strong { color: var(--ink); font-weight: 700; }
.prose a { color: var(--brand-ink); font-weight: 600; text-decoration: underline;
  text-underline-offset: 2px; text-decoration-thickness: 1px; }
.prose a:hover { text-decoration-thickness: 2px; }
.prose ul, .prose ol { padding-left: 1.3rem; display: grid; gap: 0.55rem; }
.prose li::marker { color: var(--brand); }
.prose img { border-radius: var(--radius); border: 1px solid var(--border); }
/* Larger opening paragraph (auto-applied; .lede also available explicitly) */
.prose > p:first-of-type, .prose .lede { font-size: clamp(1.18rem, 2.4vw, 1.38rem); line-height: 1.55; color: var(--ink); }

/* Reusable content blocks (colour-agnostic; usable inside the post body) */
/* Callout — takeaway box with an accent left-bar; bare <blockquote> gets it too */
.prose blockquote, .callout { margin-top: 1.6rem; padding: 1.1rem 1.3rem; background: var(--surface);
  border: 1px solid var(--border); border-left: 4px solid var(--brand);
  border-radius: 0 var(--radius) var(--radius) 0; color: var(--ink); }
.prose blockquote { font-size: 1.08rem; }
.prose blockquote > :first-child, .callout > :first-child { margin-top: 0; }

/* Requirement checklist — success-tinted cards, each with a check icon */
.checklist { list-style: none; padding: 0; display: grid; gap: 0.7rem; margin-top: 1.6rem; }
.checklist li { position: relative; padding: 0.85rem 1rem 0.85rem 2.9rem;
  background: color-mix(in srgb, var(--live) 8%, var(--bg));
  border: 1px solid color-mix(in srgb, var(--live) 24%, var(--border));
  border-radius: var(--radius); color: var(--ink); }
.checklist li::before { content: "\2713"; position: absolute; left: 0.9rem; top: 0.82rem;
  display: grid; place-items: center; width: 1.4rem; height: 1.4rem; border-radius: 50%;
  background: var(--live); color: var(--bg); font-size: 0.82rem; font-weight: 800; line-height: 1; }

/* Emphasis box — a filled surface panel for a key point or big stat */
.emphasis { margin-top: 1.6rem; padding: clamp(1.2rem, 3vw, 1.6rem); border-radius: var(--radius-lg);
  background: var(--surface-2); border: 1px solid var(--border); color: var(--ink); }
.emphasis > :first-child { margin-top: 0; }
.emphasis__big { display: block; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1; letter-spacing: -0.02em; color: var(--brand-ink); }

/* CTA panel — filled rounded card with an accent phone button (also restyles
   any .article__cta a post body embeds, so both match) */
.post__cta, .article__cta { margin-top: clamp(2.2rem, 5vw, 3rem); text-align: center;
  background: var(--brand-soft); border: 1px solid color-mix(in srgb, var(--brand) 18%, var(--border));
  border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.4rem); }
.post__cta h2, .article__cta h2 { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-top: 0; color: var(--ink); }
.post__cta p, .article__cta p { color: var(--muted); margin: 0.6rem auto 1.3rem; max-width: 44ch; }
.post__cta .post__cta-sub { margin: 0.9rem auto 0; max-width: none; font-size: 0.85rem; font-weight: 600; color: var(--muted); }

/* Related posts foot (reuses the shared .xlinks list styling) */
.post__more { margin-top: clamp(2.2rem, 5vw, 3rem); padding-top: 1.8rem; border-top: 1px solid var(--border); }
.post__more > h2 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 1rem; }

/* "Not legal advice" note in the footer (law/pricing posts only) */
.post__disclaimer { padding-block: 1rem; }
.post__disclaimer .wrap { font-size: 0.82rem; font-style: italic; }

@media (max-width: 640px) { .stat-row { grid-template-columns: 1fr; } }
/* end BLOG POST LAYOUT v2 */


/* ── MOTION SYSTEM ─────────────────────────────────────────────────
   Thesis: an estimate is written, then handed over. Three registers, one
   curve (--ease), and nothing here is load-bearing — the page is complete
   and readable before a script runs.

     written    section headings are laid down left-to-right, like ink
     settle     content arrives quietly; siblings that read as a list
                stagger as one, with the total delay capped
     handoff    the lead form's success is the one authored sequence,
                and it is CSS-only so it never depends on the GSAP CDN

   `html.motion` is set by main.js only when it takes over motion, so a
   reduced-motion visitor gets the native, un-animated behavior instead of
   a half-applied one. Feedback states below stay under 200ms. */

/* Press: the surface acknowledges the tap before the network does. */
.btn:active { transform: scale(0.985); }
.btn--cta:active { transform: translateY(0) scale(0.985); }
.callbar { transition: background-color 0.15s var(--ease), transform 0.15s var(--ease); }
.callbar:active { background: var(--cta-press); transform: translateY(1px); }
.reviews-nav:active { transform: translateY(-50%) scale(0.94); }
@media (prefers-reduced-motion: reduce) {
  .btn:active, .btn--cta:active, .callbar:active { transform: none; }
  .callbar { transition: none; }
  .reviews-nav:active { transform: translateY(-50%); }
}

/* Working: the submit button holds a drawn arc while the lead is in flight,
   so a slow network reads as progress rather than a dead control. */
.btn[data-busy] { pointer-events: none; }
.btn[data-busy]::before {
  content: ""; flex: none; width: 1em; height: 1em; border-radius: 50%;
  border: 2px solid currentColor; border-right-color: transparent;
  animation: btn-working 0.7s linear infinite;
}
@keyframes btn-working { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .btn[data-busy]::before { animation-duration: 2.2s; } }

/* Sticky nav: the frame earns its shadow only once the page moves under it. */
.nav { transition: box-shadow 0.24s var(--ease); }
.nav.is-stuck { box-shadow: var(--shadow-sm); }
@media (prefers-reduced-motion: reduce) { .nav { transition: none; } }

/* Mobile nav: the links deal out on open. Closing is instant — an exit
   should never make someone wait, and display:none keeps the closed links
   out of the tab order entirely. */
@media (max-width: 860px) {
  html.motion .nav--open .nav__links a { animation: nav-deal 0.3s var(--ease) both; }
  html.motion .nav--open .nav__links a:nth-child(2) { animation-delay: 0.03s; }
  html.motion .nav--open .nav__links a:nth-child(3) { animation-delay: 0.06s; }
  html.motion .nav--open .nav__links a:nth-child(4) { animation-delay: 0.09s; }
  html.motion .nav--open .nav__links a:nth-child(5) { animation-delay: 0.11s; }
  html.motion .nav--open .nav__links a:nth-child(n + 6) { animation-delay: 0.13s; }
}
@keyframes nav-deal { from { opacity: 0; transform: translateY(-7px); } }

/* FAQ: <details> keeps the semantics and the no-JS behavior; when main.js
   takes over, the item's own height is animated so the answer opens instead
   of snapping. main.js animates the <details> box rather than the answer
   inside it: the UA wraps disclosure content in a ::details-content box that
   is render-skipped while closed, and animations on anything inside it report
   stale geometry and never tick. .faq__item already clips with overflow:hidden.
   The + turns back the moment a collapse starts, not when it finishes. */
html.motion .faq__item[data-collapsing] > summary::after { transform: none; }

/* Reviews carousel: the wrap from last back to first is a jump, so dim the
   track across it — the reset reads as deliberate instead of as a glitch. */
.reviews-carousel .reviews { transition: opacity 0.15s var(--ease); }
.reviews-carousel[data-wrapping] .reviews { opacity: 0.25; }
@media (prefers-reduced-motion: reduce) {
  .reviews-carousel .reviews { transition: none; }
  .reviews-carousel[data-wrapping] .reviews { opacity: 1; }
}

/* ── The handoff ───────────────────────────────────────────────────
   The one authored sequence on the page, and the only place it could be
   worth ~700ms: the form is handed back, the receipt is stamped, the
   check is drawn, and the phone number is the last thing to land. */
html.motion .form.is-handing-off { opacity: 0; transform: translateY(-6px); transition: opacity 0.17s var(--ease), transform 0.17s var(--ease); }

.form-success { text-align: center; padding: 1.75rem 0.5rem; }
.form-success:focus { outline: none; }
.form-success:focus-visible { outline: 3px solid var(--cta); outline-offset: 4px; box-shadow: 0 0 0 8px var(--on-cta); border-radius: var(--radius); }
.form-success__ring { display: grid; place-items: center; width: 64px; height: 64px; margin: 0 auto 1.1rem; border-radius: 50%; background: var(--live); }
.form-success h3 { font-size: 1.4rem; margin: 0 0 0.5rem; }
.form-success p { color: var(--muted); margin: 0 0 0.35rem; }
.form-success p:last-child { margin-bottom: 0; }
.form-success a { color: inherit; font-weight: 700; }
.section--dark .form-success p, .book .form-success p { color: var(--muted); }

html.motion .form-success__ring { animation: fs-stamp 0.42s var(--ease) both; }
html.motion .form-success__check { stroke-dasharray: 30; stroke-dashoffset: 30; animation: fs-draw 0.4s var(--ease) 0.22s both; }
html.motion .form-success__line { animation: fs-land 0.42s var(--ease) both; }
html.motion .form-success__line:nth-child(2) { animation-delay: 0.3s; }
html.motion .form-success__line:nth-child(3) { animation-delay: 0.37s; }
html.motion .form-success__line:nth-child(4) { animation-delay: 0.44s; }
@keyframes fs-stamp { from { opacity: 0; transform: scale(0.72); } }
@keyframes fs-draw { to { stroke-dashoffset: 0; } }
@keyframes fs-land { from { opacity: 0; transform: translateY(9px); } }
/* end MOTION SYSTEM */

/* Answer block — the AEO extraction unit.
   The first paragraph of a generated area page is a 40-60 word, self-contained
   answer written to be quoted whole by an answer engine. Giving it a visible
   identity serves both readers (the answer is above the fold, not buried) and
   the `speakable` SpeakableSpecification in the page schema, which points at
   this exact selector. Colours come from each template's own tokens so the
   block belongs to its site rather than importing a foreign accent. */
.answer,
.area-page .article__body > p:first-child {
  background: var(--brand-soft);
  /* A full hairline, not a 3px left tab. Counterweight separates with rules,
     never with thick side accents, and a coloured side tab is the most
     recognisable tell of a generated UI — which this skin argues against. */
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.2rem;
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--ink);
}
.article__body > .answer:first-child,
.area-page .article__body > p:first-child { margin-top: 0; }

/* "We also cover" card on the service-areas grid.
   Areas without their own page are listed here rather than each getting a card
   with an identical generic paragraph — that repeated the same sentence once per
   area (11 times on a 17-area site) and made the grid look half-finished, with
   some cards linking and some not for reasons a visitor can't see. */
.area-block--list { grid-column: 1 / -1; }
.area-list {
  list-style: none; margin: 0.6rem 0 0.9rem; padding: 0;
  display: flex; flex-wrap: wrap; gap: 0.4rem 0.5rem;
}
.area-list li {
  background: var(--brand-soft); border: 1px solid var(--border);
  border-radius: var(--radius-pill); padding: 0.3rem 0.75rem;
  font-size: 0.92rem; color: var(--ink);
}

/* Citable fact table on answer pages.
   Answer engines quote numbers, and marked-up rows are the most liftable shape
   for a set of them. Scrolls inside its own container so a wide price table on a
   phone never makes the whole page scroll sideways. */
.fact-table__scroll { overflow-x: auto; margin: 1.4rem 0; -webkit-overflow-scrolling: touch; }
.fact-table { width: 100%; min-width: 22rem; border-collapse: collapse; font-size: 0.97rem; }
.fact-table caption {
  caption-side: top; text-align: left; padding-bottom: 0.6rem;
  font-size: 0.9rem; color: var(--muted); line-height: 1.45;
}
.fact-table th, .fact-table td {
  padding: 0.6rem 0.9rem; border-bottom: 1px solid var(--border); text-align: left;
  font-variant-numeric: tabular-nums;
}
.fact-table thead th {
  font-family: var(--font-display); background: var(--surface);
  white-space: nowrap; font-size: 0.9rem;
}
.fact-table tbody th { font-weight: 600; }
.fact-table tbody tr:last-child th, .fact-table tbody tr:last-child td { border-bottom: 0; }

/* ── Skin: Counterweight — type ─────────────────────────────────────────────
   Two moves live in the mark-up (.part and the panel band); this block is the
   type scale they sit in. Structure, motion contract and class vocabulary are
   untouched.

   SENTENCE CASE at hero scale, which is a deliberate break from the block this
   file inherited. That block came from pressure-washing by way of tire-shop and
   forced uppercase on .hero h1 / .lede h2 at a scale tuned for Saira Condensed
   — two faces and two trades ago. Geologica is a squared technical grotesque,
   and set uppercase at hero size it reads as a stencil; the headline here is a
   sentence making a claim, and a claim has to be readable before it is loud.
   Uppercase is kept where the fleet system puts it: buttons, labels, eyebrows.

   "Garage door" is a long-word trade, so the measure is checked rather than
   assumed — 17ch holds the city name on its own line at every breakpoint
   instead of orphaning it (see the fleet Measure Rule).
   ─────────────────────────────────────────────────────────────────────────── */
.hero h1, .lede h2, .book__copy h2 { font-weight: 700; letter-spacing: -0.015em; line-height: 1.06; }
.hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); max-width: 17ch; }
.lede h2 { font-size: clamp(1.55rem, 2.9vw, 2.2rem); max-width: 30ch; }
/* 56ch is a BODY-font measure. A display heading sets fewer characters in the
   same width, so the measure belongs on the paragraph and the heading gets its
   own. */
.lede { max-width: none; }
.lede p { max-width: 58ch; }
.book__copy h2 { max-width: 20ch; }
.btn, .callbar { text-transform: uppercase; font-weight: 700; letter-spacing: 0.04em; }
/* The label tier is the one place this skin does set caps — eyebrow, kicker and
   the small tags. Tracked open, because Geologica sets caps tightly. */
.eyebrow, .hero__kicker, .article__tag { text-transform: uppercase; letter-spacing: 0.12em; }

/* Photo-optional: every image box carries a drawn fallback so a missing or
   not-yet-shot photograph reads as an intentional surface, never as a break.
   The dark gradient is a steel door section under a driveway light; the light
   one is primed galvanised stock.
   Class names are the fleet's real ones (.feature__img / .scard__img), not the
   generic ones — targeting a class that does not exist is how this silently
   applied to the hero alone on the first pass. */
.hero__bg {
  background-image: linear-gradient(158deg, var(--dark-2) 0%, var(--band) 46%, #0b0e11 100%);
  background-size: cover; background-position: center;
}
.feature__img, .scard__img, .split__media img {
  /* Ends on --surface-2, not --bg: against this skin's pure-white ground a
     gradient that fades to white reads as an empty box rather than a surface. */
  background-image: linear-gradient(158deg, var(--border) 0%, var(--surface-2) 55%, var(--surface) 100%);
  background-size: cover; background-position: center;
}
/* On the dark band the light gradient painted a grey slab. Steel, not primer. */
.section--dark .split__media img, .section--dark .feature__img, .section--dark .scard__img {
  background-image: linear-gradient(158deg, var(--dark-2) 0%, var(--band) 55%, #0b0e11 100%);
}

/* A broken <img> still paints Chrome's own glyph and its alt text on top of that
   background. Pseudo-elements DO render on broken replaced elements, so an
   ::after covering the box hides both and leaves the drawn surface clean. Once
   real photographs exist the element is no longer broken, the photo paints over
   the gradient, and this layer sits behind it doing nothing. */
/* .hero__bg is EXCLUDED from position: relative — it is already absolute
   (see .hero__bg above) and this rule, coming later at equal specificity,
   would win and drop it into normal flow. With no images that was invisible
   because a broken img collapses to nothing; with a real 1800px photo it
   pushed the hero headline 900px down the page. Absolute already gives the
   ::after its containing block, so it needs nothing here. */
.feature__img, .scard__img, .split__media img { position: relative; }
.hero__bg, .feature__img, .scard__img, .split__media img { color: transparent; }
.hero__bg::after, .feature__img::after, .scard__img::after, .split__media img::after {
  content: ""; position: absolute; inset: 0;
  background-image: inherit; background-size: cover; background-position: center;
  border-radius: inherit;
}

/* ---------------------------------------------------------------------------
   SIGNATURE 1 — the named-part mark (.part)

   This skin's whole argument is that the company names the part before it
   prices the work, so a part name is set differently from the sentence holding
   it: amber as TYPE (--brand-ink, 6.33:1 on white) with a rule beneath in the
   live accent. It reads as a term of art a technician pointed at, and unlike a
   filled chip it carries its own contrast rather than borrowing a ground's.

   Used SPARINGLY — only where the page is actually making the point. A page
   that marks every part name has marked nothing.

   Deliberately NOT tire-shop's .spec chip. That template's signature is a
   tabular numeric tier on a filled --surface-2 ground; cloning it would give
   two templates the same idea in different paint. Numbers here (.spec, below)
   are kept quiet on purpose so .part is the one inline mark that stands out.
   --------------------------------------------------------------------------- */
.part {
  color: var(--brand-ink);
  font-weight: 600;
  border-bottom: 2px solid color-mix(in srgb, var(--cta) 70%, transparent);
  padding-bottom: 0.04em;
}
/* On dark bands --brand-ink goes muddy; the lifted amber is the legible one. */
.section--dark .part, .urgency .part, .book .part, .footer .part {
  color: var(--hl-on-dark);             /* 11.00:1 on --band */
  border-bottom-color: color-mix(in srgb, var(--hl-on-dark) 55%, transparent);
}

/* A quiet numeric mark. Display face + tabular figures so a measurement does
   not read in the same voice as the prose, and nothing else — no chip, no
   border. The emphasis budget on this skin belongs to .part. */
.spec {
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
  white-space: nowrap;
}
.section--dark .spec, .urgency .spec, .book .spec, .footer .spec { color: var(--on-band); }

/* ---------------------------------------------------------------------------
   SIGNATURE 2 — the panel band

   A sectional garage door is horizontal panels, and that is the one shape this
   trade owns. Every dark ground on the site carries it: hairlines of --on-band
   at 5%, spaced at a panel's proportion, so a dark band reads as a closed door
   standing behind the copy rather than as a rectangle of paint.

   Kept at 5% deliberately. It has to survive white body text at 17.67:1 without
   competing with it; anything stronger turns a band into a pattern and the
   section stops being punctuation.
   --------------------------------------------------------------------------- */
.section--dark, .urgency, .book, .footer {
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 95px,
    color-mix(in srgb, var(--on-band) 5%, transparent) 95px,
    color-mix(in srgb, var(--on-band) 5%, transparent) 97px
  );
}
/* Service cards that are whole links (the homepage grid fans out to the
   per-service city pages). Focus uses --cta, per the fleet's uniform rule. */
.scard--link { color: inherit; text-decoration: none; }
.scard--link .scard__body .link { display: inline-block; margin-top: 0.45rem; font-size: 0.9rem; }
.scard--link:hover .scard__body h3 { color: var(--brand-ink); }
.scard--link:focus-visible { outline: 3px solid var(--cta); outline-offset: 3px; box-shadow: 0 0 0 7px var(--on-cta); }

/* Short viewports — a laptop with browser chrome is often under 700px tall. The
   hero's 6rem block padding pushed the primary CTA under the fold there, and on
   a lead-gen page the CTA is the entire job. Tall viewports keep the full air. */
@media (max-height: 760px) {
  .hero { padding-block: clamp(1.5rem, 4vh, 2.75rem); }
  .hero__points { margin-top: 0.9rem; }
  /* The fixed bottom-left trust badge lands on top of the hero's phone CTA once
     the hero is compressed. The badge is an ornament; the CTA is the job. */
  .gbadge { display: none; }
}

/* Operator identity line — reconciles the site brand with the name on the
   Google Business Profile this site links to. Renders only when they differ. */
.operator-line { margin: 6px 0 0; font-size: .875em; color: var(--muted, inherit); }

/* Contact page: keep booking ahead of secondary details on small screens. */
.contact-page { --contact-field-border: #858585; }
.contact-page .section--head { padding-block: 2.5rem 2rem; }
.contact-page .lede { max-width: 48rem; }
.contact-page .lede h1 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); line-height: 1.15; }
.contact-page .book { padding-block: clamp(2rem, 4vw, 3.5rem); }
.contact-page .book__inner { align-items: start; }
.contact-page .book__copy { order: -1; }
.contact-page .book__copy h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); max-width: 22ch; }
.contact-page .book__phone { margin-top: 1rem; font-size: clamp(1.8rem, 3vw, 2.2rem); }
.contact-page .contact-address { margin-top: 1.3rem; font-style: normal; line-height: 1.65; }
.contact-page .contact-directions { display: inline-flex; align-items: center; gap: 0.3rem; min-height: 44px; color: #fff; font-weight: 600; text-underline-offset: 0.2em; }
.contact-page .book__hours { margin-top: 1rem; font-size: 1rem; }
.contact-page .contact-email { overflow-wrap: anywhere; font-size: 1rem; }
.contact-page .contact-email a { display: inline-flex; align-items: center; min-height: 44px; }
.contact-page .contact-weekly-hours { margin-top: 1rem; max-width: 25rem; }
.contact-page .contact-weekly-hours summary { padding-block: 0.65rem; cursor: pointer; min-height: 44px; font-weight: 600; }
.contact-page .contact-weekly-hours summary:focus-visible { outline: 3px solid var(--cta); outline-offset: 3px; box-shadow: 0 0 0 7px var(--on-cta); }
.contact-page .contact__hours > div { display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid rgb(255 255 255 / 25%); padding-block: 0.5rem; font-size: 0.95rem; }
.contact-page .contact__hours > div span:last-child { font-variant-numeric: tabular-nums; }
.contact-page .contact-coverage { font-size: 0.95rem; margin-top: 1.3rem; }
.contact-page .contact-coverage a { text-underline-offset: 0.2em; }
.contact-page .form--book { color: var(--ink); min-width: 0; }
.contact-page .form--book > *, .contact-page .field { min-width: 0; }
.contact-page .form--book .btn { white-space: normal; }
.contact-page .contact-form-intro h2 { font-size: 1.5rem; line-height: 1.2; color: var(--ink); }
.contact-page .contact-form-intro p { margin-top: 0.65rem; color: var(--muted); line-height: 1.55; font-size: 0.95rem; }
.contact-page .contact-required { font-weight: 400; color: var(--muted); font-size: 0.8rem; }
.contact-page input:not(.hp):not([type="checkbox"]):not([type="radio"]), .contact-page select, .contact-page textarea { border-color: var(--contact-field-border); min-height: 46px; }
.contact-page input:focus, .contact-page select:focus, .contact-page textarea:focus { border-color: var(--cta); }
.contact-page #service-request { scroll-margin-top: 12rem; }
.contact-page .form--book:focus { outline: none; }
.contact-page .form--book:focus-visible { outline: 3px solid var(--cta); outline-offset: 5px; box-shadow: 0 0 0 9px var(--on-cta); }
@media(max-width: 860px) {
  .contact-page .book__inner { gap: 2rem; }
  .contact-page .form--book { order: -1; }
  .contact-page .book__copy { order: 0; border-top: 1px solid rgb(255 255 255 / 25%); padding-top: 2rem; }
  .contact-page .section--head { padding-block: 1.5rem; }
}
@media(max-width: 460px) {
  .contact-page .contact__hours > div { font-size: 0.875rem; gap: 0.5rem; }
}

.contact-page .book__hours:empty { display: none; }
.contact-page .contact-form-intro a { color: var(--ink); font-weight: 700; text-underline-offset: 0.2em; }
