/* =============================================================
   Hudson Valley Headlight Restoration
   Shared stylesheet — mobile-first, light automotive theme
   No external requests. System font stack for speed.
   ============================================================= */

:root {
  /* Light theme. --bg is the page canvas; --bg-2 is the alternating section
     tint; --bg-3 is the slightly deeper strip (top banner, guarantee bar). */
  --bg: #ffffff;
  --bg-2: #f7f9fc;
  --bg-3: #eef2f7;
  --surface: #ffffff;    /* cards — separated from --bg by --line + --shadow */
  --line: #e3e9f0;
  --text: #0f172a;       /* near-black navy, matches the logo wordmark */
  --muted: #5b6b80;
  --brand: #2563eb;      /* logo blue — primary + CTA (matches wordmark) */
  --brand-2: #1d4ed8;    /* deeper blue — links/hover, readable on white */
  --brand-ink: #ffffff;  /* white text on bright-blue buttons/badges */
  --accent: #1e3a5f;     /* deep navy — used for high-contrast dark cards */
  --ink-card: #101a2b;   /* dark card background on a light page */
  --good: #16a34a;
  --danger: #dc2626;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --radius: 14px;
  --radius-sm: 10px;
  --wrap: 1120px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3 { line-height: 1.15; margin: 0 0 0.5em; font-weight: 800; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 6vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 4.5vw, 2.4rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section--tight { padding: 44px 0; }
.section--alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.eyebrow {
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  margin: 0 0 10px;
}
.lead { color: var(--muted); font-size: 1.08rem; max-width: 62ch; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 15px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--call {
  background: linear-gradient(180deg, var(--brand-2), var(--brand));
  color: var(--brand-ink);
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.28);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--brand); color: var(--brand-2); }
.btn--block { width: 100%; justify-content: center; }
.btn__sub { font-weight: 600; font-size: 0.78rem; opacity: 0.85; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 84px;
}
/* flex:none — without it the brand link shrinks under nav pressure and
   horizontally squashes the logo out of aspect. */
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--text); flex: none; }
.brand:hover { text-decoration: none; }
/* Company logo (images/logo.png) — dark-background wordmark. Sized by height
   so the aspect ratio is preserved; width/height attrs on the <img> reserve
   space and prevent layout shift. */
.brand__logo {
  height: 60px;
  width: auto;
  flex: none;
}
.brand__logo--footer { height: 46px; margin-bottom: 4px; }

.nav__links { display: none; align-items: center; gap: 22px; }
.nav__links a { color: var(--muted); font-weight: 600; font-size: 0.95rem; }
.nav__links a:hover { color: var(--text); text-decoration: none; }
/* Header phone pill — same treatment as the strip above, one size up so it
   reads as the header's primary action. Hidden until the desktop nav appears. */
.nav__phone {
  display: none;
  align-items: center; gap: 8px;
  color: var(--brand-ink);
  background: linear-gradient(180deg, var(--brand-2), var(--brand));
  font-weight: 900; font-size: 1.14rem; letter-spacing: 0.01em;
  white-space: nowrap; flex: none;
  padding: 11px 22px; border-radius: 999px;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.42);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.nav__phone:hover {
  color: var(--brand-ink); text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 7px 22px rgba(37, 99, 235, 0.6);
}
.nav__phone:active { transform: translateY(0); }

.nav__toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav__toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.2s; }
.nav[data-open="true"] .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav[data-open="true"] .nav__toggle span:nth-child(2) { opacity: 0; }
.nav[data-open="true"] .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.mobile-menu[data-open="true"] { display: block; }
.mobile-menu a {
  display: block; padding: 14px 20px; color: var(--text);
  border-top: 1px solid var(--line); font-weight: 600;
}
.mobile-menu a:hover { background: var(--bg-3); text-decoration: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;   /* clips the cutout's bleed at every width */
  padding: 30px 0 36px;
  background:
    radial-gradient(1200px 480px at 78% -10%, rgba(37, 99, 235, 0.09), transparent 60%),
    radial-gradient(900px 500px at 8% 8%, rgba(37, 99, 235, 0.05), transparent 55%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  border-bottom: 1px solid var(--line);
}
.hero__tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37, 99, 235, 0.10);
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: var(--brand-2);
  padding: 6px 14px; border-radius: 999px;
  font-size: 0.82rem; font-weight: 700; margin-bottom: 18px;
}
/* Pulsing "live" dot in the hero badge. Slow (1.8s) on purpose — anything
   faster than 3 flashes/sec is a seizure risk under WCAG 2.3.1. Motion is
   disabled entirely under prefers-reduced-motion (see bottom of file). */
.pulse-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--good);
  flex: none;
  animation: pulse-dot 1.8s ease-out infinite;
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.65); }
  70%  { box-shadow: 0 0 0 9px rgba(22, 163, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}
.hero h1 { margin-bottom: 12px; font-size: clamp(1.9rem, 4.3vw, 3rem); }
.hero h1 .hl { color: var(--brand); }
.hero__sub { color: var(--muted); font-size: 1.1rem; max-width: 60ch; margin-bottom: 18px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__kicker {
  color: var(--text); font-weight: 800; letter-spacing: 0.01em;
  font-size: 1.02rem; margin-bottom: 10px;
}
/* Hero splits into copy + right column at 980px; single column below. */
.hero__grid { display: grid; gap: 30px; align-items: start; }
/* Right column: quote card with Richard's cutout tucked underneath it. */
.hero__side { display: grid; gap: 10px; }
/* Transparent cutout — no border/box-shadow (they'd frame the empty alpha
   area); drop-shadow traces the actual subject instead. */
/* Mobile: bleeds to the right screen edge and sits on the hero's bottom
   divider, same idea as desktop — reads as part of the page, not a pasted
   card. .hero has overflow:hidden so the bleed clips cleanly. */
.hero__cutout {
  width: calc(100% + 20px);
  height: auto;
  justify-self: end;
  margin-right: -20px;   /* cancels .wrap's 20px padding */
  margin-bottom: -36px;  /* cancels the hero's bottom padding */
}
/* Desktop: instead of floating as a shadowed card, the cutout is anchored to
   the hero's bottom edge and bleeds off the right, so it reads as part of the
   scene rather than a pasted sticker. .hero gets overflow:hidden, so whatever
   crosses the boundary is cropped cleanly against the section divider. */
@media (min-width: 980px) {
  .hero__cutout {
    max-width: none;
    width: calc(100% + 140px);
    justify-self: end;
    /* Cropped to a short band: object-fit trims the wheels and lower body so
       the photo can be wide (and Richard large) without pushing the fold.
       'top' keeps his head and the truck's cab in frame. */
    height: 240px;
    object-fit: cover;
    object-position: center top;
    margin-right: -140px;  /* bleed past the column toward the screen edge */
    margin-bottom: -48px;  /* cancels hero bottom padding: sits on the divider */
  }
}

/* Four credential items under the hero copy. */
.trust-row {
  list-style: none; padding: 0; margin: 16px 0 20px;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 18px;
}
.trust-row li {
  display: flex; align-items: center; gap: 10px;
  color: var(--muted); font-size: 0.86rem; line-height: 1.35;
}
.trust-row strong { color: var(--text); font-weight: 800; }
.trust-row__ic { font-size: 1.25rem; flex: none; }

/* ---------- Hero quote card ----------
   Light card against the dark hero so it reads as THE focal point. The submit
   is an <a href="sms:…"> so it still works with JS disabled; js/main.js only
   upgrades it by folding the field values into the message body. */
.quote {
  background: var(--surface);
  color: var(--text);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.quote__title { color: var(--text); font-size: 1.42rem; margin: 0 0 4px; text-align: center; }
.quote__sub { color: var(--muted); text-align: center; font-size: 0.94rem; margin-bottom: 18px; }
.quote__field {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 0 12px; margin-bottom: 10px;
}
.quote__field:focus-within { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(37,99,235,0.16); }
.quote__ic { font-size: 1rem; flex: none; opacity: 0.75; }
.quote__field input {
  flex: 1; width: 100%;
  border: 0; outline: 0; background: transparent;
  font: inherit; font-size: 0.98rem; color: var(--text);
  padding: 13px 0;
}
.quote__field input::placeholder { color: var(--muted); }
.quote__send { margin-top: 6px; justify-content: center; text-align: center; }
.quote__note { color: var(--muted); font-size: 0.8rem; text-align: center; margin: 12px 0 0; }

/* ---------- $25-off promo popup ----------
   Injected by js/main.js, so it never exists for no-JS visitors. Reuses the
   .quote__field styles above so the popup form matches the hero card. */
.promo-backdrop {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(15, 23, 42, 0.55);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  overflow-y: auto;
}
.promo-backdrop[hidden] { display: none; }
.promo {
  position: relative;
  width: 100%; max-width: 420px;
  background: var(--surface); color: var(--text);
  border-radius: var(--radius);
  padding: 26px 22px 20px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.28);
  animation: promo-in 0.18s ease-out;
}
@keyframes promo-in { from { opacity: 0; transform: translateY(10px) scale(0.985); } }
.promo__close {
  position: absolute; top: 8px; right: 10px;
  background: none; border: 0; cursor: pointer;
  font-size: 1.7rem; line-height: 1; color: var(--muted);
  padding: 4px 8px; border-radius: 8px;
}
.promo__close:hover { color: var(--text); }
.promo__badge {
  display: inline-block;
  background: var(--brand); color: #fff;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; margin: 0 0 12px;
}
.promo__title { color: var(--text); font-size: 1.5rem; margin: 0 0 10px; }
/* Shows the discount only — see js/main.js. There is deliberately no
   struck-through "was" price, because the final price isn't fixed. */
.promo__price { margin: 0 0 8px; }
.promo__now { font-size: 2.4rem; font-weight: 900; color: var(--brand); letter-spacing: -0.02em; }
.promo__sub { color: var(--muted); font-size: 0.92rem; margin: 0 0 16px; }
.promo__send { margin-top: 4px; justify-content: center; text-align: center; }
.promo__dismiss {
  display: block; width: 100%;
  background: none; border: 0; cursor: pointer;
  color: var(--muted); font: inherit; font-size: 0.85rem;
  padding: 12px 0 2px;
}
.promo__dismiss:hover { color: var(--text); text-decoration: underline; }

/* ---------- Guarantee bar ---------- */
.guarantee {
  background: var(--bg-3);
  border-bottom: 1px solid var(--line);
}
.guarantee__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 8px 14px; padding: 14px 20px; text-align: center;
}
.guarantee strong { letter-spacing: 0.06em; font-size: 0.9rem; }
.guarantee__ic { font-size: 1.1rem; }
.guarantee__sub { color: var(--muted); font-size: 0.88rem; }

/* ---------- Dual CTA band ---------- */
.cta-band { display: grid; gap: 14px; margin: 26px 0 0; }
.cta-band__phone {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px 20px;
  color: var(--text);
}
.cta-band__phone:hover { text-decoration: none; border-color: var(--brand); }
.cta-band__ic { font-size: 1.6rem; flex: none; }
.cta-band__ic--lg { font-size: 1.9rem; }
.cta-band__label { display: block; color: var(--muted); font-size: 0.85rem; }
.cta-band__num { display: block; font-size: 1.5rem; letter-spacing: -0.02em; }
/* Deliberately dark on the light page — it's the loudest block on the page
   and the contrast is what makes it read as the primary action. */
.cta-band__push {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px;
  background: linear-gradient(135deg, var(--ink-card), var(--accent));
  border: 1px solid var(--accent);
  border-radius: var(--radius); padding: 20px;
  color: #fff;
}
.cta-band__body { flex: 1 1 260px; }
.cta-band__push h2 { color: #fff; }
.cta-band__push p { color: #c3d0e2; }
.cta-band__body h2 { font-size: 1.3rem; margin-bottom: 4px; }
.cta-band__body p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* ---------- Generic grids / cards ---------- */
.grid { display: grid; gap: 16px; }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); margin-bottom: 0; }
.card__ic { font-size: 1.6rem; margin-bottom: 10px; display: block; }

/* ---------- Before / After ---------- */
.ba {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  user-select: none;
  touch-action: pan-y;
  background: var(--bg-3);
}
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; }
.ba__after { z-index: 1; }
.ba__before { z-index: 2; clip-path: inset(0 45% 0 0); }
.ba__label {
  position: absolute; bottom: 10px; z-index: 3;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 5px 10px; border-radius: 6px;
  background: rgba(0, 0, 0, 0.6); color: #fff;
}
.ba__label--before { left: 10px; }
.ba__label--after { right: 10px; }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: 55%; z-index: 4;
  width: 44px; transform: translateX(-50%); cursor: ew-resize;
  display: flex; align-items: center; justify-content: center;
}
.ba__handle::before { content: ""; position: absolute; top: 0; bottom: 0; width: 3px; background: var(--brand); }
.ba__grip {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--brand); color: var(--brand-ink); font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.5); font-size: 0.9rem; z-index: 1;
}
/* Real before/after photos fill the 4:3 frame edge-to-edge. Both images must
   be the same dimensions or the slider won't line up as you drag. */
.ba__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Gallery ----------
   Masonry via CSS multi-column. These are pre-composited before/after photos
   in MIXED orientations (some stacked vertically, some side by side), so they
   must NEVER be cropped to a uniform tile — cropping would cut off half the
   comparison. Columns let each image keep its own aspect ratio. */
.gallery {
  columns: 1;
  column-gap: 16px;
  margin-top: 26px;
}
.gallery figure {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin: 0 0 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery img { width: 100%; height: auto; display: block; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; gap: 16px; }
.price-grid--single { max-width: 640px; margin-left: auto; margin-right: auto; }
.price-grid--single .price { padding: 28px 32px; }
.price-grid--single .price__name { font-size: 1.05rem; }
.price-grid--single .price__amt-label { font-size: 0.95rem; font-weight: 700; color: var(--muted); margin-top: 10px; }
.price-grid--single .price__amt { font-size: 2.6rem; line-height: 1.1; margin: 2px 0 0; }
.price-grid--single .price__desc { margin: 10px 0 18px; }
.price-grid--single .price ul {
  display: grid; grid-template-columns: 1fr; gap: 0; margin: 0 0 20px;
}
.price-grid--single .price li { border-bottom: 1px solid var(--line); }
.price-grid--single .price li:last-child { border-bottom: 0; }
@media (min-width: 560px) {
  .price-grid--single .price ul { grid-template-columns: 1fr 1fr; column-gap: 24px; }
  .price-grid--single .price li:nth-last-child(-n+2) { border-bottom: 0; }
}
.price {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px; position: relative;
  display: flex; flex-direction: column;
}
.price--featured { border-color: var(--brand); box-shadow: 0 0 0 1px var(--brand) inset, var(--shadow); }
.price__badge {
  position: absolute; top: -12px; left: 24px;
  background: var(--brand); color: var(--brand-ink); font-weight: 800;
  font-size: 0.72rem; padding: 4px 12px; border-radius: 999px; letter-spacing: 0.05em;
}
.price__name { font-size: 1.15rem; font-weight: 800; margin-bottom: 4px; }
.price__amt { font-size: 2.2rem; font-weight: 900; color: var(--brand-2); }
.price__amt small { font-size: 0.85rem; color: var(--muted); font-weight: 600; }
.price__desc { color: var(--muted); font-size: 0.95rem; margin: 8px 0 16px; }
.price ul { list-style: none; padding: 0; margin: 0 0 20px; }
.price li { padding: 7px 0 7px 26px; position: relative; color: var(--text); font-size: 0.96rem; border-bottom: 1px solid var(--line); }
.price li:last-child { border-bottom: 0; }
.price li::before { content: "✓"; position: absolute; left: 0; color: var(--good); font-weight: 900; }
.price .btn { margin-top: auto; }
.note { color: var(--muted); font-size: 0.9rem; }

/* ---------- Why / safety ---------- */
.split { display: grid; gap: 26px; align-items: center; }

/* ---------- Town page photo ----------
   One real photo per service-area page (a different one on each, so the pages
   differ visually as well as in copy). Capped in height so a tall stacked
   before/after doesn't dominate the page. */
.town-photo { margin: 22px 0 26px; }
.town-photo img {
  width: 100%; height: auto;
  max-height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.town-photo figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---------- Owner / locally owned ---------- */
.owner__photo {
  width: 100%; height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.owner__sign {
  color: var(--brand-2);
  font-weight: 800;
  margin-bottom: 20px;
}
.stat-row { display: grid; gap: 14px; }
.stat {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 18px;
}
.stat__num { font-size: 1.9rem; font-weight: 900; color: var(--brand); line-height: 1; }
.stat__lbl { color: var(--muted); font-size: 0.9rem; margin-top: 6px; }

.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { padding: 10px 0 10px 34px; position: relative; border-bottom: 1px solid var(--line); color: var(--muted); }
.checklist li:last-child { border-bottom: 0; }
.checklist li::before {
  content: "!"; position: absolute; left: 0; top: 8px;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255, 93, 93, 0.15); color: var(--danger);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.85rem;
}
.checklist li b { color: var(--text); }

/* ---------- Service area ---------- */
.town-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.town {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 12px 14px;
  color: var(--text); font-weight: 600; font-size: 0.95rem;
}
.town:hover { border-color: var(--brand); color: var(--brand-2); text-decoration: none; }
.town .pin { color: var(--brand); }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 14px; }
.step { position: relative; padding: 18px 18px 18px 62px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 16px; top: 16px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--brand); color: var(--brand-ink); font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.step h3 { margin-bottom: 4px; }
.step p { color: var(--muted); margin: 0; }

/* ---------- FAQ ---------- */
.faq { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq details { border-bottom: 1px solid var(--line); background: var(--surface); }
.faq details:last-child { border-bottom: 0; }
.faq summary {
  cursor: pointer; padding: 16px 46px 16px 18px; font-weight: 700;
  position: relative; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 18px; top: 50%;
  transform: translateY(-50%); color: var(--brand); font-size: 1.4rem; font-weight: 400;
}
.faq details[open] summary::after { content: "\2013"; }
.faq .faq__body { padding: 0 18px 18px; color: var(--muted); }

/* ---------- Contact ---------- */
.contact-card {
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
}
.contact-list { list-style: none; padding: 0; margin: 18px 0 0; }
.contact-list li { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.contact-list li:last-child { border-bottom: 0; }
.contact-list .ic {
  width: 40px; height: 40px; flex: none; border-radius: 10px;
  background: rgba(37, 99, 235, 0.12); color: var(--brand);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.contact-list a { color: var(--text); font-weight: 700; }
.contact-list small { display: block; color: var(--muted); font-weight: 500; }

/* ---------- Sticky mobile call bar ---------- */
.call-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: flex; gap: 10px; padding: 10px 14px;
  background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}
.call-bar .btn { flex: 1; padding: 14px; }
body { padding-bottom: 78px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-2); border-top: 1px solid var(--line);
  padding: 40px 0 30px; color: var(--muted); font-size: 0.92rem;
}
.footer-grid { display: grid; gap: 26px; }
.site-footer h4 { color: var(--text); font-size: 1rem; margin: 0 0 12px; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--brand-2); }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-bottom { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 0.85rem; }

/* Breadcrumb */
.crumb { color: var(--muted); font-size: 0.85rem; padding: 14px 0 0; }
.crumb a { color: var(--muted); }
.crumb a:hover { color: var(--brand-2); }

/* Prose helpers for service pages */
.prose p { color: var(--muted); }
.prose h2 { margin-top: 0.4em; }
.prose h3 { color: var(--text); margin-top: 1.4em; }
.landmark-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.landmark-list li { padding-left: 26px; position: relative; color: var(--muted); }
.landmark-list li::before { content: "\1F4CD"; position: absolute; left: 0; }
.directions {
  background: var(--bg-2); border: 1px solid var(--line);
  border-left: 3px solid var(--brand); border-radius: var(--radius-sm);
  padding: 18px 20px;
}
.directions h3 { margin-top: 0; }

/* ---------- Larger screens ---------- */
@media (min-width: 720px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: repeat(3, 1fr); }
  .price-grid--single { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide { grid-template-columns: 1.2fr 1fr; }
  .gallery { columns: 2; }
  .trust-row { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .cta-band { grid-template-columns: minmax(240px, 0.9fr) 2fr; align-items: stretch; }
  .cta-band__push { flex-wrap: nowrap; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .town-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 980px) {
  /* Desktop nav appears here, not at 720px: six links + a CTA + the larger
     logo don't fit on a tablet without squashing the logo out of aspect.
     Below this width the hamburger and sticky call bar handle navigation. */
  .nav__links { display: flex; }
  .nav__phone { display: inline-flex; }
  .nav__toggle, .mobile-menu { display: none !important; }
  .call-bar { display: none; }
  body { padding-bottom: 0; }
  .hero { padding: 40px 0 48px; }
  .section { padding: 84px 0; }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .gallery { columns: 3; }
  /* Copy left, quote card right — the reference layout. */
  .hero__grid { grid-template-columns: 1.12fr 0.88fr; gap: 36px; }
  /* Not sticky: the card now shares .hero__side with the cutout, and sticking
     inside that short wrapper just makes it jitter. The hero fits the viewport. */
  .quote { padding: 26px; }
  .brand__logo { height: 68px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
  /* The pulsing badge dot still needs to read as a dot, just a static one. */
  .pulse-dot { box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.25); }
}
