/* Boulder County Dryer Vent — site stylesheet.
   Built on the "Industry" design system (blueprint frames, Barlow Condensed
   over Barlow, corner registration marks) with the site's ember / ink / sand
   palette layered on top. */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;700&family=Barlow+Condensed:wght@400;600&display=swap');

/* ── Tokens ─────────────────────────────────────────────────────────── */
:root {
  --ember: #E8632B;
  --ember-d: #C94E18;
  --ink: #1F2A37;
  --sand: #F6F1EA;
  --muted: #6B7280;
  --body: #2B2B2B;
  --text-2: #3d4550;
  --text-3: #4a525c;
  --green: #2E8B57;

  --color-text: #1d1f20;
  --color-accent: #5980a6;
  --color-divider: color-mix(in srgb, #1d1f20 16%, transparent);
  --color-neutral-300: #d4d4d7;
  --color-accent-100: #eef6ff;
  --color-accent-400: #94bce3;
  --color-accent-600: #597ea3;
  --color-accent-700: #416180;
  --color-accent-900: #1d2d3d;

  --font-heading: "Barlow Condensed", system-ui, sans-serif;
  --font-body: "Barlow", system-ui, sans-serif;

  --shadow-md: 0 3px 10px color-mix(in srgb, #2b2b2d 16%, transparent);
  --shadow-lg: 0 12px 32px color-mix(in srgb, #2b2b2d 22%, transparent);

  --wrap: 1180px;
  --gutter: clamp(20px, 4vw, 32px);
  --bar-h: 76px;
}

/* ── Base ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: #fff; color: var(--body);
  font-family: var(--font-body); font-size: 17px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading); font-weight: 600;
  line-height: 1.12; letter-spacing: -0.015em; margin: 0 0 7px;
}
p { margin: 0 0 10px; }
a { color: var(--ember-d); text-underline-offset: 3px; }
a:hover { color: var(--ember); }
img { display: block; max-width: 100%; }
figure { margin: 0; }
button { font: inherit; }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--ember); outline-offset: 2px; }
::selection { background: color-mix(in srgb, var(--ember) 30%, transparent); }
summary::-webkit-details-marker { display: none; }
.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-link { position: absolute; left: 8px; top: -60px; z-index: 100; padding: 10px 14px; background: var(--ink); color: #fff; font-family: var(--font-heading); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; text-decoration: none; }
.skip-link:focus { top: 8px; color: #fff; }

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

/* ── Blueprint frame (design-system) ────────────────────────────────── */
.blueprint { position: relative; border: 1px solid var(--color-divider); border-radius: 0; }
.blueprint > .corner {
  position: absolute; width: 11px; height: 11px; pointer-events: none;
  color: color-mix(in srgb, var(--color-text) 55%, transparent);
}
.blueprint > .corner::before, .blueprint > .corner::after { content: ""; position: absolute; background: currentColor; }
.blueprint > .corner::before { left: 5px; top: 0; width: 1px; height: 100%; }
.blueprint > .corner::after  { top: 5px; left: 0; width: 100%; height: 1px; }
.blueprint > .corner.tl { top: -6px; left: -6px; }
.blueprint > .corner.tr { top: -6px; right: -6px; }
.blueprint > .corner.bl { bottom: -6px; left: -6px; }
.blueprint > .corner.br { bottom: -6px; right: -6px; }
.blueprint.on-dark > .corner { color: rgba(255,255,255,0.5); }
.blueprint.on-dark { border-color: rgba(255,255,255,0.22); }

.duotone { position: relative; overflow: hidden; }
.duotone::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: var(--color-accent); mix-blend-mode: color; }

/* ── Layout ─────────────────────────────────────────────────────────── */
.wrap { max-width: var(--wrap); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.wrap--narrow { max-width: 820px; }
.wrap--prose { max-width: 760px; }
.page { overflow-x: hidden; }

.section { padding-top: clamp(48px, 7vw, 96px); padding-bottom: clamp(48px, 7vw, 96px); }
.section--xl { padding-top: clamp(56px, 8vw, 112px); padding-bottom: clamp(56px, 8vw, 112px); }
.section--md { padding-top: clamp(44px, 6vw, 88px); padding-bottom: clamp(44px, 6vw, 88px); }
.section--hero { padding-top: clamp(40px, 6vw, 84px); padding-bottom: clamp(40px, 6vw, 84px); }
.section--hero-sm { padding-top: clamp(36px, 5vw, 72px); padding-bottom: clamp(36px, 5vw, 72px); }

.bg-white { background: #fff; }
.bg-sand { background: var(--sand); }
.bg-ink { background: var(--ink); color: #fff; }
.bt { border-top: 1px solid var(--color-divider); }
.bb { border-bottom: 1px solid var(--color-divider); }

.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(22px, 4vw, 52px); }
.grid-2--tight { gap: clamp(18px, 3vw, 48px); }
.grid-2--wide { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(24px, 4vw, 56px); }
.grid-2--280 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(22px, 3vw, 44px); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: clamp(16px, 2.5vw, 28px); }
.grid-cards { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(16px, 2.5vw, 26px); }
.grid-cards--270 { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.grid-cards--280 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.center { align-items: center; }
.start { align-items: start; }

.row-between { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 16px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }

.mt-1 { margin-top: 12px; }
.mt-2 { margin-top: clamp(20px, 3vw, 32px); }
.mt-3 { margin-top: clamp(24px, 4vw, 40px); }
.mt-4 { margin-top: clamp(26px, 4vw, 44px); }
.mt-5 { margin-top: clamp(34px, 5vw, 60px); }
.mb-2 { margin-bottom: clamp(20px, 3vw, 32px); }
.mb-3 { margin-bottom: clamp(24px, 4vw, 40px); }
.mb-4 { margin-bottom: clamp(28px, 4vw, 48px); }

/* ── Type ───────────────────────────────────────────────────────────── */
.kicker {
  font-family: var(--font-heading); font-weight: 600; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ember-d); margin: 0 0 12px;
}
.kicker--light { color: #fff; opacity: 0.6; }

.t-hero { font-size: clamp(42px, 8.2vw, 78px); line-height: 0.97; letter-spacing: -0.025em; text-transform: uppercase; color: #fff; margin: 18px 0 0; }
.t-page { font-size: clamp(38px, 6.6vw, 70px); line-height: 0.98; letter-spacing: -0.03em; text-transform: uppercase; color: var(--ink); margin: 0; }
.t-page--lg { font-size: clamp(40px, 7vw, 72px); }
.t-page--sm { font-size: clamp(36px, 6.2vw, 64px); line-height: 0.99; }
.t-section { font-size: clamp(32px, 5vw, 52px); line-height: 1.02; letter-spacing: -0.02em; text-transform: uppercase; color: var(--ink); margin: 0; }
.t-section--sm { font-size: clamp(30px, 4.6vw, 48px); line-height: 1.04; }
.t-block { font-size: clamp(28px, 4.2vw, 42px); line-height: 1.04; letter-spacing: -0.02em; text-transform: uppercase; color: var(--ink); margin: 0; }
.t-cta { font-size: clamp(34px, 5.4vw, 58px); line-height: 1; letter-spacing: -0.025em; text-transform: uppercase; color: #fff; margin: 0; }
.t-cta--sm { font-size: clamp(32px, 5vw, 54px); }
.t-cta--xs { font-size: clamp(30px, 4.8vw, 52px); }
.t-card { font-size: 26px; text-transform: uppercase; letter-spacing: -0.01em; color: var(--ink); margin: 18px 0 8px; }
.t-sub { font-size: clamp(22px, 3vw, 28px); text-transform: uppercase; color: var(--ink); margin: 0 0 14px; }
.on-ink { color: #fff; }
.max-20 { max-width: 20ch; } .max-22 { max-width: 22ch; } .max-24 { max-width: 24ch; } .max-26 { max-width: 26ch; }

.lede { font-size: clamp(18px, 2.2vw, 21px); color: var(--text-2); max-width: 56ch; margin: 18px 0 0; }
.lede--tight { max-width: 48ch; }
.lede--sm { font-size: clamp(18px, 2.2vw, 20px); max-width: 54ch; margin-top: 16px; }
.body-lg { font-size: clamp(17px, 2vw, 19px); color: var(--text-2); margin: 0 0 14px; }
.body-lg:last-child { margin-bottom: 0; }
.muted { color: var(--muted); }
.note { margin: 20px 0 0; font-style: italic; font-size: 15px; color: var(--muted); max-width: 78ch; }
.on-ink .lede, .on-ink .body-lg, .bg-ink .lede-light { color: rgba(255,255,255,0.78); }
.lede-light { font-size: clamp(17px, 2vw, 20px); color: rgba(255,255,255,0.78); max-width: 44ch; margin: 16px 0 0; }

/* ── Buttons ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 56px; padding: 0 30px; text-decoration: none; cursor: pointer;
  font-family: var(--font-heading); font-weight: 600; font-size: 20px;
  text-transform: uppercase; letter-spacing: 0.04em; white-space: nowrap;
  border: 1px solid transparent; border-radius: 0;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
}
.btn svg { flex: none; }
.btn--lg { min-height: 58px; padding: 0 32px; font-size: 21px; }
.btn--md { min-height: 54px; padding: 0 26px; font-size: 19px; }
.btn--sm { min-height: 48px; padding: 0 18px; font-size: 17px; }
.btn--block { display: flex; width: 100%; }

.btn-ember { background: var(--ember); border-color: var(--ember); color: #fff; }
.btn-ember:hover { background: var(--ember-d); color: #fff; }
.btn-ember.blueprint:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(232,99,43,0.42); }
.btn-ember:disabled { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-ember.blueprint > .corner { color: rgba(255,255,255,0.75); }

.btn-outline-light { border-color: rgba(255,255,255,0.55); color: #fff; letter-spacing: 0.02em; }
.btn-outline-light:hover { background: rgba(255,255,255,0.14); color: #fff; }
.btn-outline-ink { border-color: var(--ink); color: var(--ink); letter-spacing: 0.03em; }
.btn-outline-ink:hover { background: var(--sand); color: var(--ink); }
.btn-outline-ink.btn--phone { text-transform: none; letter-spacing: 0; }
.btn-outline-light.btn--phone { text-transform: none; letter-spacing: 0; }
.btn-quiet { border-color: var(--color-divider); color: var(--muted); font-size: 18px; }
.btn-quiet:hover { background: var(--sand); color: var(--ink); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px;
  font-family: var(--font-heading); font-weight: 600; font-size: 17px;
  text-transform: uppercase; letter-spacing: 0.05em; text-decoration: none; color: var(--ember-d);
}
.link-arrow:hover { color: var(--ember); }
.link-arrow--sm { font-size: 16px; }

.text-btn {
  min-height: 44px; background: transparent; border: 0; cursor: pointer; padding: 0 6px;
  font-family: var(--font-heading); font-weight: 600; font-size: 16px;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted);
}
.text-btn:hover { color: var(--ink); }

/* ── Header ─────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,0.94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-divider);
}
.site-header .wrap {
  min-height: clamp(64px, 8vw, 72px); display: flex; align-items: center; gap: clamp(10px, 2vw, 26px);
  padding-left: clamp(16px, 4vw, 32px); padding-right: clamp(16px, 4vw, 32px);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); margin-right: auto; }
.brand:hover { color: var(--ink); }
.brand-mark { width: 30px; height: 30px; border: 1px solid var(--ink); display: grid; place-items: center; flex: none; }
.brand-text { display: flex; flex-direction: column; font-family: var(--font-heading); font-weight: 600; text-transform: uppercase; line-height: 1; letter-spacing: 0.03em; }
.brand-text small { font-size: 11px; color: var(--muted); letter-spacing: 0.18em; }
.brand-text span { font-size: 19px; }

.nav-desktop { display: flex; align-items: center; gap: clamp(12px, 1.8vw, 24px); }
.nav-link {
  text-decoration: none; color: var(--ink); padding: 4px 0;
  font-family: var(--font-heading); font-weight: 600; font-size: 16px; text-transform: uppercase; letter-spacing: 0.05em;
}
.nav-link:hover { color: var(--ember); }
.nav-link::after { content: ""; display: block; height: 2px; margin-top: 3px; background: transparent; }
.nav-link[aria-current="page"]::after { background: var(--ember); }
.header-phone {
  text-decoration: none; color: var(--ink); white-space: nowrap;
  font-family: var(--font-heading); font-weight: 600; font-size: 16px;
  border-left: 1px solid var(--color-divider); padding-left: clamp(12px, 1.6vw, 20px);
}
.header-phone:hover { color: var(--ember); }
.header-book { min-height: 48px; padding: 0 clamp(14px, 2vw, 22px); font-size: clamp(15px, 2vw, 17px); }
.header-book.blueprint:hover { box-shadow: 0 8px 20px rgba(232,99,43,0.38); }

.menu-btn {
  display: none; width: 48px; height: 48px; flex: none; place-items: center; gap: 5px;
  background: transparent; border: 1px solid var(--color-divider); cursor: pointer; padding: 0;
}
.menu-btn span { display: block; width: 20px; height: 1.5px; background: var(--ink); }
.menu-btn:hover { background: var(--sand); }

.menu-overlay {
  position: fixed; inset: 0; z-index: 80; background: var(--ink); color: #fff;
  display: none; flex-direction: column; padding: 20px clamp(20px, 6vw, 32px) 28px; overflow-y: auto;
}
.menu-overlay.is-open { display: flex; }
.menu-top { display: flex; align-items: center; justify-content: space-between; min-height: 48px; }
.menu-top span { font-family: var(--font-heading); font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; font-size: 12px; color: rgba(255,255,255,0.6); }
.menu-close { width: 48px; height: 48px; background: transparent; border: 1px solid rgba(255,255,255,0.25); color: #fff; font-size: 22px; cursor: pointer; line-height: 1; }
.menu-links { display: flex; flex-direction: column; gap: 2px; margin-top: 24px; }
.menu-links a {
  text-decoration: none; color: #fff; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.12);
  font-family: var(--font-heading); font-weight: 600; font-size: 34px; text-transform: uppercase; letter-spacing: 0.01em;
}
.menu-links a:hover, .menu-links a[aria-current="page"] { color: var(--ember); }
.menu-actions { margin-top: auto; display: flex; flex-direction: column; gap: 12px; padding-top: 24px; }
.menu-actions .btn { display: flex; }

.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; display: none;
  grid-template-columns: 1fr 1.4fr; gap: 8px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.96); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--color-divider);
}
.mobile-bar a { display: flex; align-items: center; justify-content: center; min-height: 48px; text-decoration: none; font-family: var(--font-heading); font-weight: 600; font-size: 17px; text-transform: uppercase; letter-spacing: 0.03em; }
.mobile-bar .call { border: 1px solid var(--ink); color: var(--ink); }
.mobile-bar .book { background: var(--ember); color: #fff; }
.mobile-bar .book:hover { background: var(--ember-d); }

@media (max-width: 860px) {
  .nav-desktop, .header-phone { display: none; }
  .menu-btn { display: grid; }
  body:not(.no-bar) .mobile-bar { display: grid; }
  body:not(.no-bar) { padding-bottom: var(--bar-h); }
  body.menu-open .mobile-bar { display: none; }
  body.menu-open { overflow: hidden; }
}

/* ── Home hero ──────────────────────────────────────────────────────── */
.hero { position: relative; background: var(--ink); color: #fff; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 62% 50%; opacity: 0.85; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(31,42,55,0.94) 0%, rgba(31,42,55,0.76) 48%, rgba(31,42,55,0.15) 100%); }
.hero .wrap { position: relative; padding-top: clamp(48px, 7vw, 104px); padding-bottom: clamp(56px, 8vw, 112px); }
.hero-copy { max-width: 660px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; padding: 6px 12px;
  font-family: var(--font-heading); font-weight: 600; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: #fff; border: 1px solid rgba(255,255,255,0.35);
}
.eyebrow i { width: 6px; height: 6px; background: var(--ember); display: block; }
.hero-wave { overflow: visible; margin: 14px 0 0; max-width: 100%; }
.hero-lede { margin: 20px 0 0; font-size: clamp(18px, 2.4vw, 21px); line-height: 1.5; color: rgba(255,255,255,0.88); max-width: 46ch; }
.hero-actions { margin-top: 30px; }
.hero-fine { margin: 14px 0 0; font-size: 15px; color: rgba(255,255,255,0.62); }
.price-tag {
  display: inline-flex; flex-direction: column; margin-top: clamp(34px, 4vw, 48px);
  padding: 16px 22px; background: #fff; border-color: #fff; box-shadow: var(--shadow-lg); color: var(--ink);
}
.price-tag small { font-family: var(--font-heading); font-weight: 600; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.price-tag b { font-family: var(--font-heading); font-weight: 600; font-size: 54px; line-height: 1; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.price-tag .unit { font-size: 15px; color: var(--muted); }
.baseline { display: flex; align-items: baseline; gap: 8px; }

/* ── Trust bar ──────────────────────────────────────────────────────── */
.trust { padding-top: 22px; padding-bottom: 22px; display: grid; gap: 14px clamp(20px, 4vw, 40px); grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item i { width: 36px; height: 36px; flex: none; border: 1px solid var(--color-divider); display: grid; place-items: center; background: #fff; }
.trust-item span { font-family: var(--font-heading); font-weight: 600; font-size: 17px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink); }

/* ── Cards ──────────────────────────────────────────────────────────── */
.card { background: #fff; padding: clamp(20px, 3vw, 30px); }
.card--sand { background: var(--sand); }
.card--pad-lg { padding: clamp(22px, 3vw, 32px); }
.card--pad-xl { padding: clamp(26px, 4vw, 44px); }
.card--lift { transition: transform .18s ease, box-shadow .18s ease; }
.card--lift:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card--accent { background: var(--color-accent-100); border-color: var(--color-accent-400); }
.card--accent h2, .card--accent h3, .card--accent p, .card--accent li { color: var(--color-accent-900); }
.card p:last-child { margin-bottom: 0; }
.card-body { color: var(--text-3); margin: 0; }

.num {
  display: inline-grid; place-items: center; width: 46px; height: 46px; background: var(--ember); color: #fff;
  font-family: var(--font-heading); font-weight: 600; font-size: 24px; line-height: 1;
}

.check-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 16px; color: var(--text-2); }
.check-list svg { flex: none; margin-top: 5px; }
.check-list--boxed { gap: 10px; }
.check-list--boxed li { background: #fff; padding: 14px 18px; color: var(--body); }
.check-list--boxed svg { margin-top: 4px; }

/* Price cards */
.price-card { display: flex; flex-direction: column; padding: clamp(22px, 3vw, 32px); background: #fff; }
.price-card--lg { padding: clamp(24px, 3vw, 34px); }
.price-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; min-height: 26px; }
.price-kicker { font-family: var(--font-heading); font-weight: 600; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.badge { font-family: var(--font-heading); font-weight: 600; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; background: var(--ember); color: #fff; padding: 4px 9px; }
.price-amount { display: flex; align-items: baseline; gap: 9px; margin-top: 12px; }
.price-amount b { font-family: var(--font-heading); font-weight: 600; font-size: clamp(50px, 7vw, 66px); line-height: 0.9; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; color: var(--ink); }
.price-card--lg .price-amount b { font-size: clamp(54px, 8vw, 74px); line-height: 0.88; }
.price-amount span { font-size: 15px; color: var(--muted); }
.price-title { margin: 16px 0 6px; font-size: 24px; text-transform: uppercase; color: var(--ink); }
.price-card--lg .price-title { font-size: 26px; }
.price-body { margin: 0 0 16px; color: var(--text-3); }
.price-card .check-list { margin: 0 0 22px; padding: 16px 0 0; border-top: 1px solid var(--color-divider); }
.qualifies { font-family: var(--font-heading); font-weight: 600; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); border-top: 1px solid var(--color-divider); padding-top: 16px; }
.price-card--lg .check-list { border-top: 0; padding-top: 0; margin: 10px 0 22px; }
.price-cta { margin-top: auto; display: flex; align-items: center; justify-content: center; min-height: 50px; background: var(--ember); color: #fff; text-decoration: none; font-family: var(--font-heading); font-weight: 600; font-size: 18px; text-transform: uppercase; letter-spacing: 0.04em; white-space: nowrap; transition: background .16s ease; }
.price-cta:hover { background: var(--ember-d); color: #fff; }
.price-card--lg .price-cta { min-height: 52px; font-size: 19px; }

/* Compact price rows (town pages) */
.price-row { display: flex; align-items: center; gap: 16px; padding: 18px 20px; background: #fff; transition: box-shadow .18s ease; flex-wrap: wrap; }
.price-row:hover { box-shadow: var(--shadow-md); }
.price-row b { font-family: var(--font-heading); font-weight: 600; font-size: 42px; line-height: 1; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; color: var(--ink); min-width: 90px; }
.price-row .price-row-text { display: flex; flex-direction: column; line-height: 1.3; flex: 1; min-width: 160px; }
.price-row .price-row-text span:first-child { font-family: var(--font-heading); font-weight: 600; font-size: 19px; text-transform: uppercase; color: var(--ink); }
.price-row .price-row-text span:last-child { font-size: 15px; color: var(--muted); }

/* Before / after reveal */
.reveal { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--sand); --reveal: 52%; }
.reveal img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.reveal .before { clip-path: inset(0 calc(100% - var(--reveal)) 0 0); }
.reveal-label { position: absolute; top: 12px; font-family: var(--font-heading); font-weight: 600; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; padding: 5px 10px; }
.reveal-label.l { left: 12px; background: var(--ink); color: #fff; }
.reveal-label.r { right: 12px; background: #fff; color: var(--ink); }
.reveal-line { position: absolute; top: 0; bottom: 0; left: var(--reveal); width: 2px; background: var(--ember); pointer-events: none; }
.reveal-knob { position: absolute; top: 50%; left: var(--reveal); transform: translate(-50%, -50%); width: 44px; height: 44px; background: var(--ember); display: grid; place-items: center; pointer-events: none; }
.reveal input[type="range"] { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: col-resize; }
.reveal input[type="range"]:focus-visible ~ .reveal-knob { outline: 2px solid #fff; outline-offset: 2px; }
figcaption.cap { padding: 10px 12px; font-size: 14px; color: var(--muted); }

/* Figures */
.fig-img { display: block; background: #fff; }
.fig-img img { width: 100%; height: 100%; object-fit: cover; }
.ar-16-9 { aspect-ratio: 16 / 9; }
.ar-4-3 { aspect-ratio: 4 / 3; }
.ar-4-5 { aspect-ratio: 4 / 5; }
.ar-1-1 { aspect-ratio: 1 / 1; }

/* ── Reviews band (honest placeholder) ──────────────────────────────── */
.review-card { padding: clamp(20px, 3vw, 28px); display: flex; flex-direction: column; gap: 14px; }
.review-card p { margin: 0; font-size: 17px; line-height: 1.55; color: rgba(255,255,255,0.9); }
.review-card .who { margin-top: auto; display: flex; align-items: center; gap: 11px; }
.review-card .who i { width: 38px; height: 38px; flex: none; border: 1px solid rgba(255,255,255,0.3); display: grid; place-items: center; font-family: var(--font-heading); font-weight: 600; font-size: 17px; color: #fff; font-style: normal; }
.review-card .who b { font-family: var(--font-heading); font-weight: 600; font-size: 17px; color: #fff; display: block; line-height: 1.25; }
.review-card .who small { font-size: 14px; color: rgba(255,255,255,0.55); }
.stars { display: flex; gap: 3px; }

/* ── Map figure ─────────────────────────────────────────────────────── */
.map-fig {
  background:
    linear-gradient(0deg, rgba(89,128,166,0.07), rgba(89,128,166,0.07)),
    repeating-linear-gradient(0deg, transparent 0 27px, rgba(31,42,55,0.08) 27px 28px),
    repeating-linear-gradient(90deg, transparent 0 27px, rgba(31,42,55,0.08) 27px 28px);
}
.map-area { position: relative; aspect-ratio: 4 / 3; min-height: 260px; }
.map-bounds { position: absolute; left: 8%; top: 7%; right: 8%; bottom: 7%; border: 1.5px dashed var(--color-accent-600); }
.map-label { position: absolute; left: 14px; top: 12px; font-family: var(--font-heading); font-weight: 600; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-accent-700); }
.pin { position: absolute; transform: translate(-50%, -50%); display: flex; align-items: center; gap: 8px; text-decoration: none; min-height: 44px; padding: 0 6px; }
.pin i { width: 13px; height: 13px; flex: none; background: var(--ember); outline: 4px solid rgba(232,99,43,0.2); }
.pin span { font-family: var(--font-heading); font-weight: 600; font-size: 16px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink); background: rgba(255,255,255,0.86); padding: 2px 6px; }
.pin:hover span { color: var(--ember-d); }
.map-cross-h { position: absolute; left: 0; right: 0; top: 58%; height: 2px; background: rgba(31,42,55,0.25); }
.map-cross-v { position: absolute; top: 0; bottom: 0; left: 44%; width: 2px; background: rgba(31,42,55,0.25); }
.pin--static { flex-direction: column; gap: 6px; left: 44%; top: 58%; }
.pin--static i { width: 15px; height: 15px; outline-width: 5px; }
.pin--static span { font-size: 14px; }

.town-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.town-chip { display: inline-flex; flex-direction: column; justify-content: center; padding: 10px 16px; min-height: 48px; text-decoration: none; color: var(--ink); transition: background .16s ease; }
.town-chip:hover { background: var(--sand); color: var(--ink); }
.town-chip b { font-family: var(--font-heading); font-weight: 600; font-size: 18px; text-transform: uppercase; letter-spacing: 0.03em; white-space: nowrap; }
.town-chip small { font-size: 13px; color: var(--muted); font-variant-numeric: tabular-nums; }

/* Town cards (areas page) */
.town-card { display: flex; flex-direction: column; background: #fff; text-decoration: none; color: inherit; }
.town-card:hover { color: inherit; }
.town-card .duotone { display: block; aspect-ratio: 4 / 3; border-bottom: 1px solid var(--color-divider); }
.town-card .duotone img { width: 100%; height: 100%; object-fit: cover; }
.town-card-body { display: flex; flex-direction: column; gap: 6px; padding: clamp(18px, 2.5vw, 24px); }
.town-card-body .name { font-family: var(--font-heading); font-weight: 600; font-size: 26px; line-height: 1.05; text-transform: uppercase; color: var(--ink); }
.town-card-body .zips { font-size: 15px; color: var(--muted); font-variant-numeric: tabular-nums; }
.town-card-body .more { margin-top: 8px; font-family: var(--font-heading); font-weight: 600; font-size: 16px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ember-d); }

/* ── Blog ───────────────────────────────────────────────────────────── */
.post-card { display: flex; flex-direction: column; background: #fff; text-decoration: none; color: inherit; }
.post-card:hover { color: inherit; }
.post-card .duotone { display: block; aspect-ratio: 16 / 9; border-bottom: 1px solid var(--color-divider); }
.post-card .duotone img { width: 100%; height: 100%; object-fit: cover; }
.post-card-body { display: flex; flex-direction: column; gap: 9px; padding: clamp(18px, 2.5vw, 24px); flex: 1; }
.post-meta { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); }
.cat { font-family: var(--font-heading); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-accent-700); border: 1px solid var(--color-accent-400); padding: 2px 8px; }
.post-title { font-family: var(--font-heading); font-weight: 600; font-size: 23px; line-height: 1.12; text-transform: uppercase; color: var(--ink); }
.post-excerpt { font-size: 16px; color: var(--text-3); }
.post-date { margin-top: auto; font-size: 14px; color: var(--muted); }

.featured { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); background: #fff; text-decoration: none; color: inherit; transition: box-shadow .18s ease; }
.featured:hover { box-shadow: var(--shadow-md); color: inherit; }
.featured .duotone { display: block; aspect-ratio: 16 / 9; min-height: 220px; }
.featured .duotone img { width: 100%; height: 100%; object-fit: cover; }
.featured-body { display: flex; flex-direction: column; gap: 12px; padding: clamp(24px, 3.5vw, 44px); justify-content: center; }
.featured-title { font-family: var(--font-heading); font-weight: 600; font-size: clamp(28px, 4vw, 42px); line-height: 1.04; letter-spacing: -0.02em; text-transform: uppercase; color: var(--ink); }
.featured-excerpt { font-size: 17px; color: var(--text-2); max-width: 52ch; }

.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: clamp(22px, 3vw, 34px); }
.filter { min-height: 44px; padding: 0 16px; cursor: pointer; background: transparent; color: var(--ink); border: 1px solid var(--color-divider); font-family: var(--font-heading); font-weight: 600; font-size: 16px; text-transform: uppercase; letter-spacing: 0.05em; transition: background .16s ease; }
.filter:hover { background: var(--sand); }
.filter[aria-pressed="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.post-card[hidden] { display: none; }

.crumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.crumbs a { color: inherit; text-decoration: none; }
.crumbs a:hover { color: var(--ember-d); }
.crumbs .here { color: var(--ink); }

.byline { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.byline i { width: 44px; height: 44px; flex: none; border: 1px solid var(--color-divider); display: grid; place-items: center; background: #fff; }
.byline b { font-family: var(--font-heading); font-weight: 600; font-size: 18px; color: var(--ink); display: block; line-height: 1.3; }
.byline small { font-size: 15px; color: var(--muted); }

.post-hero { margin: clamp(24px, 4vw, 44px) auto 0; }
.prose { font-size: 19px; line-height: 1.65; padding-top: clamp(28px, 4vw, 52px); padding-bottom: clamp(40px, 6vw, 80px); }
.prose > p:first-child, .prose .intro { font-size: 22px; line-height: 1.5; color: var(--ink); }
.prose p { margin: 0 0 22px; }
.prose h2 { margin: 34px 0 10px; font-size: clamp(26px, 3.4vw, 34px); line-height: 1.08; text-transform: uppercase; letter-spacing: -0.015em; color: var(--ink); }
.prose h2:first-child { margin-top: 0; }
.prose h2 .n { color: var(--ember); font-variant-numeric: tabular-nums; }
.prose ul { margin: 0 0 22px; padding-left: 22px; }
.prose li { margin: 0 0 6px; }
.prose blockquote { margin: 34px 0; padding: 0 0 0 clamp(18px, 3vw, 28px); border-left: 3px solid var(--ember); }
.prose blockquote p { margin: 0; font-family: var(--font-heading); font-weight: 600; font-size: clamp(25px, 3.6vw, 34px); line-height: 1.15; letter-spacing: -0.015em; text-transform: uppercase; color: var(--ink); }
.prose strong { font-weight: 700; color: var(--ink); }
.post-cta { background: var(--sand); padding: clamp(22px, 3vw, 32px); display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; margin-top: 30px; }
.post-cta p { margin: 0; }
.post-cta .q { font-family: var(--font-heading); font-weight: 600; font-size: clamp(24px, 3.2vw, 30px); line-height: 1.1; text-transform: uppercase; color: var(--ink); }
.post-cta .s { margin-top: 6px; font-size: 17px; color: var(--text-3); }

/* ── Steps (service page) ───────────────────────────────────────────── */
.steps { display: grid; gap: 0; }
.step { display: grid; grid-template-columns: auto 1fr; gap: clamp(16px, 3vw, 32px); padding-bottom: clamp(22px, 3vw, 34px); }
.step-rail { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.step-rail .num { width: 52px; height: 52px; font-size: 26px; }
.step-rail i { flex: 1; width: 1px; background: var(--color-divider); min-height: 20px; }
.step:last-child .step-rail i { display: none; }
.step-body { padding-top: 6px; }
.step-body h3 { margin: 0 0 6px; font-size: clamp(23px, 3vw, 29px); text-transform: uppercase; letter-spacing: -0.01em; color: var(--ink); }
.step-body p { margin: 0; color: var(--text-2); max-width: 62ch; font-size: clamp(17px, 2vw, 18px); }

.warnings { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.warning { display: flex; gap: 12px; align-items: flex-start; background: #fff; padding: 16px 18px; border: 1px solid var(--color-accent-400); font-size: 16px; color: var(--body); }
.warning svg { flex: none; margin-top: 3px; }

/* ── FAQ ────────────────────────────────────────────────────────────── */
.faq-list { display: grid; gap: 10px; }
.faq { background: #fff; padding: 0; }
.faq summary { display: flex; align-items: center; gap: 14px; justify-content: space-between; min-height: 60px; padding: 12px 20px; cursor: pointer; list-style: none; font-family: var(--font-heading); font-weight: 600; font-size: 20px; text-transform: uppercase; letter-spacing: 0.01em; color: var(--ink); }
.faq summary:hover { color: var(--ember-d); }
.faq summary i { width: 22px; height: 22px; flex: none; display: grid; place-items: center; color: var(--ember); transition: transform .18s ease; }
.faq[open] summary i { transform: rotate(180deg); }
.faq p { margin: 0; padding: 0 20px 20px; color: var(--text-2); max-width: 62ch; }

.rules { display: grid; gap: 14px; }
.rule { background: #fff; padding: 18px 20px; }
.rule h3 { margin: 0 0 4px; font-size: 21px; text-transform: uppercase; color: var(--ink); }
.rule p { margin: 0; color: var(--text-3); font-size: 16px; }

/* ── CTA band ───────────────────────────────────────────────────────── */
.cta-band .wrap { display: grid; gap: clamp(22px, 4vw, 48px); grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); align-items: center; padding-top: clamp(48px, 7vw, 104px); padding-bottom: clamp(48px, 7vw, 104px); }

/* ── Footer ─────────────────────────────────────────────────────────── */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.72); font-size: 16px; }
.footer-grid { padding-top: clamp(44px, 7vw, 80px); padding-bottom: 28px; display: grid; gap: clamp(28px, 4vw, 48px); grid-template-columns: repeat(auto-fit, minmax(165px, 1fr)); }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h6 { margin: 0 0 4px; color: #fff; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-col a { color: inherit; text-decoration: none; }
.footer-col a:hover { color: var(--ember); }
.footer-brand { display: flex; flex-direction: column; font-family: var(--font-heading); font-weight: 600; text-transform: uppercase; line-height: 1; letter-spacing: 0.03em; color: #fff; }
.footer-brand small { font-size: 11px; color: rgba(255,255,255,0.55); letter-spacing: 0.18em; }
.footer-brand span { font-size: 22px; }
.footer-about p { margin: 0; max-width: 30ch; line-height: 1.55; }
.footer-about { gap: 14px; }
.footer-phone { color: #fff !important; font-family: var(--font-heading); font-weight: 600; font-size: 22px; }
.footer-phone:hover { color: var(--ember) !important; }
.footer-dim { color: rgba(255,255,255,0.5); }
.footer-legal { border-top: 1px solid rgba(255,255,255,0.14); }
.footer-legal .wrap { padding-top: 18px; padding-bottom: 26px; display: flex; flex-wrap: wrap; gap: 8px 22px; align-items: center; font-size: 14px; color: rgba(255,255,255,0.5); }
.footer-legal span { margin-right: auto; }
.footer-legal a { color: inherit; text-decoration: none; }
.footer-legal a:hover { color: var(--ember); }
.footer-legal a.footer-agent { font-size: 12px; color: rgba(255,255,255,0.36); }
.footer-legal a.footer-agent:hover { color: var(--ember); }

/* ── Forms ──────────────────────────────────────────────────────────── */
.field > label { display: block; font-size: 13px; margin-bottom: 5px; color: color-mix(in srgb, var(--color-text) 70%, transparent); }
.input {
  width: 100%; min-height: 52px; padding: 6px 12px; font: inherit; font-size: 17px; color: var(--color-text);
  caret-color: var(--ember); background: #fff; border: 1px solid var(--color-divider); border-radius: 0;
}
.input:hover { border-color: color-mix(in srgb, var(--color-text) 45%, transparent); }
.input:focus-visible { border-color: var(--ember); outline-offset: 0; }
textarea.input { min-height: 130px; resize: vertical; padding-top: 12px; }
select.input { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 8l5 5 5-5' stroke='%23E8632B' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; padding-right: 40px; }
.form { display: flex; flex-direction: column; gap: 16px; }
.form-2 { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.checkbox { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--text-2); cursor: pointer; }
.checkbox input { width: 20px; height: 20px; margin: 3px 0 0; flex: none; accent-color: var(--ember); }
.form-note { margin: 0; font-size: 15px; color: var(--muted); }
.form-error { margin: 0; font-size: 15px; color: #b3261e; }
.hint { font-size: 14px; color: var(--muted); margin: 6px 0 0; min-height: 1.4em; }
.hint.ok { color: var(--green); }
.hint.warn { color: var(--ember-d); }

.contact-card { padding: clamp(20px, 3vw, 28px); display: flex; flex-direction: column; gap: 8px; background: #fff; }
.contact-card h3 { margin: 0; font-size: 23px; text-transform: uppercase; color: var(--ink); }
.contact-card p { margin: 0; color: var(--text-3); }
.contact-card .big-phone { font-family: var(--font-heading); font-weight: 600; font-size: clamp(28px, 4vw, 36px); text-decoration: none; color: var(--ember-d); line-height: 1.1; }
.contact-card .addr { font-size: 18px; color: var(--ink); }

/* ── Booking flow ───────────────────────────────────────────────────── */
.book-page { min-height: calc(100vh - 72px); display: flex; flex-direction: column; background: var(--sand); }
.book-progress { background: #fff; border-bottom: 1px solid var(--color-divider); }
.book-progress .wrap { padding-top: 18px; padding-bottom: 18px; }
.progress { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; list-style: none; margin: 0; padding: 0; }
.progress li { display: flex; flex-direction: column; gap: 8px; }
.progress i { height: 4px; background: var(--color-neutral-300); display: block; }
.progress span { display: flex; align-items: center; gap: 7px; font-family: var(--font-heading); font-weight: 600; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.progress span b { font-variant-numeric: tabular-nums; font-weight: 600; }
.progress li.done i, .progress li.current i { background: var(--ember); }
.progress li.done span, .progress li.current span { color: var(--ink); }
@media (max-width: 480px) { .progress span em { display: none; } }
.progress span em { font-style: normal; }

.book-main { flex: 1; width: 100%; padding-top: clamp(28px, 5vw, 56px); padding-bottom: clamp(40px, 6vw, 80px); }
.book-step[hidden] { display: none; }
.book-step { animation: stepIn .35s ease both; }
@keyframes stepIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.book-h1 { font-size: clamp(34px, 6vw, 54px); line-height: 1.02; letter-spacing: -0.025em; text-transform: uppercase; color: var(--ink); margin: 0 0 10px; }
.book-lede { margin: 0 0 clamp(26px, 4vw, 40px); font-size: clamp(17px, 2vw, 19px); color: var(--text-2); max-width: 52ch; }
fieldset.q { border: 0; margin: 0 0 clamp(26px, 4vw, 38px); padding: 0; min-width: 0; }
fieldset.q legend { font-family: var(--font-heading); font-weight: 600; font-size: clamp(22px, 3vw, 28px); text-transform: uppercase; color: var(--ink); padding: 0; margin-bottom: 14px; }
.opts { display: grid; gap: 10px; }
.opt {
  display: flex; align-items: center; gap: 14px; width: 100%; min-height: 72px; padding: 14px 18px; text-align: left; cursor: pointer;
  background: #fff; font: inherit; transition: background .16s ease;
}
.opt:hover { background: var(--sand); }
.opt .dot { width: 26px; height: 26px; flex: none; border: 1.5px solid var(--color-divider); background: transparent; display: block; }
.opt .opt-text { display: flex; flex-direction: column; line-height: 1.3; }
.opt .opt-text b { font-family: var(--font-heading); font-weight: 600; font-size: 21px; text-transform: uppercase; letter-spacing: 0.02em; color: var(--ink); }
.opt .opt-text small { font-size: 15px; color: var(--muted); }
.opt[aria-checked="true"] { background: rgba(232,99,43,0.07); border-color: var(--ember); }
.opt[aria-checked="true"] .dot { border-color: var(--ember); background: var(--ember); }
.book-cta { min-height: 60px; font-size: 22px; }
.book-fine { margin: 12px 0 0; text-align: center; font-size: 15px; color: var(--muted); }
.book-back { display: block; margin: 14px auto 0; }

.price-plate { background: #fff; padding: clamp(26px, 4vw, 44px); text-align: center; }
.tier-pill { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-weight: 600; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green); border: 1px solid var(--green); padding: 5px 11px; }
.price-big { display: flex; align-items: baseline; justify-content: center; gap: 10px; margin: 16px 0 0; }
.price-big b { font-family: var(--font-heading); font-weight: 600; font-size: clamp(76px, 16vw, 132px); line-height: 0.86; letter-spacing: -0.04em; font-variant-numeric: tabular-nums; color: var(--ember); }
.price-big span { font-family: var(--font-heading); font-weight: 600; font-size: 20px; text-transform: uppercase; color: var(--muted); }
.price-note { margin: 18px auto 0; max-width: 44ch; font-size: clamp(17px, 2vw, 19px); color: var(--text-2); }
.price-plate .check-list { margin: 22px auto 0; padding-top: 20px; border-top: 1px solid var(--color-divider); text-align: left; max-width: 460px; gap: 10px; }
.info-box { margin-top: 14px; padding: 16px 20px; background: var(--color-accent-100); border-color: var(--color-accent-400); display: flex; gap: 12px; align-items: flex-start; }
.info-box svg { flex: none; margin-top: 2px; }
.info-box p { margin: 0; font-size: 16px; color: var(--color-accent-900); }

.empty-cal { background: #fff; padding: clamp(24px, 4vw, 38px); }
.empty-cal h2 { margin: 0 0 8px; font-size: clamp(24px, 3.4vw, 32px); text-transform: uppercase; color: var(--ink); }
.empty-cal > p { margin: 0 0 18px; color: var(--text-2); max-width: 56ch; }
.slots { display: grid; gap: 10px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.slot { display: flex; flex-direction: column; gap: 2px; min-height: 76px; padding: 14px 18px; text-align: left; cursor: pointer; background: #fff; font: inherit; transition: background .16s ease; }
.slot:hover { background: var(--sand); }
.slot b { font-family: var(--font-heading); font-weight: 600; font-size: 20px; text-transform: uppercase; letter-spacing: 0.02em; color: var(--ink); }
.slot span { font-size: 16px; color: var(--muted); font-variant-numeric: tabular-nums; }
.slot small { font-size: 14px; color: var(--color-accent-700); }
.slot[aria-checked="true"] { background: rgba(232,99,43,0.07); border-color: var(--ember); }

.done-card { background: #fff; padding: clamp(26px, 4vw, 44px); }
.done-mark { display: inline-grid; place-items: center; width: 56px; height: 56px; background: var(--green); }
.done-card h1 { margin: 18px 0 8px; font-size: clamp(32px, 5.4vw, 50px); line-height: 1.02; letter-spacing: -0.025em; text-transform: uppercase; color: var(--ink); }
.done-card > p { margin: 0 0 24px; font-size: clamp(17px, 2vw, 19px); color: var(--text-2); max-width: 52ch; }
.done-card .actions--confirm {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 10px;
}
.done-card .actions--confirm .btn {
  flex: 1 1 0;
  min-width: 0;
  padding-left: 16px;
  padding-right: 16px;
}
@media (max-width: 420px) {
  .done-card .actions--confirm { flex-wrap: wrap; }
}
.summary { margin: 0; display: grid; border-top: 1px solid var(--color-divider); }
.summary div { display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--color-divider); }
.summary dt { font-family: var(--font-heading); font-weight: 600; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.summary dd { margin: 0; font-family: var(--font-heading); font-weight: 600; font-size: 20px; color: var(--ink); font-variant-numeric: tabular-nums; text-align: right; }
.book-foot { background: #fff; border-top: 1px solid var(--color-divider); }
.book-foot .wrap { padding-top: 18px; padding-bottom: 18px; display: flex; flex-wrap: wrap; gap: 8px 20px; align-items: center; font-size: 15px; color: var(--muted); }
.book-foot span { margin-right: auto; }
.book-foot a { color: inherit; text-decoration: none; }
.book-foot a:hover { color: var(--ember-d); }

/* ── Misc ───────────────────────────────────────────────────────────── */
.office-card { display: flex; flex-direction: column; gap: 10px; }
.office-card h3 { margin: 0; font-size: 25px; text-transform: uppercase; color: var(--ink); }
.office-card .addr { font-size: 18px; color: var(--ink); }
.office-card .big-phone { font-family: var(--font-heading); font-weight: 600; font-size: 24px; text-decoration: none; color: var(--ember-d); }
.office-card .btn { margin-top: auto; }

.legal-prose { padding-top: clamp(36px, 5vw, 60px); padding-bottom: clamp(48px, 7vw, 96px); font-size: 17px; line-height: 1.65; color: var(--text-2); }
.legal-prose h2 { margin: 30px 0 8px; font-size: clamp(22px, 3vw, 28px); text-transform: uppercase; color: var(--ink); }
.legal-prose p { margin: 0 0 14px; }
.legal-prose ul, .legal-prose ol { margin: 0 0 14px; padding-left: 1.25em; }
.legal-prose li { margin: 0 0 6px; }
.legal-prose table { width: 100%; border-collapse: collapse; font-size: 15px; margin: 0 0 14px; }
.legal-prose th, .legal-prose td { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--color-divider); vertical-align: top; }
.legal-prose th { font-family: var(--font-heading); font-weight: 600; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.legal-prose code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 0.88em; background: var(--sand); padding: 0.12em 0.38em; color: var(--ink); }
.legal-prose pre { overflow-x: auto; background: var(--sand); border: 1px solid var(--color-divider); color: var(--ink); padding: 16px 18px; margin: 0 0 16px; font-size: 13px; line-height: 1.55; }
.legal-prose pre code { background: none; padding: 0; font-size: inherit; }
.table-scroll { overflow-x: auto; }

.nf { min-height: 60vh; display: grid; place-items: center; text-align: center; }
.nf b { font-family: var(--font-heading); font-weight: 600; font-size: clamp(80px, 18vw, 160px); line-height: 0.9; letter-spacing: -0.04em; color: var(--ember); display: block; }
