/* ============================================================
   site-chrome.css — shared header/footer/mobile-CTA/quote modal
   used by all v2 pages EXCEPT homepage (which inlines its own).
   Loads after tokens.css. Page-specific styles still inline per page.
   ============================================================ */

/* Defensive: ensure body picks up the cream bg on inner pages. */
body { background: var(--cream); color: var(--ink); }
.site-header { background: var(--cream); }
.header-phone { color: var(--ink); }

/* ============= PAGE HERO (compact hero pattern for inner pages) ============= */
.page-hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
}
.page-hero-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(96deg,
      rgba(0,0,0,0.78) 0%,
      rgba(0,0,0,0.55) 30%,
      rgba(0,0,0,0.22) 60%,
      rgba(0,0,0,0.05) 100%),
    linear-gradient(180deg,
      rgba(0,0,0,0.32) 0%,
      rgba(0,0,0,0.0) 30%,
      rgba(0,0,0,0.55) 100%);
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  /* Use longhand vertical-only so .container's horizontal gutter stays applied */
  padding-top: 96px;
  padding-bottom: 64px;
  width: 100%;
}
.page-hero .eyebrow.on-dark { color: var(--gold); }
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 460;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--paper);
  max-width: 18ch;
  margin-top: 18px;
}
.page-hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.page-hero-sub {
  margin-top: 22px;
  max-width: 56ch;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(245,240,232,0.86);
}
.page-hero-sub strong { color: var(--paper); font-weight: 600; }
.page-hero-ctas {
  margin-top: 32px;
  display: flex; gap: 14px; flex-wrap: wrap;
}
.page-hero-trust {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(245,240,232,0.18);
  display: flex; gap: 28px; flex-wrap: wrap;
  font-size: 13.5px;
  color: rgba(245,240,232,0.72);
}
.page-hero-trust strong { color: var(--paper); font-weight: 600; }
.page-hero-trust .stars { color: var(--gold); letter-spacing: 0.05em; }

/* Crumbs (small breadcrumbs above the H1) */
.crumbs {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.6);
  font-weight: 600;
}
.crumbs a { color: rgba(245,240,232,0.6); text-decoration: none; }
.crumbs a:hover { color: var(--gold); }
.crumbs .sep { margin: 0 8px; opacity: 0.5; }

/* ============= TRUST METRICS BAND (re-used from homepage) ============= */
.trust-band {
  background: var(--cream-deep);
  padding: 48px 0;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 0;
}
.trust-item {
  text-align: center;
  padding: 8px 16px;
  border-right: 1px solid var(--ink-line);
}
.trust-item:last-child { border-right: 0; }
.trust-num {
  font-family: var(--display);
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.trust-num sup { font-size: 20px; font-weight: 400; vertical-align: 12px; color: var(--gold-deep); }
.trust-num .star { color: var(--gold); font-size: 30px; vertical-align: 4px; margin-left: 4px; }
.trust-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 10px;
  font-weight: 600;
}

/* ============= REVIEWS (dark, reused) ============= */
.reviews {
  padding: var(--section-y) 0;
  background: var(--ink);
  color: var(--paper);
}
.reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 56px;
  gap: 48px;
}
.reviews-head h2 { color: var(--paper); max-width: 16ch; }
.reviews-head h2 em { font-style: italic; color: var(--gold); }
.reviews-stars { text-align: right; }
.reviews-stars .stars { color: var(--gold); font-size: 24px; letter-spacing: 0.1em; }
.reviews-stars .meta { color: rgba(245,240,232,0.72); font-size: 13.5px; margin-top: 6px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.reviews-grid.is-two { grid-template-columns: repeat(2, 1fr); max-width: 920px; margin: 0 auto; }
.reviews-grid.is-one { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
.review {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--ink-line-2);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.review-tag {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}
.review .stars {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.review-body {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 450;
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: var(--paper);
  flex: 1;
  margin-bottom: 24px;
}
.review-attr {
  display: flex; gap: 14px; align-items: center;
  padding-top: 18px; border-top: 1px solid var(--ink-line-2);
}
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 500;
  font-size: 17px;
}
.review-name { font-weight: 600; font-size: 14.5px; }
.review-meta { font-size: 12.5px; color: rgba(245,240,232,0.6); }

/* ============= FINAL CTA (re-used) ============= */
.final-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 75% 50%, rgba(200,154,60,0.12), transparent 60%);
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
}
.final-cta-text { max-width: 32ch; }
.final-cta h2 {
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 460;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--paper);
  margin-top: 12px;
}
.final-cta h2 em { font-style: italic; color: var(--gold); }
.final-cta-action {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 6px;
}
.final-cta-phone-link {
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: -0.02em;
  line-height: 1;
}
.final-cta-phone-link:hover { color: var(--paper); }
.final-cta-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.6);
  font-weight: 600;
}
.final-cta-quote-btn { margin-top: 14px; cursor: pointer; }

/* ============= FOOTER (re-used) ============= */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--ink-line-2);
}
.footer-about p {
  color: rgba(212,204,189,0.78);
  font-size: 14px;
  margin-top: 16px;
  max-width: 32ch;
}
.footer-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
  font-size: 14px;
}
.footer-nap a[href^="tel:"] { font-size: 13px; color: rgba(212,204,189,0.78); }
.footer-nap a[href^="tel:"]:hover { color: var(--paper); }
.footer-map { margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--ink-line-2); }
.footer-map iframe {
  width: 100%; height: 240px; border: 0;
  filter: grayscale(0.35) contrast(0.95);
  opacity: 0.92;
  transition: filter .25s ease, opacity .25s ease;
}
.footer-map iframe:hover { filter: none; opacity: 1; }
.footer-bottom {
  padding-top: 32px;
  display: flex; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  font-size: 13px; color: rgba(212,204,189,0.6);
}
.footer-bottom a { color: rgba(212,204,189,0.6); }
.footer-bottom a:hover { color: var(--paper); }

/* ============= QUOTE FORM MODAL — 2-step =============
   Opened by [data-action="open-quote-form"]. Wide 2-pane layout on
   desktop (dark aside + light form pane), single-pane on mobile.
   Markup: _partials/quote-modal.html. JS: scripts/quote-form.js. */
.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.quote-modal[hidden] { display: none; }
.quote-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.62);
  backdrop-filter: blur(2px);
}
.quote-modal-panel {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  width: 100%;
  max-width: 640px;
  max-height: calc(100vh - 48px);
  overflow: hidden;
  border: 1px solid var(--ink-line);
  box-shadow: 0 32px 64px -28px rgba(0, 0, 0, 0.5);
}
/* Wide variant: holds the 2-pane (aside + form) layout */
.quote-modal-panel--wide { max-width: 1040px; }

.quote-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
  color: var(--paper);
  border-radius: 999px;
  cursor: pointer;
  z-index: 5;
  transition: background .15s ease, color .15s ease;
}
.quote-modal-close:hover { background: rgba(255,255,255,0.12); }

/* —— 2-pane grid —— */
.qm-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  max-height: calc(100vh - 48px);
}

/* Aside (dark pane) */
.qm-aside {
  background: var(--ink);
  color: var(--paper);
  padding: 56px 44px 44px;
  display: flex;
  flex-direction: column;
}
.qm-aside-eyebrow {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.qm-aside-title {
  font-family: var(--display);
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 460;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--paper);
  margin: 0 0 16px;
}
.qm-aside-title em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-weight: 460;
}
.qm-aside-lede {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(245,240,232,0.78);
  margin: 0 0 28px;
}
.qm-aside-divider {
  flex: 1;
  min-height: 12px;
  border-top: 1px solid rgba(245,240,232,0.18);
  margin: 28px 0 24px;
}
.qm-aside-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(245,240,232,0.78);
}
.qm-aside-meta strong { color: var(--paper); font-weight: 600; }
.qm-aside-call a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}
.qm-aside-call a:hover { color: var(--paper); }

/* Main pane (form) */
.qm-main {
  background: var(--paper);
  padding: 44px 44px 40px;
  overflow-y: auto;
  max-height: calc(100vh - 48px);
}

/* Stepper */
.qm-stepper {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--ink-line);
}
.qm-step-pip {
  flex: 1;
  padding: 0 4px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-mute);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .2s ease, border-color .2s ease;
}
.qm-step-pip.is-active {
  color: var(--ink);
  border-bottom-color: var(--ink);
}
.qm-step-pip.is-complete { color: var(--ink-soft); }
.qm-step-num {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  background: var(--cream-deep);
  color: var(--ink-mute);
  transition: background .2s ease, color .2s ease;
}
.qm-step-pip.is-active .qm-step-num,
.qm-step-pip.is-complete .qm-step-num {
  background: var(--ink);
  color: var(--paper);
}

/* Step pane */
.qf-step {
  border: 0;
  padding: 0;
  margin: 0;
  display: none;
}
.qf-step.is-active { display: block; }
.qf-step-title {
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 460;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 8px;
  padding: 0;
}
.qf-step-lede {
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.5;
  margin: 0 0 22px;
}

/* Section eyebrow — labels each row of service cards
   ("When something's broken" / "Planning ahead") */
.qf-section-eyebrow {
  font-family: var(--body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.qf-section-eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--ink-line);
}
.qf-section-eyebrow + .qf-service-grid { margin-top: 0; }
.qf-service-grid + .qf-section-eyebrow { margin-top: 18px; }

/* Service-type card grid — 4 across on desktop, collapses on tablet/mobile */
.qf-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.qf-service-card {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--ink-line);
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.qf-service-card:hover { border-color: var(--ink-soft); }
.qf-service-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.qf-service-card:has(input:checked) {
  border-color: var(--ink);
  background: var(--cream);
  box-shadow: inset 0 0 0 1px var(--ink);
}
.qf-service-card:has(input:focus-visible) {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.qf-card-title {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.25;
}
/* Legacy sub-line — no longer rendered, kept for backwards compat in case
   any inner page reuses the old markup */
.qf-card-sub {
  font-family: var(--body);
  font-size: 12.5px;
  color: var(--gold-deep);
  font-weight: 500;
  margin-top: 2px;
}

/* Urgency checkbox — distinct from SMS opt-in. Sits between the cards and
   the textarea on step 1. Rust-tinted to read as a signal/alert without
   being alarmist. */
.qf-urgent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  margin: 4px 0 18px;
  background: var(--paper);
  border: 1px solid var(--ink-line);
  border-left: 3px solid var(--rust);
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.qf-urgent:hover { background: var(--cream); }
.qf-urgent input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--rust);
}
.qf-urgent-text {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.qf-urgent-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.qf-urgent:has(input:checked) {
  background: var(--cream);
  border-color: var(--rust);
}

.qf-eyebrow-label {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.qf-field--addtl { margin-bottom: 24px; }

/* Step actions row */
.qf-step-actions {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--ink-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.qf-back {
  background: transparent;
  border: 0;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mute);
  cursor: pointer;
  padding: 10px 4px;
  transition: color .15s ease;
}
.qf-back:hover { color: var(--ink); }
.qf-step-error {
  margin-top: 10px;
  font-size: 13px;
  color: var(--rust);
}

/* Form (lives inside the modal) */
.quote-form { color: var(--ink); }
.qf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.qf-field { display: flex; flex-direction: column; }
.qf-field + .qf-field, .quote-form > .qf-field { margin-bottom: 16px; }
.qf-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  margin-bottom: 6px;
}
.qf-optional {
  font-weight: 400;
  color: var(--ink-mute);
  font-size: 12px;
}
.qf-field input,
.qf-field textarea {
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.4;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--ink-line);
  border-radius: 0;
  padding: 12px 14px;
  transition: border-color .15s ease, background .15s ease;
  width: 100%;
}
.qf-field input:focus,
.qf-field textarea:focus {
  outline: none;
  border-color: var(--gold-deep);
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(200,154,60,0.18);
}
.qf-field textarea { resize: vertical; min-height: 80px; }
.qf-field input[aria-invalid="true"],
.qf-field input.qf-invalid {
  border-color: var(--rust);
  box-shadow: 0 0 0 3px rgba(200,85,44,0.18);
}

/* Honeypot — visually + assistively hidden, not display:none so bots see it */
.qf-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* SMS consent block */
.qf-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 18px;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--ink-line);
  cursor: pointer;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.qf-consent input { margin-top: 3px; cursor: pointer; }
.qf-consent-text { font-size: 13px; }

/* Turnstile slot — leaves room for the widget when it loads */
.qf-turnstile { margin-top: 18px; min-height: 0; }
.qf-turnstile:empty { display: none; }

/* Submit + status */
.qf-submit {
  margin-top: 22px;
  width: 100%;
  justify-content: center;
  padding: 16px 22px;
  font-size: 15px;
  min-height: 50px;
}
.qf-submit[disabled] {
  opacity: 0.55;
  cursor: progress;
}
.qf-status {
  margin-top: 14px;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.5;
}
.qf-status.is-success {
  background: rgba(74,107,58,0.08);
  border: 1px solid rgba(74,107,58,0.4);
  color: #2d4222;
}
.qf-status.is-error {
  background: rgba(200,85,44,0.08);
  border: 1px solid rgba(200,85,44,0.4);
  color: var(--rust-deep);
}
.quote-form.is-submitted .qf-row,
.quote-form.is-submitted .qf-field,
.quote-form.is-submitted .qf-consent,
.quote-form.is-submitted .qf-turnstile,
.quote-form.is-submitted .qf-submit,
.quote-form.is-submitted .qf-fineprint {
  display: none;
}
.qf-fineprint {
  margin-top: 14px;
  font-size: 12px;
  color: var(--ink-mute);
  line-height: 1.5;
}
.qf-fineprint a { color: var(--ink-soft); text-decoration: underline; text-underline-offset: 3px; }

/* —— Modal tablet sizing (aside collapses to a slim header above form) —— */
@media (max-width: 1100px) and (min-width: 761px) {
  .quote-modal-panel--wide { max-width: 720px; }
  .qm-grid { grid-template-columns: 1fr; max-height: calc(100vh - 48px); }
  .qm-aside { padding: 28px 36px; }
  .qm-aside-divider { display: none; }
  .qm-aside-title { font-size: 22px; }
  .qm-aside-lede { display: none; }
  .qm-aside-meta { flex-direction: row; flex-wrap: wrap; gap: 6px 18px; font-size: 12.5px; }
  .qm-main { padding: 32px 36px 28px; max-height: none; }
  /* Tablet: 2×2 cards per section reads better than cramped 4-across */
  .qf-service-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============= RESPONSIVE ============= */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

@media (max-width: 760px) {
  /* Tighter hero on mobile */
  .page-hero { min-height: 380px; }
  .page-hero-inner { padding-top: 56px; padding-bottom: 40px; }
  .page-hero h1 { font-size: clamp(28px, 8vw, 40px); margin-top: 14px; }
  .page-hero-sub { font-size: 15.5px; margin-top: 16px; }
  .page-hero-ctas { margin-top: 24px; flex-direction: column; align-items: stretch; gap: 10px; }
  .page-hero-ctas .btn { justify-content: center; padding: 14px 20px; font-size: 15px; min-height: 48px; }
  .page-hero-trust { flex-direction: column; align-items: flex-start; gap: 10px; margin-top: 24px; padding-top: 18px; font-size: 13px; }

  /* Trust band (3+2 grid) */
  .trust-band { padding: 32px 0; }
  .trust-row { grid-template-columns: repeat(6, 1fr); gap: 0; }
  .trust-item { padding: 16px 4px; border-right: 1px solid var(--ink-line); border-bottom: 0; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { grid-column: span 2; border-bottom: 1px solid var(--ink-line); }
  .trust-item:nth-child(3) { grid-column: span 2; border-right: 0; border-bottom: 1px solid var(--ink-line); }
  .trust-item:nth-child(4) { grid-column: span 3; }
  .trust-item:nth-child(5) { grid-column: span 3; border-right: 0; }
  .trust-num { font-size: 24px; }
  .trust-num sup { font-size: 12px; vertical-align: 7px; }
  .trust-num .star { font-size: 18px; vertical-align: 2px; margin-left: 2px; }
  .trust-label { font-size: 10px; margin-top: 6px; letter-spacing: 0.08em; }

  /* Reviews */
  .reviews-head { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 28px; }
  .reviews-head h2 { font-size: 30px; max-width: none; }
  .reviews-stars { text-align: left; }
  .reviews-grid, .reviews-grid.is-two { grid-template-columns: 1fr; gap: 14px; }
  .review { padding: 22px 20px; }
  .review-body { font-size: 17px; }

  /* Final CTA */
  .final-cta { padding: 36px 0; }
  .final-cta-inner { grid-template-columns: 1fr; gap: 14px; }
  .final-cta h2 { font-size: 24px; max-width: none; }
  .final-cta-action { align-items: flex-start; }
  .final-cta-phone-link { font-size: 36px; }

  /* Footer */
  .site-footer { padding: 48px 0 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .footer-about p { max-width: none; }
  .site-footer h3 { margin-bottom: 14px; }
  .footer-list { gap: 10px; }
  .footer-map { margin-top: 28px; padding-top: 22px; }
  .footer-map iframe { height: 200px; }
  .footer-bottom { padding-top: 22px; flex-direction: column; align-items: flex-start; gap: 8px; font-size: 12px; }

  /* Mobile CTA bar */
  .mobile-cta-bar { padding: 10px 16px; gap: 10px; }
  .mobile-cta-bar .header-phone { font-size: 15px; }
  .mobile-cta-bar .btn { padding: 12px 16px !important; font-size: 14px !important; min-height: 44px; }

  /* Quote modal mobile sheet — 2-step variant */
  .quote-modal { padding: 0; align-items: flex-end; }
  .quote-modal-panel,
  .quote-modal-panel--wide {
    max-width: none;
    max-height: 94vh;
    border: 0;
    border-top: 1px solid var(--ink-line);
    box-shadow: 0 -16px 48px -12px rgba(0,0,0,0.4);
  }
  .quote-modal-close {
    top: 8px;
    right: 10px;
    color: var(--ink-mute);
  }
  .quote-modal-close:hover { background: var(--cream); color: var(--ink); }
  .qm-grid { grid-template-columns: 1fr; max-height: 94vh; }
  .qm-aside { display: none; }
  .qm-main { padding: 28px 20px 22px; max-height: 94vh; }
  .qm-stepper { margin-bottom: 22px; }
  .qm-step-pip { font-size: 12.5px; padding-bottom: 12px; gap: 8px; }
  .qm-step-num { width: 24px; height: 24px; font-size: 12px; }

  .qf-step-title { font-size: 22px; padding-right: 36px; } /* room for × */
  .qf-step-lede { font-size: 13.5px; margin-bottom: 18px; }
  .qf-service-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .qf-service-card { padding: 12px 14px; min-height: 56px; }
  .qf-section-eyebrow { font-size: 10px; margin-bottom: 8px; }
  .qf-urgent { padding: 12px 14px; margin: 4px 0 14px; }
  .qf-urgent-text { font-size: 13px; }
  .qf-urgent-text strong { font-size: 13.5px; }
  .qf-row { grid-template-columns: 1fr; gap: 12px; margin-bottom: 12px; }
  .qf-field input,
  .qf-field textarea { font-size: 16px; padding: 12px 14px; } /* 16px+ avoids iOS zoom-on-focus */
  .qf-consent { font-size: 13px; padding: 12px 14px; }
  .qf-submit { font-size: 15px; }
  .qf-step-actions { margin-top: 20px; padding-top: 16px; }
  .qf-back { font-size: 13px; }
}
