/* Pressure Power Washing — one responsive page.
   Breakpoints: < 768 mobile · 768–1099 tablet · ≥ 1100 desktop (design at 1440 / 390). */

/* Archivo and Instrument Sans from Google Fonts, self-hosted (Latin subset, SIL OFL). See tools/get-fonts.sh. */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 700 800;
  font-stretch: 100% 110%;
  font-display: swap;
  src: url(../fonts/archivo-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/instrument-sans-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ground: #F3F4F1;
  --surface: #FFFFFF;
  --ink: #0B1C2C;
  --ink-muted: #45525E;
  --ink-subtle: #5A6671;
  --placeholder: #6B7580;
  --line: #D5DAD6;
  --line-soft: #E2E5E1;
  --accent: #1D5BFF;
  --accent-hover: #1446CC;
  --accent-tint: color-mix(in srgb, #1D5BFF 9%, #fff);
  --error: #B42318;
  --on-dark-muted: #A9B4BE;
  --media-bg: #DDE1DC;

  --font-display: 'Archivo', 'Helvetica Neue', sans-serif;
  --font-body: 'Instrument Sans', 'Helvetica Neue', system-ui, sans-serif;
  --focus: 3px solid rgba(29, 91, 255, .45);
  --gutter: 48px;
  --section-gap: 120px;
  --head-gap: 48px;
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

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

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

img { max-width: 100%; }
h1, h2, h3, p { margin: 0; }
button, input { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: var(--accent); }
a:hover { color: var(--accent-hover); }
input::placeholder { color: var(--placeholder); opacity: 1; }
a:focus-visible, button:focus-visible, input:focus-visible { outline: var(--focus); outline-offset: 2px; }
[hidden] { display: none !important; }

.ic { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

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

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 10;
  padding: 10px 16px; border-radius: 12px; background: var(--ink); color: #fff;
  font-weight: 600; text-decoration: none;
}
.skip:focus { top: 12px; color: #fff; }

.wrap { width: 100%; max-width: 1328px; margin-inline: auto; padding-inline: var(--gutter); }

.only-sm { display: none; }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ---------- Type ---------- */

.display-xl, .display-lg, .display-cta, .booking-title, .done-title, .card-title, .wordmark, .step-big {
  font-family: var(--font-display);
}
.display-xl {
  font-weight: 800; font-stretch: 110%; font-size: 80px; line-height: .96; letter-spacing: -.03em;
}
.display-xl .accent { color: var(--accent); }
.display-lg {
  font-weight: 800; font-stretch: 110%; font-size: 52px; line-height: 1; letter-spacing: -.03em;
}
.display-cta {
  font-weight: 800; font-stretch: 110%; font-size: 64px; line-height: 1; letter-spacing: -.03em;
}
.display-cta span { color: var(--on-dark-muted); }
.card-title { font-weight: 700; font-stretch: 105%; font-size: 21px; line-height: 1.2; letter-spacing: -.01em; }
.booking-title { font-weight: 800; font-stretch: 108%; font-size: 28px; line-height: 1.1; letter-spacing: -.02em; }

.eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-muted);
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.lead { font-size: 19px; line-height: 1.55; color: var(--ink-muted); text-wrap: pretty; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 56px; padding: 0 26px; border-radius: 14px; border: 0;
  font-size: 16px; font-weight: 600; text-decoration: none; white-space: nowrap;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-hover); color: #fff; }
.btn-outline {
  height: 48px; padding: 0 20px; border-radius: 12px; font-size: 15px;
  background: var(--surface); color: var(--ink); border: 1.5px solid var(--ink);
}
.btn-outline:hover { background: #E9ECEA; }
.btn-ghost-dark { padding: 0 22px; color: #fff; border: 1.5px solid rgba(255, 255, 255, .35); gap: 8px; }
.btn-ghost-dark:hover { color: #fff; background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .6); }

/* ---------- Header ---------- */

.site-header {
  height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; color: var(--ink); text-decoration: none; }
.brand:hover { color: var(--ink); }
.brand img { width: 36px; height: 36px; display: block; flex-shrink: 0; }
.brand .wordmark { font-weight: 800; font-stretch: 108%; font-size: 18px; letter-spacing: -.01em; white-space: nowrap; }
.nav { display: flex; align-items: center; gap: 36px; }
.nav a { color: var(--ink); text-decoration: none; font-size: 15px; font-weight: 500; }
.nav a:hover { color: var(--accent); }
.header-actions { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.header-phone {
  display: flex; align-items: center; gap: 8px; min-height: 44px;
  color: var(--ink); text-decoration: none; font-size: 15px; font-weight: 600; white-space: nowrap;
}
.header-phone:hover { color: var(--accent); }
.header-book { height: 46px; padding: 0 22px; border-radius: 12px; font-size: 15px; }

/* ---------- Hero ---------- */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 472px;
  grid-template-rows: auto 1fr;
  column-gap: 72px;
  padding-top: 32px; padding-bottom: 104px;
}
.hero-text { grid-column: 1; grid-row: 1; }
.hero-text .display-xl { margin-top: 24px; }
.hero-text .lead { margin-top: 24px; max-width: 560px; }
.ticks {
  margin: 28px 0 0; padding: 0; list-style: none;
  display: flex; flex-wrap: wrap; gap: 12px 28px; font-size: 15px; font-weight: 500;
}
.ticks li { display: flex; align-items: center; gap: 8px; }
.ticks .ic { color: var(--accent); }

.hero-media { grid-column: 1; grid-row: 2; display: block; margin-top: 40px; min-height: 320px; position: relative; }
.hero-media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 45%; border-radius: 20px; display: block; background: var(--media-bg);
}

/* ---------- Booking card ---------- */

.book-card {
  grid-column: 2; grid-row: 1 / span 2;
  scroll-margin-top: 24px;
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: 22px;
  box-shadow: 0 1px 2px rgba(11, 28, 44, .05), 0 18px 40px rgba(11, 28, 44, .08);
  padding: 32px; display: flex; flex-direction: column;
}
.book-form { display: flex; flex-direction: column; gap: 26px; }
.book-head { display: flex; flex-direction: column; gap: 6px; }
.book-head p { font-size: 15px; line-height: 1.45; color: var(--ink-muted); }

.step { display: flex; flex-direction: column; gap: 12px; }
.step-label { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; }
.step-num {
  width: 22px; height: 22px; border-radius: 50%; background: var(--ink); color: #fff;
  font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.chips { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.chip {
  height: 48px; border-radius: 12px; padding: 0 8px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 15px; font-weight: 500; line-height: 1.15; text-align: center; color: var(--ink);
  background: var(--surface); border: 1.5px solid var(--line);
  transition: background-color .15s ease, border-color .15s ease;
}
.chip .ic { display: none; color: var(--accent); }
.chip:hover { border-color: #AEB6B1; }
.chip[aria-pressed="true"] { background: var(--accent-tint); border-color: var(--accent); font-weight: 600; }
.chip[aria-pressed="true"] .ic { display: block; }

.days { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 8px; min-height: 64px; }
.slots { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.pill {
  border-radius: 12px; padding: 0 8px; color: var(--ink);
  background: var(--surface); border: 1.5px solid var(--line);
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.pill:hover { border-color: #AEB6B1; }
.pill[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.slot { height: 44px; font-size: 14px; font-weight: 600; }
.day { height: 64px; padding: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; }
.day-dow { font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-subtle); }
.day-num { font-family: var(--font-display); font-weight: 700; font-size: 21px; line-height: 1; }
.day[aria-pressed="true"] .day-dow { color: #C9D2DA; }

.sizes { display: flex; flex-direction: column; gap: 14px; }
.sizes:empty { display: none; }
.size-row { display: flex; flex-direction: column; gap: 8px; }
.size-label { font-size: 13px; font-weight: 600; color: var(--ink-muted); }
.size-row.is-missing .size-label { color: var(--error); }
.size-row.is-missing .size-opt:not([aria-pressed="true"]) { border-color: #E7B4AF; }
.size-opts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.size-opt {
  min-height: 48px; padding: 6px 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px;
  font-size: 14px; font-weight: 600; line-height: 1.2; text-align: center;
}
.size-hint { font-size: 12px; font-weight: 500; color: var(--ink-subtle); }
.size-opt[aria-pressed="true"] .size-hint { color: #C9D2DA; }

.bundle-note {
  padding: 10px 12px; border-radius: 12px;
  background: var(--accent-tint); color: #1446CC; font-size: 14px; font-weight: 600; line-height: 1.35;
}

.estimate {
  border: 1px solid var(--line-soft); border-radius: 14px; background: #F7F8F6; padding: 14px 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.estimate-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; font-size: 15px; font-weight: 600; }
.estimate-head strong { font-family: var(--font-display); font-weight: 800; font-stretch: 105%; font-size: 24px; line-height: 1.1; letter-spacing: -.01em; white-space: nowrap; }
.estimate-head strong.is-pending { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--ink-subtle); letter-spacing: 0; }
.estimate-lines { margin: 0; padding: 10px 0 0; list-style: none; border-top: 1px solid var(--line-soft); display: flex; flex-direction: column; gap: 4px; }
.estimate-lines:empty { display: none; }
.estimate-lines li { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; color: var(--ink-muted); }
.estimate-lines li span:last-child { white-space: nowrap; font-variant-numeric: tabular-nums; }
.estimate-lines li.is-saving { color: #1446CC; font-weight: 600; }
.estimate-note { font-size: 13px; line-height: 1.45; color: var(--ink-subtle); }
.fields-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink-muted); }
.field input {
  height: 48px; width: 100%; padding: 0 14px; border-radius: 12px;
  border: 1.5px solid var(--line); background: var(--surface); font-size: 16px; color: var(--ink);
}
.field input[aria-invalid="true"] { border-color: var(--error); }

/* Honeypot: off-screen, not display:none (some bots skip hidden fields) */
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.submit-wrap { display: flex; flex-direction: column; gap: 12px; }
.btn-submit { width: 100%; font-size: 17px; }
.btn-submit:disabled { background: #5D84F0; cursor: progress; }
.status { min-height: 20px; font-size: 14px; line-height: 1.4; text-align: center; color: var(--ink-muted); }
.status.is-error { color: var(--error); }

.call-row {
  border-top: 1px solid var(--line-soft); padding-top: 18px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 6px;
  font-size: 14px; color: var(--ink-muted);
}
.call-row a { font-weight: 600; text-decoration: none; }
.privacy { margin-top: -14px; font-size: 13px; text-align: center; color: var(--ink-subtle); }
.privacy a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.privacy a:hover { color: var(--ink); }

/* Success view */
.book-done {
  flex-grow: 1; display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  gap: 20px; padding: 24px 8px;
}
.done-tick {
  width: 64px; height: 64px; border-radius: 50%; background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.done-title { font-weight: 800; font-stretch: 108%; font-size: 34px; line-height: 1.05; letter-spacing: -.02em; }
.done-title:focus { outline: none; }
.done-summary { font-size: 17px; line-height: 1.5; font-weight: 600; }
.done-note { font-size: 16px; line-height: 1.55; color: var(--ink-muted); }

/* ---------- Sections ---------- */

.section { padding-bottom: var(--section-gap); display: flex; flex-direction: column; gap: var(--head-gap); }
.section-results { gap: 40px; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; }
.section-head p { max-width: 440px; font-size: 17px; line-height: 1.55; color: var(--ink-muted); }

/* Services */
.services { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.svc { display: flex; flex-direction: column; gap: 16px; }
.svc picture { display: block; }
.svc-img {
  display: block; width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: 16px; background: var(--media-bg);
}
.svc-placeholder {
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-muted); font-size: 14px; font-weight: 600;
}
.svc-body { display: flex; flex-direction: column; gap: 16px; flex-grow: 1; }
.svc-text { display: flex; flex-direction: column; gap: 6px; }
.svc-text p { font-size: 15px; line-height: 1.5; color: var(--ink-muted); }
.svc-btn {
  margin-top: auto; align-self: flex-start;
  height: 44px; padding: 0 16px; border-radius: 12px;
  display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; white-space: nowrap;
  background: transparent; border: 1.5px solid var(--ink); color: var(--ink);
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.svc-btn:hover { background: rgba(11, 28, 44, .06); }
.svc-btn[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); color: #fff; }
.svc-btn[aria-pressed="true"]:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.svc-btn .i-on, .svc-btn .t-on,
.svc-btn[aria-pressed="true"] .i-off, .svc-btn[aria-pressed="true"] .t-off { display: none; }
.svc-btn[aria-pressed="true"] .i-on, .svc-btn[aria-pressed="true"] .t-on { display: inline; }

/* Before / after slider */
.results-body { display: flex; flex-direction: column; gap: 14px; }
.ba {
  --split: 50%;
  position: relative; width: 100%; height: 640px; border-radius: 24px; overflow: hidden; background: var(--media-bg);
  -webkit-user-select: none; user-select: none;
}
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-before { clip-path: inset(0 calc(100% - var(--split)) 0 0); }
.ba-tag {
  position: absolute; top: 20px; padding: 7px 14px; border-radius: 999px;
  background: rgba(11, 28, 44, .78); color: #fff; font-size: 13px; font-weight: 600; letter-spacing: .02em;
  pointer-events: none;
}
.ba-tag-before { left: 20px; }
.ba-tag-after { right: 20px; }
.ba-line {
  position: absolute; top: 0; bottom: 0; left: var(--split); width: 3px; margin-left: -1.5px;
  background: #fff; pointer-events: none;
}
.ba-handle {
  position: absolute; top: 50%; left: var(--split); width: 56px; height: 56px; margin: -28px 0 0 -28px;
  border-radius: 50%; background: #fff; color: var(--ink); box-shadow: 0 6px 20px rgba(11, 28, 44, .25);
  display: flex; align-items: center; justify-content: center; pointer-events: none;
}
.ba:has(.ba-range:focus-visible) .ba-handle { outline: 3px solid rgba(29, 91, 255, .9); outline-offset: 3px; }
.ba-range {
  position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0;
  cursor: ew-resize; touch-action: pan-y; -webkit-appearance: none; appearance: none; background: transparent;
}
/* Thin thumb so the native value maps onto the full width, same as the pointer handler */
.ba-range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 1px; height: 100%; }
.ba-range::-moz-range-thumb { width: 1px; height: 100%; border: 0; }
.caption { font-size: 13px; color: var(--ink-subtle); }

/* How it works */
.steps { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px; }
.steps li { border-top: 2px solid var(--ink); padding-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.step-big { font-weight: 800; font-stretch: 110%; font-size: 44px; line-height: 1; color: var(--accent); }
.steps h3 { margin-top: 8px; font-size: 21px; font-weight: 700; line-height: 1.3; }
.steps p { font-size: 16px; line-height: 1.55; color: var(--ink-muted); }

/* FAQ */
.faq { display: grid; grid-template-columns: 400px minmax(0, 1fr); gap: 80px; align-items: start; }
.faq-head { display: flex; flex-direction: column; gap: 16px; }
.faq-head p { font-size: 17px; line-height: 1.55; color: var(--ink-muted); }
.faq-head a { font-weight: 600; text-decoration: none; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item h3 { font-size: inherit; font-weight: inherit; }
.faq-q {
  width: 100%; min-height: 72px; padding: 20px 0; border: 0; background: transparent; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 24px; text-align: left;
  font-size: 19px; font-weight: 600; line-height: 1.35;
}
.faq-q:hover { color: var(--accent-hover); }
.faq-q .ic { transition: transform .2s ease; }
.faq-q[aria-expanded="true"] .ic { transform: rotate(45deg); }
.faq-a p { padding: 0 64px 24px 0; font-size: 16px; line-height: 1.6; color: var(--ink-muted); }

/* ---------- Footer ---------- */

.site-footer { background: var(--ink); color: #fff; }
.footer-cta { padding-top: 104px; display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; }
.footer-copy { display: flex; flex-direction: column; gap: 20px; }
.footer-copy p { font-size: 18px; line-height: 1.55; color: var(--on-dark-muted); }
.footer-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.footer-base { padding-top: 72px; padding-bottom: 40px; }
.footer-rule {
  border-top: 1px solid rgba(255, 255, 255, .14); padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  font-size: 14px; color: var(--on-dark-muted);
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.logo-tile { width: 40px; height: 40px; border-radius: 10px; background: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-tile img { width: 28px; height: 28px; display: block; }
.footer-brand .wordmark { font-weight: 800; font-stretch: 108%; font-size: 16px; color: #fff; }
.footer-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 28px; }
.footer-meta a { color: var(--on-dark-muted); text-underline-offset: 2px; }
.footer-meta a:hover { color: #fff; }

/* ---------- Legal pages (privacy, 404) ---------- */

.legal { max-width: 800px; margin-inline: 0; padding-top: 32px; padding-bottom: 96px; }
.legal .display-lg { margin-bottom: 12px; }
.legal-updated { font-size: 14px; color: var(--ink-subtle); margin-bottom: 32px; }
.legal h2 { font-family: var(--font-display); font-weight: 700; font-stretch: 105%; font-size: 22px; line-height: 1.25; margin: 40px 0 12px; }
.legal p, .legal li { font-size: 17px; line-height: 1.6; color: var(--ink-muted); }
.legal p + p, .legal ul + p { margin-top: 12px; }
.legal ul { margin: 12px 0 0; padding-left: 1.2em; }
.legal li + li { margin-top: 8px; }
.legal strong { color: var(--ink); font-weight: 600; }
.legal-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.legal-actions .btn-outline { height: 56px; border-radius: 14px; }
@media (min-width: 1328px) { .legal { margin-inline: calc((100vw - 1328px) / 2); } }

/* ---------- Tablet: 768–1099 ---------- */

@media (max-width: 1099px) {
  :root { --gutter: 32px; --section-gap: 96px; --head-gap: 40px; }
  .site-header { height: 72px; }
  .nav { display: none; }

  .hero { grid-template-columns: minmax(0, 1fr); grid-template-rows: none; padding-top: 24px; padding-bottom: 88px; }
  .hero-text, .hero-media, .book-card { grid-column: 1; grid-row: auto; }
  .display-xl { font-size: 64px; }
  .hero-media { margin-top: 36px; min-height: 0; height: clamp(300px, 42vw, 420px); }
  .book-card { margin: 32px auto 0; width: 100%; max-width: 560px; }

  .display-lg { font-size: 44px; }
  .display-cta { font-size: 52px; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .section-head p { max-width: 560px; }
  .services { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 40px; }
  .ba { height: 480px; }
  .steps { gap: 32px; }
  .faq { grid-template-columns: minmax(0, 1fr); gap: 32px; }

  .footer-cta { flex-direction: column; align-items: flex-start; gap: 32px; padding-top: 88px; }
}

/* ---------- Mobile: < 768 ---------- */

@media (max-width: 767px) {
  :root { --gutter: 20px; --section-gap: 72px; --head-gap: 24px; }
  .hide-sm { display: none; }
  .only-sm { display: inline; }

  .site-header { height: 64px; gap: 12px; }
  .brand { gap: 10px; }
  .brand img { width: 30px; height: 30px; }
  .brand .wordmark { font-stretch: 105%; font-size: 15px; }
  .header-phone { display: none; }
  .header-book { height: 44px; padding: 0 16px; }

  .hero { padding-top: 20px; padding-bottom: 56px; }
  .eyebrow { font-size: 12px; gap: 8px; }
  .eyebrow .dot { width: 7px; height: 7px; }
  .display-xl { font-size: clamp(36px, 11.3vw, 44px); line-height: .98; font-stretch: 108%; }
  .hero-text .display-xl { margin-top: 18px; }
  .hero-text .lead { margin-top: 16px; font-size: 17px; }
  .ticks { margin-top: 20px; flex-direction: column; gap: 10px; }
  .hero-media { margin-top: 28px; height: 230px; }
  .hero-media img { border-radius: 16px; }

  .book-card {
    margin-top: 24px; max-width: none; scroll-margin-top: 16px;
    border-radius: 20px; padding: 20px;
    box-shadow: 0 1px 2px rgba(11, 28, 44, .05), 0 14px 32px rgba(11, 28, 44, .08);
  }
  .book-form { gap: 24px; }
  .booking-title { font-size: 24px; }
  .chips { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .chip:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .days, .slots { gap: 6px; }
  .days { min-height: 60px; }
  .day { height: 60px; }
  .day-dow { font-size: 11px; }
  .day-num { font-size: 19px; }
  .slot { padding: 0 6px; }
  .fields-row { grid-template-columns: minmax(0, 1fr); }
  .size-opts { gap: 6px; }
  .size-opt { padding: 6px 4px; font-size: 13px; }
  .estimate { padding: 12px 14px; }
  .estimate-head strong { font-size: 22px; }
  .call-row { padding-top: 16px; }
  .privacy { margin-top: -12px; }

  .book-done { gap: 16px; padding: 12px 4px; justify-content: flex-start; }
  .done-tick { width: 56px; height: 56px; }
  .done-tick .ic { width: 26px; height: 26px; }
  .done-title { font-size: 28px; }
  .done-summary { font-size: 16px; }
  .done-note { font-size: 15px; }

  .display-lg { font-size: 36px; font-stretch: 108%; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .section-head p { max-width: none; font-size: 16px; }

  .services { display: flex; flex-direction: column; gap: 0; border-bottom: 1px solid var(--line); }
  .svc { flex-direction: row; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line); }
  .svc picture, .svc-img { flex-shrink: 0; width: 104px; height: 104px; }
  .svc-img { aspect-ratio: 1; border-radius: 12px; }
  .svc-placeholder { font-size: 12px; }
  .svc-body { gap: 6px; min-width: 0; }
  .card-title { font-size: 18px; }
  .svc-text p { font-size: 14px; line-height: 1.45; }
  .svc-btn { margin-top: 4px; padding: 0 14px; }

  .section-results { gap: 24px; }
  .results-body { gap: 12px; }
  .ba { height: 260px; border-radius: 16px; }
  .ba-tag { top: 12px; padding: 5px 11px; font-size: 12px; letter-spacing: 0; }
  .ba-tag-before { left: 12px; }
  .ba-tag-after { right: 12px; }
  .ba-handle { width: 44px; height: 44px; margin: -22px 0 0 -22px; }
  .ba-handle .ic { width: 20px; height: 20px; }

  #how { gap: 28px; }
  .steps { display: flex; flex-direction: column; gap: 28px; }
  .steps li { padding-top: 18px; gap: 8px; }
  .step-big { font-size: 34px; }
  .steps h3 { margin-top: 6px; font-size: 19px; }
  .steps p { font-size: 15px; }

  .faq { display: flex; flex-direction: column; gap: 24px; }
  .faq-head { gap: 12px; }
  .faq-head p { font-size: 16px; }
  .faq-q { min-height: 64px; padding: 18px 0; gap: 16px; font-size: 17px; }
  .faq-q .ic { width: 20px; height: 20px; }
  .faq-a p { padding: 0 28px 20px 0; font-size: 15px; }

  .footer-cta { padding-top: 64px; gap: 28px; }
  .display-cta { font-size: 40px; font-stretch: 108%; }
  .footer-copy { gap: 16px; }
  .footer-copy p { font-size: 17px; }
  .footer-actions { flex-direction: column-reverse; align-items: stretch; width: 100%; }
  .footer-actions .btn { width: 100%; }
  .footer-base { padding-top: 48px; padding-bottom: 32px; }
  .footer-rule { flex-direction: column; align-items: flex-start; gap: 16px; padding-top: 24px; }
  .legal { padding-top: 20px; padding-bottom: 64px; }
  .legal p, .legal li { font-size: 16px; }
  .legal h2 { font-size: 20px; margin-top: 32px; }
  .footer-brand .wordmark { font-stretch: 105%; }
  .footer-meta { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* Very narrow phones: keep the service-area eyebrow on one line */
@media (max-width: 379px) {
  .eyebrow { font-size: 11px; letter-spacing: .06em; }
}
