/* ==========================================================================
   PSR — Professional Service Restoration
   Design system ported from the Claude Design handoff (PSR Homepage Layouts).

   The prototype was desktop-only at a fixed 1280px. Everything here keeps its
   exact type scale and colour at >=1280px and reflows below that.
   ========================================================================== */

/* --- Tokens -------------------------------------------------------------- */

:root {
  /* Brand — the orange accent carries every CTA in the design */
  --orange:        oklch(0.7 0.17 45);
  --orange-ink:    oklch(0.18 0.03 45);   /* text that sits on orange */
  --orange-deep:   oklch(0.6 0.16 45);    /* links, eyebrows, icon strokes */
  --orange-dark:   oklch(0.5 0.14 45);    /* link hover */
  --orange-light:  oklch(0.75 0.16 50);   /* eyebrows on dark panels */
  --star:          oklch(0.78 0.15 55);

  /* Neutrals — warm off-white page, cool near-black panels */
  --page:          oklch(0.985 0.004 90);
  --page-alt:      oklch(0.955 0.008 90);
  --bar:           oklch(0.94 0.008 90);
  --ink:           oklch(0.22 0.02 240);
  --ink-soft:      oklch(0.45 0.02 240);
  --ink-softer:    oklch(0.55 0.02 240);
  --ink-faint:     oklch(0.58 0.01 240);
  --rule:          oklch(0.89 0.01 240);
  --rule-strong:   oklch(0.87 0.01 240);

  --dark:          oklch(0.26 0.015 260);
  --dark-panel:    oklch(0.22 0.015 260);
  --dark-deep:     oklch(0.24 0.015 260);
  --darkest:       oklch(0.15 0.01 260);

  /* Type */
  --font-display: 'Comfortaa', ui-rounded, system-ui, sans-serif;
  --font-body:    'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-mono:    'IBM Plex Mono', ui-monospace, SFMono-Regular, monospace;

  /* Layout */
  --gutter: 56px;
  --radius: 5px;
  --radius-lg: 15px;
  --maxw: 1440px;
}

/* --- Reset --------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--page);
  font-family: var(--font-body);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--orange-deep); text-decoration: none; }
a:hover { color: var(--orange-dark); }

button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4, p, ul, ol, figure, dl, dt, dd, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }

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

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

.skip-link {
  position: absolute; left: 8px; top: -60px; z-index: 200;
  padding: 12px 20px; background: var(--orange); color: var(--orange-ink);
  font-weight: 700; border-radius: var(--radius); transition: top .15s;
}
.skip-link:focus { top: 8px; color: var(--orange-ink); }

/* --- Shared primitives --------------------------------------------------- */

.section { padding: 96px var(--gutter); }
.section--tight { padding: 72px var(--gutter); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-deep);
}
.eyebrow--light { color: var(--orange-light); letter-spacing: 0.14em; }

.display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.h-section { font-size: 50px; line-height: 1.1; color: var(--ink); }
.h-page    { font-size: 56px; line-height: 1.06; color: var(--ink); }

.lede {
  font-size: 19px;
  line-height: 1.6;
  color: oklch(0.42 0.02 240);
  text-wrap: pretty;
}

.stars { font-size: 14px; letter-spacing: 0.1em; color: var(--star); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 30px;
  font-size: 17px;
  font-weight: 700;
  border-radius: var(--radius);
  border: 0;
  cursor: pointer;
  text-align: center;
  transition: background-color .15s, transform .05s;
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--orange); color: var(--orange-ink); }
.btn--primary:hover { background: oklch(0.66 0.17 45); color: var(--orange-ink); }

.btn--dark { background: var(--dark-deep); color: #fff; }
.btn--dark:hover { background: oklch(0.2 0.015 260); color: #fff; }

.btn--ink { background: oklch(0.18 0.015 260); color: #fff; }
.btn--ink:hover { background: oklch(0.13 0.01 260); color: #fff; }

.btn--block { display: block; width: 100%; }

/* Prose — long-form body copy on service/city/legal pages */
.prose { font-size: 17px; line-height: 1.7; color: var(--ink-soft); max-width: 68ch; }
.prose > * + * { margin-top: 20px; }
.prose h2 {
  font-family: var(--font-display); font-weight: 700; font-size: 30px;
  letter-spacing: -0.02em; color: var(--ink); margin-top: 44px; line-height: 1.2;
}
.prose h3 { font-size: 21px; font-weight: 600; color: var(--ink); margin-top: 32px; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose ul { display: flex; flex-direction: column; gap: 10px; }
.prose li { padding-left: 26px; position: relative; }
.prose li::before {
  content: ""; position: absolute; left: 4px; top: 11px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--orange);
}

/* ==========================================================================
   Header / nav
   ========================================================================== */

.nav {
  position: relative; z-index: 60;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  padding: 12px var(--gutter);
  background: oklch(0.12 0.01 260 / 0.6);
}

/* On the homepage the nav sits *inside* the hero in the design — the photo
   runs behind it and shows through the 60%-opacity bar. */
.nav--overlay { position: absolute; top: 0; left: 0; right: 0; }

.nav--solid { background: var(--darkest); }

.nav__logo { height: 86px; width: auto; margin: -10px 0; flex-shrink: 0; }

.nav__links {
  display: flex; align-items: center; gap: 28px;
  font-size: 15px; color: oklch(1 0 0 / 0.85);
  white-space: nowrap;
}
.nav__links a { color: inherit; }
.nav__links a:hover { color: #fff; }
.nav__links a[aria-current="page"] { color: #fff; box-shadow: inset 0 -2px 0 var(--orange); }

.nav__phone {
  padding: 10px 18px;
  background: var(--orange);
  color: var(--orange-ink);
  font-weight: 700;
  border-radius: 2px;
}
.nav__phone:hover { background: oklch(0.66 0.17 45); color: var(--orange-ink); }

.nav__toggle {
  display: none;
  padding: 10px; background: transparent; border: 1px solid oklch(1 0 0 / 0.3);
  border-radius: var(--radius); color: #fff; cursor: pointer;
}
.nav__toggle svg { width: 22px; height: 22px; }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero { position: relative; background: var(--dark); }

/* Works for both the <video> and the poster it falls back to. */
.hero__media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;          /* nothing here is interactive */
  background: var(--dark);       /* covers the gap before the poster paints */
}
.hero__media::-webkit-media-controls { display: none !important; }
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg,
    oklch(0.15 0.01 260 / 0.92) 0%,
    oklch(0.15 0.01 260 / 0.62) 52%,
    oklch(0.15 0.01 260 / 0.28) 100%);
}

.hero__inner {
  position: relative;
  display: grid; grid-template-columns: 1fr 440px; gap: 80px; align-items: center;
  /* Top padding clears the overlaid nav (86px logo + 24px padding). */
  padding: 110px var(--gutter) 64px;
  min-height: 900px;
}

.hero__copy { display: flex; flex-direction: column; gap: 26px; }

.hero__award { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero__award-text {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: oklch(1 0 0 / 0.72);
}

.hero__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 78px; line-height: 1.05; letter-spacing: -0.025em;
  color: #fff; text-wrap: balance;
}

.hero__sub {
  font-size: 21px; line-height: 1.55; color: oklch(1 0 0 / 0.8);
  max-width: 560px; text-wrap: pretty;
}

.hero__stats {
  display: flex; gap: 34px; margin-top: 14px; padding-top: 26px;
  border-top: 1px solid oklch(1 0 0 / 0.22);
}
.hero__stat { display: flex; flex-direction: column; gap: 5px; }
.hero__stat-v { font-size: 30px; font-weight: 600; color: #fff; }
.hero__stat-k { font-size: 14px; color: oklch(1 0 0 / 0.62); }

/* Callback card */
.quote-card {
  padding: 38px;
  display: flex; flex-direction: column; gap: 16px;
  background: #efefef;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px -20px oklch(0.1 0.01 260 / 0.6);
}
.quote-card__title { font-size: 27px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }
.quote-card__phone {
  display: block; padding: 20px; background: var(--orange); color: var(--orange-ink);
  text-align: center; font-size: 24px; font-weight: 700; letter-spacing: -0.01em;
  border-radius: var(--radius);
}
.quote-card__phone:hover { background: oklch(0.66 0.17 45); color: var(--orange-ink); }
.quote-card__note { text-align: center; font-size: 14px; color: oklch(0.5 0.02 240); }

.rule-label {
  display: flex; align-items: center; gap: 12px; margin: 2px 0;
  font-size: 14px; color: var(--ink-softer);
}
.rule-label::before, .rule-label::after {
  content: ""; height: 1px; flex: 1; background: var(--rule);
}

/* ==========================================================================
   Forms
   ========================================================================== */

.form { display: flex; flex-direction: column; gap: 10px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }

.field {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid oklch(0.88 0.01 240);
  border-radius: var(--radius);
  background: #fff;
  font-size: 16px;
  color: var(--ink);
  appearance: none;
}
.field::placeholder { color: var(--ink-faint); }
.field:focus { border-color: var(--orange); outline: none; box-shadow: 0 0 0 3px oklch(0.7 0.17 45 / 0.25); }
/* :user-invalid only fires once someone has actually interacted — a plain
   :invalid would paint every required select red on page load. */
.field:user-invalid { border-color: oklch(0.58 0.2 25); }

select.field {
  color: var(--ink-faint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23808a94' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
select.field:valid { color: var(--ink); }

textarea.field { min-height: 92px; resize: vertical; }

.form__status { font-size: 15px; line-height: 1.5; }
.form__status[data-state="error"]   { color: oklch(0.5 0.19 25); }
.form__status[data-state="success"] { color: oklch(0.45 0.13 150); }

/* Honeypot — hidden from people, visible to naive bots */
.form__trap { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ==========================================================================
   Trust bar
   ========================================================================== */

.trust {
  display: flex; justify-content: space-between; gap: 24px;
  padding: 26px var(--gutter);
  background: var(--bar);
  border-bottom: 1px solid var(--rule-strong);
  font-size: 15px;
  color: oklch(0.38 0.02 240);
}
.trust__item { display: flex; align-items: center; gap: 10px; }
.trust__item svg { flex-shrink: 0; }

/* ==========================================================================
   Services grid
   ========================================================================== */

.section__head { display: flex; flex-direction: column; gap: 14px; margin-bottom: 44px; }
.section__head .display { max-width: 700px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.card:hover {
  border-color: oklch(0.8 0.05 45);
  box-shadow: 0 18px 40px -22px oklch(0.3 0.03 240 / 0.5);
  transform: translateY(-2px);
}
.card__img { height: 220px; width: 100%; object-fit: cover; }
.card__body { padding: 26px 26px 30px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.card__head { display: flex; align-items: baseline; gap: 12px; }
.card__num { font-family: var(--font-mono); font-size: 13px; color: var(--orange-deep); }
.card__title { font-size: 23px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }
.card__title a { color: inherit; }
.card__title a::after { content: ""; position: absolute; inset: 0; }  /* whole card clickable */
.card { position: relative; }
.card__copy { font-size: 16px; line-height: 1.55; color: var(--ink-soft); text-wrap: pretty; }
.card__cta { font-size: 15px; font-weight: 600; color: var(--orange-deep); margin-top: auto; padding-top: 6px; }

/* ==========================================================================
   Mid CTA band
   ========================================================================== */

.cta-band {
  background: var(--orange);
  padding: 38px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.cta-band__title { font-size: 28px; font-weight: 600; letter-spacing: -0.02em; color: var(--orange-ink); }
.cta-band__right { display: flex; align-items: center; gap: 18px; }
.cta-band__hours { font-size: 16px; color: oklch(0.22 0.03 45); opacity: 0.75; }
.cta-band__phone {
  padding: 16px 30px; background: oklch(0.18 0.015 260); color: #fff;
  font-size: 20px; font-weight: 700; border-radius: var(--radius);
}
.cta-band__phone:hover { background: oklch(0.12 0.01 260); color: #fff; }

/* ==========================================================================
   Before / after
   ========================================================================== */

.beforeafter { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }

.beforeafter__copy {
  background: var(--dark-panel);
  padding: 88px var(--gutter);
  display: flex; flex-direction: column; gap: 20px; justify-content: center;
}
.beforeafter__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 46px; line-height: 1.12; letter-spacing: -0.02em; color: #fff;
}
.beforeafter__sub {
  font-size: 18px; line-height: 1.6; color: oklch(1 0 0 / 0.72);
  max-width: 440px; text-wrap: pretty;
}
.beforeafter__cta { align-self: flex-start; margin-top: 10px; }

.beforeafter__pair { display: grid; grid-template-columns: 1fr 1fr; }
.beforeafter__shot { position: relative; min-height: 420px; }
.beforeafter__shot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.tag {
  position: absolute; top: 16px; left: 16px;
  padding: 7px 12px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  border-radius: 3px;
}
.tag--before { background: oklch(0.15 0.01 260 / 0.75); color: #fff; }
.tag--after  { background: var(--orange); color: var(--orange-ink); font-weight: 600; }

/* ==========================================================================
   Reviews
   ========================================================================== */

.reviews { display: flex; flex-direction: column; gap: 40px; }
.reviews__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule-strong);
}
.review {
  display: flex; flex-direction: column; gap: 16px;
  padding: 34px 30px 34px 0;
  border-right: 1px solid var(--rule-strong);
}
.review:last-child { border-right: 0; }
.review__quote { font-size: 18px; line-height: 1.6; color: oklch(0.3 0.02 240); text-wrap: pretty; }
.review__name { font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.review .stars { color: oklch(0.62 0.17 50); }

/* ==========================================================================
   Contact
   ========================================================================== */

.contact {
  background: var(--page-alt);
  border-top: 1px solid oklch(0.88 0.01 240);
  padding: 96px var(--gutter);
  display: grid; grid-template-columns: 1fr 520px; gap: 80px; align-items: start;
}
.contact__copy { display: flex; flex-direction: column; gap: 20px; }
.contact__phone {
  align-self: flex-start; margin-top: 6px;
  padding: 22px 34px; background: var(--orange); color: var(--orange-ink);
  font-size: 24px; font-weight: 700; border-radius: var(--radius);
}
.contact__phone:hover { background: oklch(0.66 0.17 45); color: var(--orange-ink); }
.contact__alt { font-size: 16px; color: var(--ink-soft); }

.contact__form {
  background: #fff; border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 36px;
  display: flex; flex-direction: column; gap: 11px;
}
.contact__form-title { font-size: 22px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--darkest);
  padding: 80px var(--gutter);
  display: flex; flex-direction: column; gap: 56px;
  color: #fff;
}

.footer__intro { display: flex; gap: 48px; align-items: flex-start; }
.footer__logo { height: 120px; width: auto; flex-shrink: 0; margin: -14px 0 -8px; }
.footer__contact { display: flex; flex-direction: column; gap: 14px; }
.footer__title { font-size: 32px; font-weight: 600; letter-spacing: -0.02em; }
.footer__blurb { font-size: 17px; color: oklch(1 0 0 / 0.66); }

.footer__lines {
  display: flex; flex-wrap: wrap; gap: 14px 44px;
  margin-top: 6px;
}
.footer__lines dt {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--orange-light); margin-bottom: 4px;
}
.footer__lines dd { font-size: 17px; color: oklch(1 0 0 / 0.82); }
.footer__lines a { color: inherit; }
.footer__lines a:hover { color: #fff; }

/* Counties get the whole width now that the address block is gone. */
.footer__counties {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px;
  padding-top: 44px;
  border-top: 1px solid oklch(1 0 0 / 0.14);
}

.county { display: flex; flex-direction: column; gap: 9px; align-items: flex-start; }
.county__name {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--orange-light);
}
.county__name a { color: inherit; }
.county__name a:hover { color: var(--orange); }
.county__cities { font-size: 15px; line-height: 1.7; color: oklch(1 0 0 / 0.66); }
.county__cities a { color: inherit; }
.county__cities a:hover { color: #fff; }

/* <details> so the full list expands in place with no JS at all. */
.county__all { width: 100%; margin-top: 2px; }
.county__all > summary {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--orange-light);
  cursor: pointer; list-style: none; padding: 4px 0;
}
.county__all > summary::-webkit-details-marker { display: none; }
.county__all > summary::before { content: "+"; font-size: 17px; line-height: 1; }
.county__all[open] > summary::before { content: "−"; }
.county__all > summary:hover { color: var(--orange); }

/* An explicit `display` on a direct child of <details> overrides the UA
   stylesheet's display:none for the closed state — the list would render in
   full with only the attribute toggling. So default it hidden and let the
   open state supply the flex layout. */
.county__all-list { display: none; }
.county__all[open] > .county__all-list {
  display: flex; flex-wrap: wrap; gap: 7px 6px;
  margin-top: 10px; padding-top: 12px;
  border-top: 1px solid oklch(1 0 0 / 0.14);
  font-size: 14px; line-height: 1.5;
}
/* Separator between names, without one trailing off the end. */
.county__all-list > * { color: oklch(1 0 0 / 0.6); }
/* Balanced separator: 6px of margin here plus the 6px column gap puts equal
   space either side of the dot. */
.county__all-list > *:not(:last-child)::after {
  content: "·"; margin-left: 6px; color: oklch(1 0 0 / 0.3);
}
.county__all-list a { color: oklch(1 0 0 / 0.82); font-weight: 500; }
.county__all-list a:hover { color: #fff; }

/* On a light page (county pages) the same component needs dark ink. */
.county__all--wide { margin: 24px 0 8px; }
.prose .county__all > summary { color: var(--orange-deep); }
.prose .county__all > summary:hover { color: var(--orange-dark); }
.prose .county__all[open] > .county__all-list {
  border-top-color: var(--rule-strong);
  font-size: 15px;
}
.prose .county__all-list > * { color: var(--ink-soft); }
.prose .county__all-list > *:not(:last-child)::after { color: var(--rule-strong); }
.prose .county__all-list a { color: var(--orange-deep); }
.prose .county__all-list a:hover { color: var(--orange-dark); }

.footer__legal {
  grid-column: 1 / -1;
  display: flex; flex-wrap: wrap; gap: 8px 28px; justify-content: space-between;
  padding-top: 28px; margin-top: 8px;
  border-top: 1px solid oklch(1 0 0 / 0.14);
  font-size: 14px; color: oklch(1 0 0 / 0.5);
}
.footer__legal a { color: oklch(1 0 0 / 0.62); }
.footer__legal a:hover { color: #fff; }
.footer__legal nav { display: flex; flex-wrap: wrap; gap: 8px 20px; }

/* ==========================================================================
   Interior page furniture
   ========================================================================== */

/* Interior hero — the homepage treatment keyed to the page's h1. Uses the
   still poster rather than the video; the copy column carries breadcrumbs,
   title and lede, with the quote card alongside as on the homepage. */
.hero--interior .hero__inner {
  min-height: 0;
  padding: 150px var(--gutter) 72px;
  gap: 64px;
}
.hero--interior .hero__title { font-size: 52px; line-height: 1.08; }
.hero--interior .hero__sub { font-size: 19px; max-width: 640px; }

.crumbs { font-size: 14px; color: oklch(1 0 0 / 0.55); display: flex; flex-wrap: wrap; gap: 8px; }
.crumbs a { color: oklch(1 0 0 / 0.75); }
.crumbs a:hover { color: #fff; }
.crumbs span[aria-hidden] { opacity: 0.5; }

/* Two-column body: prose + sticky quote rail */
.split { display: grid; grid-template-columns: 1fr 400px; gap: 72px; align-items: start; }
.rail { position: sticky; top: 24px; display: flex; flex-direction: column; gap: 20px; }

.panel {
  background: #fff; border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 28px; display: flex; flex-direction: column; gap: 14px;
}
.panel__title { font-size: 20px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.panel__list { display: flex; flex-direction: column; gap: 10px; font-size: 16px; color: var(--ink-soft); }
.panel__list a { display: flex; justify-content: space-between; gap: 12px; color: var(--ink-soft); }
.panel__list a:hover { color: var(--orange-deep); }

/* FAQ */
.faq { display: flex; flex-direction: column; border-top: 1px solid var(--rule-strong); max-width: 860px; }
.faq__item { border-bottom: 1px solid var(--rule-strong); }
.faq__q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 0; background: none; border: 0; cursor: pointer; text-align: left;
  font-size: 19px; font-weight: 600; color: var(--ink);
}
.faq__q::after {
  content: "+"; flex-shrink: 0; font-size: 24px; font-weight: 400;
  color: var(--orange-deep); transition: transform .18s;
}
.faq__q[aria-expanded="true"]::after { content: "−"; }
.faq__a { padding: 0 0 24px; font-size: 17px; line-height: 1.65; color: var(--ink-soft); max-width: 68ch; }
.faq__a[hidden] { display: none; }

/* Chip lists — city links, service links */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 10px 16px; border: 1px solid var(--rule); border-radius: 999px;
  background: #fff; font-size: 15px; color: var(--ink-soft);
}
.chip:hover { border-color: var(--orange); color: var(--orange-deep); }

/* Simple stat / feature rows */
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tile {
  background: #fff; border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 28px; display: flex; flex-direction: column; gap: 10px;
}
.tile__k { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange-deep); }
.tile__v { font-size: 21px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.tile__c { font-size: 16px; line-height: 1.55; color: var(--ink-soft); }

/* Sticky mobile call bar — phones only */
.callbar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: oklch(0.12 0.01 260 / 0.96);
  backdrop-filter: blur(8px);
  gap: 10px;
}
.callbar a { flex: 1; padding: 15px 10px; font-size: 16px; }

/* ==========================================================================
   Responsive — the prototype was 1280px-only; everything below is new.
   ========================================================================== */

@media (max-width: 1180px) {
  :root { --gutter: 40px; }

  .hero__inner { grid-template-columns: 1fr 380px; gap: 48px; min-height: 820px; }
  .hero__title { font-size: 62px; }
  .contact { grid-template-columns: 1fr 440px; gap: 48px; }
  .split { grid-template-columns: 1fr 340px; gap: 48px; }
  .h-section { font-size: 42px; }
  .h-page { font-size: 46px; }
  .hero--interior .hero__title { font-size: 44px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .trust { flex-wrap: wrap; justify-content: flex-start; gap: 16px 34px; }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav__logo { height: 64px; }

  /* Nav collapses into a panel toggled by the hamburger */
  .nav__links.is-open {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    padding: 8px var(--gutter) 20px;
    background: var(--darkest);
    font-size: 17px;
  }
  .nav__links.is-open a { padding: 14px 0; border-bottom: 1px solid oklch(1 0 0 / 0.12); }
  .nav__links.is-open .nav__phone {
    margin-top: 16px; border-radius: var(--radius); text-align: center;
    padding: 16px; font-size: 19px; border-bottom: 0;
  }

  .hero__inner { grid-template-columns: 1fr; gap: 40px; min-height: 0; padding: 104px var(--gutter) 56px; }
  .hero__title { font-size: 46px; }
  .hero__sub { font-size: 18px; }
  .hero__stats { gap: 24px; }
  .hero__stat-v { font-size: 26px; }
  .quote-card { padding: 28px; }

  .beforeafter { grid-template-columns: 1fr; }
  .beforeafter__copy { padding: 64px var(--gutter); }
  .beforeafter__title { font-size: 36px; }
  .beforeafter__shot { min-height: 300px; }

  .reviews__grid { grid-template-columns: 1fr; border-top: 0; }
  .review { border-right: 0; border-top: 1px solid var(--rule-strong); padding: 28px 0; }

  .contact { grid-template-columns: 1fr; gap: 44px; }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .rail { position: static; }

  .footer { gap: 44px; }
  .footer__intro { flex-direction: column; gap: 24px; }
  .footer__logo { height: 92px; }
  .footer__title { font-size: 26px; }
  .footer__counties { grid-template-columns: 1fr; gap: 28px; padding-top: 32px; }
  .county { padding-bottom: 22px; border-bottom: 1px solid oklch(1 0 0 / 0.14); }
  .county:last-child { border-bottom: 0; padding-bottom: 0; }

  .cta-band { flex-direction: column; align-items: flex-start; gap: 20px; }
  .cta-band__title { font-size: 23px; }

  .tiles { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --gutter: 20px; }

  .section, .contact { padding: 64px var(--gutter); }
  .section--tight { padding: 48px var(--gutter); }

  .hero__title { font-size: 36px; letter-spacing: -0.02em; }
  .hero__sub { font-size: 17px; }
  .hero__award-text { font-size: 11px; letter-spacing: 0.12em; }
  /* Three stats across a 375px screen: a grid keeps the columns aligned where
     flex-wrap would leave the third one orphaned under a ragged edge. */
  .hero__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px 16px; }
  .hero__stat-v { font-size: 22px; }
  .hero__stat-k { font-size: 13px; line-height: 1.35; }

  .h-section { font-size: 32px; }
  .h-page { font-size: 34px; }
  .lede { font-size: 17px; }
  .hero--interior .hero__title { font-size: 32px; }
  .hero--interior .hero__inner { padding-top: 104px; }

  .cards { grid-template-columns: 1fr; gap: 20px; }
  .card__img { height: 200px; }

  .beforeafter__pair { grid-template-columns: 1fr 1fr; }
  .beforeafter__shot { min-height: 210px; }
  .beforeafter__title { font-size: 30px; }

  .form__row { grid-template-columns: 1fr; }
  .contact__form, .quote-card, .panel { padding: 22px; }
  .contact__phone { font-size: 20px; padding: 18px 26px; }
  .quote-card__title { font-size: 22px; }
  .quote-card__phone { font-size: 21px; }

  .trust { gap: 14px 24px; font-size: 14px; }
  .tiles { grid-template-columns: 1fr; }
  .footer { padding: 56px var(--gutter) 40px; }

  .prose { font-size: 16px; }
  .prose h2 { font-size: 25px; }
  .faq__q { font-size: 17px; }

  /* Sticky call bar takes over on phones; pad the page so it can't cover the footer */
  .callbar { display: flex; }
  body { padding-bottom: 76px; }
}

/* ==========================================================================
   Print
   ========================================================================== */

@media print {
  .nav, .callbar, .hero__media, .hero__scrim, .cta-band, .skip-link { display: none !important; }
  body { background: #fff; padding-bottom: 0; }
  .hero { background: #fff; }
  .hero__title, .hero__sub { color: #000; }
}
