/* ============================================================
   OZARK CLOSERS — Finish & Closeout Specialists
   Field-uniform brand: deep navy, cream paper, brick-red accent.
   ============================================================ */

:root {
  /* Brand */
  --navy-900: #07182f;
  --navy-800: #0b2545;
  --navy-700: #133a6b;
  --navy-600: #1c5298;
  --navy-100: #d6e1f1;

  --brick-700: #8a1d18;
  --brick-600: #b3261e;
  --brick-500: #c9382f;

  --cream-50:  #faf7ef;
  --cream-100: #f4f1ea;
  --cream-200: #e9e4d6;
  --cream-300: #d9d2bd;

  --ink-900: #0e1620;
  --ink-700: #2a3340;
  --ink-500: #5a6573;
  --ink-400: #7a8493;
  --ink-300: #a4abb6;

  /* Roles (light) */
  --bg:           var(--cream-100);
  --bg-tint:      var(--cream-50);
  --surface:      #ffffff;
  --surface-alt:  var(--cream-50);
  --border:       #e2dccb;
  --border-strong:#cdc6b1;
  --text:         var(--ink-900);
  --text-muted:   var(--ink-500);
  --text-faint:   var(--ink-400);
  --primary:      var(--navy-800);
  --primary-hover:var(--navy-700);
  --accent:       var(--brick-600);
  --accent-hover: var(--brick-700);
  --on-primary:   var(--cream-50);

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(7, 24, 47, .06), 0 1px 1px rgba(7, 24, 47, .04);
  --shadow-md: 0 8px 24px -10px rgba(7, 24, 47, .18), 0 2px 6px rgba(7, 24, 47, .06);
  --shadow-lg: 0 24px 48px -20px rgba(7, 24, 47, .25);

  --font-display: 'Clash Display', 'Satoshi', system-ui, -apple-system, sans-serif;
  --font-body:    'Satoshi', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --wrap: 1180px;
  --pad-x: clamp(20px, 4vw, 40px);

  --ease: cubic-bezier(.2, .8, .2, 1);
}

html[data-theme="dark"] {
  --bg:           #0a1322;
  --bg-tint:      #0d1828;
  --surface:      #111f35;
  --surface-alt:  #14263f;
  --border:       #1f3457;
  --border-strong:#2a456f;
  --text:         #eef1f6;
  --text-muted:   #a6b2c4;
  --text-faint:   #7a8aa3;
  --primary:      #6ea4ff;
  --primary-hover:#a3c2ff;
  --accent:       #ff7a6e;
  --accent-hover: #ff9b91;
  --on-primary:   #07182f;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
  --shadow-md: 0 8px 24px -10px rgba(0,0,0,.5), 0 2px 6px rgba(0,0,0,.3);
  --shadow-lg: 0 24px 48px -20px rgba(0,0,0,.65);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  overflow-x: clip;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-hover); }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; border-radius: 4px; }

.skip {
  position: absolute; left: 0; top: 0;
  transform: translateY(-120%);
  background: var(--primary); color: var(--on-primary);
  transition: transform .18s var(--ease);
  padding: 10px 14px; border-radius: 0 0 8px 0; z-index: 100;
}
.skip:focus { transform: translateY(0); }

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.section {
  padding: clamp(64px, 9vw, 120px) 0;
  scroll-margin-top: 116px;
}
.section-tint { background: var(--bg-tint); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  color: var(--text);
}
p { margin: 0 0 1em; }
.display {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.028em;
  word-spacing: .04em;
  margin-bottom: .35em;
  text-wrap: balance;
  overflow-wrap: break-word;
}
.h2 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.018em;
  word-spacing: .08em;
}
.h2 + p, .section-lede { color: var(--text-muted); max-width: 62ch; }

.kicker {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}
.eyebrow {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0 0 22px;
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 20%, transparent);
}
.muted { color: var(--text-muted); }

.section-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }

/* ---------- Header ---------- */
.utility-bar {
  position: relative;
  z-index: 60;
  background: var(--navy-900);
  color: rgba(250, 247, 239, .78);
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.utility-bar a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.35);
  text-underline-offset: 4px;
  word-spacing: .08em;
}
.utility-bar a:hover { color: #ffb1aa; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: 72px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--primary);
  text-decoration: none;
}
.brand--real {
  background: #fff;
  border: 1px solid color-mix(in oklab, var(--border) 70%, transparent);
  border-radius: 10px;
  padding: 4px 8px;
  box-shadow: var(--shadow-sm);
}
.brand-logo {
  width: clamp(120px, 12vw, 152px);
  height: 54px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
html[data-theme="dark"] .brand--real {
  background: #f8f6ef;
}
.brand-mark { width: 38px; height: 38px; flex: none; border-radius: 8px; }
.brand-words { display: inline-flex; flex-direction: column; line-height: 1; }
.brand-top {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
}
.brand-bot {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-top: 2px;
}

.primary-nav { display: none; gap: 22px; align-items: center; flex-wrap: nowrap; }
.primary-nav a { white-space: nowrap; }
@media (min-width: 920px) and (max-width: 1119px) {
  .primary-nav { gap: 16px; }
  .primary-nav a { font-size: 14px; }
}
.primary-nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  position: relative;
}
.primary-nav a:hover { color: var(--primary); }
.primary-nav a.nav-client {
  color: var(--primary);
  font-weight: 800;
}
.primary-nav a.nav-team {
  font-weight: 800;
  color: var(--text);
  padding: 6px 12px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .02em;
  text-transform: uppercase;
  white-space: nowrap;
}
.primary-nav a.nav-team:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: color-mix(in oklab, var(--primary) 8%, transparent);
}
.primary-nav a.nav-team::after { display: none; }
.primary-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -22px; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.primary-nav a:hover::after { transform: scaleX(1); }

.header-cta { display: inline-flex; align-items: center; gap: 10px; }
.header-phone {
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .01em;
}
.header-phone:hover { color: var(--primary); }
.theme-toggle {
  background: transparent; border: 1px solid var(--border-strong);
  color: var(--text); width: 38px; height: 38px;
  border-radius: 8px; display: inline-grid; place-items: center;
  transition: background .2s, color .2s, border-color .2s;
}
.theme-toggle:hover { background: var(--surface-alt); color: var(--primary); border-color: var(--primary); }
.mobile-menu-toggle {
  display: none;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .01em;
  cursor: pointer;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle[aria-expanded="true"] {
  color: var(--primary);
  border-color: color-mix(in oklab, var(--primary) 42%, var(--border));
  background: color-mix(in oklab, var(--surface) 86%, var(--primary) 14%);
}

@media (min-width: 920px) {
  .primary-nav { display: inline-flex; }
}

.mobile-nav {
  display: none;
}
@media (max-width: 919px) {
  .mobile-menu-toggle {
    display: inline-flex;
  }
  .mobile-nav:not([hidden]) {
    position: fixed;
    top: 106px;
    right: var(--pad-x);
    z-index: 90;
    display: grid;
    gap: 6px;
    width: min(250px, calc(100vw - (var(--pad-x) * 2)));
    max-width: 100%;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: color-mix(in oklab, var(--bg) 97%, transparent);
    box-shadow: 0 18px 45px rgba(7, 24, 47, .18);
    backdrop-filter: saturate(140%) blur(12px);
    -webkit-backdrop-filter: saturate(140%) blur(12px);
  }
  .mobile-nav:not([hidden]) a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--text);
    font-size: 14px;
    font-weight: 800;
  }
  .mobile-nav:not([hidden]) a:hover,
  .mobile-nav:not([hidden]) a:focus-visible {
    background: var(--surface);
    color: var(--primary);
  }
  .mobile-nav:not([hidden]) a.mobile-nav-cta {
    margin-top: 4px;
    background: var(--primary);
    color: var(--on-primary);
    justify-content: center;
  }
  .mobile-nav:not([hidden]) a.mobile-nav-cta:hover,
  .mobile-nav:not([hidden]) a.mobile-nav-cta:focus-visible {
    background: var(--primary-hover);
    color: var(--on-primary);
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 14px 22px; font-size: 16px; }
.btn-primary {
  background: var(--primary); color: var(--on-primary);
  border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-hover); color: var(--on-primary); border-color: var(--primary-hover); }
.btn-ghost {
  background: transparent; color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--surface-alt); color: var(--primary); border-color: var(--primary); }
.btn-secondary {
  background: color-mix(in oklab, var(--surface) 94%, transparent);
  color: var(--primary);
  border-color: color-mix(in oklab, var(--surface) 72%, transparent);
}
.btn-secondary:hover {
  background: var(--surface);
  color: var(--primary-hover);
  border-color: var(--surface);
}

/* ---------- HERO ---------- */
.hero {
  padding: clamp(56px, 7vw, 100px) 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -10% -10% auto auto;
  width: 600px; height: 600px;
  background: radial-gradient(closest-side, color-mix(in oklab, var(--accent) 14%, transparent), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 56px);
  align-items: end;
  position: relative;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.35fr .9fr; }
}
.hero-copy { max-width: 720px; }
.hero-tagline {
  font-family: var(--font-display, var(--font-body));
  font-weight: 700;
  font-size: clamp(15px, 1.45vw, 19px);
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--accent);
  margin: 0 0 18px;
  line-height: 1.25;
}
.lede {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--text-muted);
  max-width: 56ch;
  margin: 0 0 18px;
}
.lede.lede-emph {
  color: var(--text);
  font-weight: 600;
}
.anchor-offset {
  display: block;
  position: relative;
  top: -80px;
  visibility: hidden;
}
.hero-sub {
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--text-muted);
  max-width: 56ch;
  margin: 0 0 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero-marks {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 24px;
  border-top: 1px solid var(--border);
  padding-top: 22px;
}
.hero-marks li { color: var(--text-muted); font-size: 14px; }
.hero-marks strong { color: var(--text); font-weight: 700; }

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid color-mix(in oklab, var(--primary) 20%, var(--border));
  border-radius: 999px;
  padding: 7px 12px;
  background: color-mix(in oklab, var(--surface) 82%, transparent);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  box-shadow: var(--shadow-sm);
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.hero-lockup {
  width: min(100%, 260px);
  margin: 0 auto 22px;
  border-radius: 10px;
  background: #fff;
  padding: 8px;
  max-height: 150px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
html[data-theme="dark"] .hero-lockup {
  mix-blend-mode: normal;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0; height: 6px;
  background: var(--navy-800);
}
.card-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
  margin-bottom: 18px;
  padding-top: 6px;
}
.card-tag {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 700; color: var(--text-muted);
  line-height: 1.45;
  min-width: 0;
  max-width: 18ch;
}
.card-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--text-muted);
  flex: 0 0 auto;
  line-height: 1.25;
  white-space: nowrap;
  justify-self: end;
}
.card-status .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2fa15e;
  box-shadow: 0 0 0 3px color-mix(in oklab, #2fa15e 25%, transparent);
}
.card-list { margin: 0; padding: 0; display: grid; gap: 12px; }
.card-list > div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline; gap: 12px;
  padding: 12px 0;
  border-top: 1px dashed var(--border);
}
.card-list > div:first-child { border-top: 0; padding-top: 0; }
.card-list dt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.card-list dd {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  text-align: right;
}
.hero-job-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-alt);
  padding: 20px;
}
.hero-job-kicker {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-job-card h2 {
  font-size: 26px;
  margin-bottom: 12px;
  color: var(--text);
}
.hero-job-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.hero-job-card li {
  position: relative;
  padding-left: 18px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.45;
}
.hero-job-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 2px;
  background: var(--accent);
}
.scope-widget {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-alt);
  padding: 20px;
}
.scope-kicker {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.scope-widget h2 {
  font-size: 27px;
  line-height: 1.08;
  letter-spacing: -0.018em;
  word-spacing: .08em;
  margin-bottom: 16px;
  color: var(--text);
}
.scope-fields {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}
.scope-fields div {
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
}
html[data-theme="dark"] .scope-fields div {
  background: color-mix(in oklab, var(--surface) 84%, #fff 16%);
}
.scope-fields span {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.scope-fields strong {
  color: var(--text);
  font-size: 14px;
  line-height: 1.25;
}
.scope-button {
  width: 100%;
  min-height: 48px;
}
.scope-note {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.45;
  word-spacing: .03em;
}
.card-foot {
  margin: 22px 0 0; padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 13px; color: var(--text-muted);
}

/* ---------- Brand proof ---------- */
.brand-proof {
  background:
    linear-gradient(135deg, rgba(7, 24, 47, .94), rgba(7, 24, 47, .82)),
    url("./assets/ozark-cabin-hero.jpg") center / cover no-repeat;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.brand-proof-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(26px, 5vw, 54px);
  align-items: end;
}
@media (min-width: 920px) {
  .brand-proof-panel { grid-template-columns: 1.15fr .85fr; }
}
.brand-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: var(--navy-900);
}
.brand-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.brand-proof-copy {
  max-width: 640px;
}
.brand-proof-copy .kicker { color: #ffb1aa; }
.brand-proof-copy .h2 { color: #fff; }
.brand-proof-copy .section-lede { color: rgba(250, 247, 239, .78); }
.deadline-card {
  background: rgba(250, 247, 239, .96);
  color: var(--ink-900);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 28px);
  box-shadow: var(--shadow-lg);
}
.deadline-label {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
}
.deadline-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.deadline-card li {
  display: grid;
  grid-template-columns: minmax(96px, .65fr) 1fr;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--cream-300);
}
.deadline-card li:first-child {
  padding-top: 0;
  border-top: 0;
}
.deadline-card strong {
  font-family: var(--font-display);
  color: var(--navy-800);
  line-height: 1.15;
}
.deadline-card span {
  color: var(--ink-500);
  font-size: 14px;
  line-height: 1.35;
}

/* ---------- More than a handyman ---------- */
.more-than-handyman {
  background: var(--bg);
}
.mth-head {
  max-width: 880px;
}
.mth-head .h2 {
  max-width: 820px;
}
.mth-lede-2 {
  margin-top: 0;
}
/* ---------- Closeout preview (3-step block) ---------- */
.closeout-preview {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 2.4vw, 22px);
}
@media (min-width: 720px) {
  .closeout-preview { grid-template-columns: repeat(3, 1fr); }
}
.closeout-entry {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.4vw, 26px);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.closeout-entry::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: .35;
}
.closeout-entry .closeout-step {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.closeout-entry h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.15;
  margin: 0;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}
.closeout-entry p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-700);
}
.closeout-entry--report {
  background: linear-gradient(180deg,
    color-mix(in oklab, var(--primary) 6%, var(--surface)),
    var(--surface) 85%);
  border-color: color-mix(in oklab, var(--primary) 18%, var(--border));
}
html[data-theme="dark"] .closeout-entry {
  background: color-mix(in oklab, var(--surface) 92%, #0d1828);
}
html[data-theme="dark"] .closeout-entry h3 { color: var(--text); }
html[data-theme="dark"] .closeout-entry p { color: rgba(250, 247, 239, .82); }

/* ---------- Real repair items ---------- */
.repair-items .section-head {
  max-width: 760px;
}
.repair-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(12px, 2vw, 18px);
}
@media (min-width: 600px) {
  .repair-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .repair-grid { grid-template-columns: repeat(4, 1fr); }
}
.repair-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.repair-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.2;
  margin: 0;
  color: var(--ink-900);
}
.repair-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-700);
}
.repair-foot {
  margin-top: clamp(16px, 2.4vw, 24px);
  font-size: 14px;
  color: var(--ink-700);
  max-width: 720px;
}
html[data-theme="dark"] .repair-card {
  background: #0d1828;
  border-color: rgba(250, 247, 239, .12);
}
html[data-theme="dark"] .repair-card h3 {
  color: rgba(250, 247, 239, .96);
}
html[data-theme="dark"] .repair-card p,
html[data-theme="dark"] .repair-foot {
  color: rgba(250, 247, 239, .82);
}

/* ---------- Actual review problems ---------- */
.review-problems .section-head {
  max-width: 760px;
}
.review-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(12px, 2vw, 18px);
}
@media (min-width: 600px) {
  .review-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .review-grid { grid-template-columns: repeat(3, 1fr); }
}
.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy-800);
  border-radius: var(--radius-lg);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.review-card--str { border-left-color: #b91c1c; }
.review-card--hotel { border-left-color: #b45309; }
.review-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--navy-800) 8%, var(--bg));
  color: var(--ink-900);
  border: 1px solid var(--border);
}
.review-card--str .review-tag {
  background: rgba(185, 28, 28, .08);
  border-color: rgba(185, 28, 28, .2);
  color: #7f1d1d;
}
.review-card--hotel .review-tag {
  background: rgba(180, 83, 9, .08);
  border-color: rgba(180, 83, 9, .2);
  color: #78350f;
}
.review-quote {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 1.35;
  font-weight: 600;
  color: var(--ink-900);
  margin: 2px 0 4px;
  padding: 0;
  border: 0;
}
.review-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-700);
}
.review-card p strong { color: var(--ink-900); font-weight: 700; }
.review-source {
  margin-top: clamp(14px, 2vw, 20px);
  font-size: 12.5px;
  color: var(--ink-700);
  font-style: italic;
}
.review-cta {
  margin-top: clamp(18px, 2.4vw, 26px);
  padding: clamp(16px, 2.4vw, 22px);
  border-radius: var(--radius-lg);
  background: color-mix(in oklab, var(--navy-800) 4%, var(--bg));
  border: 1px solid var(--border);
}
.review-cta-copy {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-900);
  max-width: 760px;
}
.review-cta-copy strong { color: var(--ink-900); font-weight: 700; }
.review-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
html[data-theme="dark"] .review-card {
  background: #0d1828;
  border-color: rgba(250, 247, 239, .12);
}
html[data-theme="dark"] .review-quote {
  color: rgba(250, 247, 239, .96);
}
html[data-theme="dark"] .review-card p,
html[data-theme="dark"] .review-source {
  color: rgba(250, 247, 239, .82);
}
html[data-theme="dark"] .review-tag {
  background: rgba(250, 247, 239, .08);
  border-color: rgba(250, 247, 239, .14);
  color: rgba(250, 247, 239, .92);
}
html[data-theme="dark"] .review-cta {
  background: rgba(250, 247, 239, .04);
  border-color: rgba(250, 247, 239, .12);
}
html[data-theme="dark"] .review-cta-copy {
  color: rgba(250, 247, 239, .92);
}
@media (max-width: 560px) {
  .review-card { padding: 14px 14px 12px; }
  .review-quote { font-size: 15px; }
  .review-card p { font-size: 13px; }
}

/* Review pattern — compact bullet grid above the example cards */
.review-pattern {
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(12px, 1.6vw, 18px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 600px) {
  .review-pattern { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .review-pattern { grid-template-columns: repeat(4, 1fr); }
}
.review-pattern li {
  background: color-mix(in oklab, var(--navy-800) 4%, var(--bg));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-pattern li strong {
  font-size: 13.5px;
  color: var(--ink-900);
  font-weight: 700;
}
.review-pattern li span {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--ink-700);
}
.review-pattern-foot {
  margin: 0 0 clamp(14px, 2vw, 20px);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-700);
  max-width: 760px;
}
html[data-theme="dark"] .review-pattern li {
  background: rgba(250, 247, 239, .04);
  border-color: rgba(250, 247, 239, .12);
}
html[data-theme="dark"] .review-pattern li strong {
  color: rgba(250, 247, 239, .96);
}
html[data-theme="dark"] .review-pattern li span,
html[data-theme="dark"] .review-pattern-foot {
  color: rgba(250, 247, 239, .82);
}

/* ---------- Fast quote path ---------- */
.quick-start {
  padding: 28px 0;
  background: var(--navy-800);
  color: var(--cream-50);
  border-top: 1px solid color-mix(in oklab, var(--cream-50) 12%, transparent);
  border-bottom: 1px solid color-mix(in oklab, var(--cream-50) 12%, transparent);
}
html[data-theme="dark"] .quick-start { background: #081326; }
.quick-start-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
}
@media (min-width: 980px) {
  .quick-start-grid { grid-template-columns: .9fr 1.5fr auto; }
}
.quick-start .kicker {
  color: #ffb1aa;
  margin-bottom: 6px;
}
.quick-start h2 {
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
}
.quick-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 720px) {
  .quick-steps { grid-template-columns: repeat(3, 1fr); }
}
.quick-steps li {
  min-height: 100%;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
}
.quick-steps strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 4px;
}
.quick-steps span {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: 13.5px;
  line-height: 1.45;
}
.quick-start .btn-primary {
  background: var(--cream-50);
  color: var(--navy-900);
  border-color: var(--cream-50);
  white-space: nowrap;
}
.quick-start .btn-primary:hover {
  background: #fff;
  color: var(--navy-900);
}

/* ---------- Who grid ---------- */
.who-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) { .who-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .who-grid { grid-template-columns: repeat(3, 1fr); } }
.who-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.who-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.who-card h3 {
  font-size: 20px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--primary);
}
html[data-theme="dark"] .who-card h3 { color: var(--text); }
.who-card p { color: var(--text-muted); margin: 0 0 10px; font-size: 15px; line-height: 1.55; }
.who-card p:last-child { margin-bottom: 0; }
.who-card p strong { color: var(--text); font-weight: 700; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 720px)  { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
.svc {
  background: var(--surface);
  padding: 28px 24px 30px;
  display: flex; flex-direction: column;
  gap: 10px;
  position: relative;
  min-height: 220px;
}
.svc-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.12em;
}
.svc h3 {
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.svc p { color: var(--text-muted); margin: 0; font-size: 14.5px; }

/* ---------- Research-backed lane ---------- */
.research-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 760px) {
  .research-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .research-grid { grid-template-columns: repeat(4, 1fr); }
}
.research-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 250px;
  box-shadow: var(--shadow-sm);
}
.research-num {
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .16em;
  font-size: 13px;
  margin-bottom: 20px;
}
.research-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--primary);
}
html[data-theme="dark"] .research-card h3 { color: var(--text); }
.research-card p:last-child {
  color: var(--text-muted);
  font-size: 14.5px;
  margin-bottom: 0;
}

/* ---------- Walkthrough ---------- */
.walkthrough-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}
@media (min-width: 980px) {
  .walkthrough-grid { grid-template-columns: 1.15fr .85fr; }
}
.walkthrough-copy h2 { margin-bottom: 18px; }
.walkthrough-copy p { color: var(--text-muted); max-width: 60ch; }
.walk-steps {
  list-style: none; padding: 0; margin: 24px 0 0;
  counter-reset: step;
  display: grid; gap: 14px;
}
.walk-steps li {
  position: relative;
  padding: 16px 18px 16px 60px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  counter-increment: step;
}
.walk-steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 18px; top: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.08em;
}
.walk-steps strong { color: var(--text); font-weight: 700; }

.callout {
  background: var(--primary);
  color: var(--on-primary);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.callout::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0; height: 6px;
  background: var(--accent);
}
.callout-tag {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 700; color: color-mix(in oklab, var(--on-primary) 70%, transparent);
  margin-bottom: 12px;
}
.callout-title {
  color: var(--on-primary);
  font-size: 26px;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.callout p {
  color: color-mix(in oklab, var(--on-primary) 88%, transparent);
  font-size: 15px;
  line-height: 1.55;
}
.callout-list {
  list-style: none; padding: 0; margin: 18px 0 0;
  display: grid; gap: 8px;
  border-top: 1px solid color-mix(in oklab, var(--on-primary) 18%, transparent);
  padding-top: 16px;
}
.callout-list li {
  font-size: 14px;
  display: flex; align-items: baseline; gap: 10px;
  color: color-mix(in oklab, var(--on-primary) 92%, transparent);
}
.callout-list li span { color: var(--accent); font-weight: 700; width: 14px; flex: none; }
.callout-list li.muted { color: color-mix(in oklab, var(--on-primary) 60%, transparent); }
.callout-list li.muted span { color: color-mix(in oklab, var(--on-primary) 50%, transparent); }

/* ---------- Sample report ---------- */
.sample-report-section {
  background:
    linear-gradient(180deg, color-mix(in oklab, var(--surface-alt) 72%, transparent), var(--bg));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sample-report-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (min-width: 980px) {
  .sample-report-grid { grid-template-columns: .95fr 1.05fr; }
}
.sample-report-copy > p {
  color: var(--text-muted);
  max-width: 58ch;
}
.sample-report-bullets {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
  display: grid;
  gap: 12px;
}
.sample-report-bullets li {
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.sample-report-bullets strong {
  color: var(--text);
}
.sample-report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.report-preview-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 30px);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.report-preview-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 7px;
  background: linear-gradient(90deg, var(--primary) 0 72%, var(--accent) 72%);
}
.preview-top {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.preview-top img {
  width: 112px;
  height: auto;
  background: #fff;
  border-radius: 6px;
}
.preview-label {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  color: var(--accent);
  text-transform: uppercase;
}
.preview-top h3 {
  font-family: var(--font-body);
  letter-spacing: -0.01em;
  font-size: clamp(24px, 3vw, 34px);
}
.preview-score {
  margin: 22px 0;
  padding: 20px;
  border: 1px solid color-mix(in oklab, var(--primary) 35%, var(--border));
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 6px 18px;
}
.preview-score span {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.preview-score strong {
  grid-row: span 2;
  font-family: var(--font-body);
  font-size: clamp(54px, 7vw, 84px);
  line-height: .85;
  color: var(--primary);
}
.preview-score em {
  color: var(--text);
  font-style: normal;
  font-weight: 800;
}
.preview-list {
  display: grid;
  gap: 10px;
}
.preview-list div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 12px 0;
  border-top: 1px dashed var(--border);
}
.preview-list span {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.preview-list strong {
  font-size: 15px;
  color: var(--text);
}
.preview-foot {
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 14px;
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 720px)  { .pricing-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.price-card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.price-tag {
  font-family: var(--font-display);
  font-weight: 700; font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 6px;
}
.price-range {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0;
}
.price-best {
  font-size: 14px; color: var(--text-muted); margin: 0;
}
.price-card ul {
  list-style: none; padding: 0; margin: auto 0 0;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  display: grid; gap: 8px;
  font-size: 14.5px; color: var(--text-muted);
}
.price-card li { position: relative; padding-left: 18px; }
.price-card li::before {
  content: ""; position: absolute; left: 0; top: .65em;
  width: 8px; height: 2px; background: var(--accent);
}

.price-terms {
  margin-top: clamp(32px, 5vw, 52px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
@media (min-width: 720px) { .price-terms { grid-template-columns: repeat(3, 1fr); } }
.price-terms .terms-label {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 700; color: var(--accent);
  margin: 0 0 8px;
}
.price-terms p { margin: 0 0 6px; font-size: 14.5px; color: var(--text-muted); }
.price-terms strong { color: var(--text); }

.priority-plan {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}
@media (min-width: 900px) {
  .priority-plan { grid-template-columns: .85fr 1.15fr; }
}
.priority-copy {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--surface-alt);
  border: 1px solid var(--border);
}
.priority-copy h3 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.04;
  letter-spacing: -0.018em;
  word-spacing: .08em;
  margin: 0 0 14px;
}
.priority-copy p:last-child {
  color: var(--text-muted);
  margin-bottom: 0;
}
.priority-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--primary);
  color: var(--on-primary);
  box-shadow: var(--shadow-md);
}
.priority-card .price-tag,
.priority-card .price-range { color: #fff; }
.priority-card .price-best {
  color: color-mix(in oklab, #fff 82%, transparent);
  max-width: 64ch;
}
.priority-card ul {
  columns: 1;
  list-style: none;
  padding: 16px 0 0;
  margin: 18px 0 0;
  border-top: 1px solid color-mix(in oklab, #fff 22%, transparent);
  color: color-mix(in oklab, #fff 88%, transparent);
}
@media (min-width: 720px) {
  .priority-card ul { columns: 2; column-gap: 28px; }
}
.priority-card li {
  break-inside: avoid;
  position: relative;
  padding-left: 18px;
  margin: 0 0 9px;
  font-size: 14.5px;
}
.priority-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 8px;
  height: 2px;
  background: var(--accent);
}

/* ---------- Process ---------- */
.process-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  counter-reset: pstep;
}
@media (min-width: 720px)  { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin: 0 0 8px;
}
.step h3 {
  font-size: 20px;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.step p { margin: 0; color: var(--text-muted); font-size: 15px; }

/* ---------- Service area ---------- */
.area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}
@media (min-width: 880px) { .area-grid { grid-template-columns: 1fr 1fr; } }
.area-grid h2 { margin-bottom: 18px; }
.area-grid p { color: var(--text-muted); max-width: 50ch; }
.area-note {
  margin-top: 12px;
  padding: 14px 16px;
  background: var(--surface);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  font-size: 14.5px;
}
.area-list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.area-list li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 12px;
  font-size: 17px;
  color: var(--text);
}
.pin {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 18%, transparent);
  flex: none;
}
.pin--soft {
  background: transparent;
  border: 2px solid var(--border-strong);
  box-shadow: none;
}

/* ---------- Partners ---------- */
.partner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}
@media (min-width: 980px) { .partner-grid { grid-template-columns: 1.1fr .9fr; } }
.partner-copy h2 { margin-bottom: 18px; }
.partner-copy > p { color: var(--text-muted); max-width: 56ch; }
.partner-bullets {
  list-style: none; padding: 0; margin: 22px 0 28px;
  display: grid; gap: 10px;
}
.partner-bullets li {
  position: relative;
  padding-left: 22px;
  color: var(--text-muted);
  font-size: 15.5px;
}
.partner-bullets li::before {
  content: ""; position: absolute; left: 0; top: .75em;
  width: 10px; height: 2px; background: var(--accent);
}
.partner-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.partner-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
  color: var(--primary);
}
html[data-theme="dark"] .partner-card h3 { color: var(--text); }
.partner-card ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 10px;
}
.partner-card li {
  padding: 12px 0;
  border-top: 1px dashed var(--border);
  color: var(--text-muted);
  font-size: 14.5px;
}
.partner-card li:first-child { border-top: 0; padding-top: 0; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 880px; }
.faq-list { display: grid; gap: 10px; }
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px 18px;
  transition: border-color .2s, background .2s;
}
.faq-list details[open] { border-color: var(--primary); }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--text);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--accent);
  transition: transform .25s var(--ease);
  line-height: 1;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list p {
  margin: 0 0 16px;
  color: var(--text-muted);
  font-size: 15.5px;
}

/* ---------- Intake / Contact ---------- */
.intake-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 48px);
  align-items: start;
}
@media (min-width: 980px) { .intake-grid { grid-template-columns: .85fr 1.15fr; } }
.intake-copy h2 { margin-bottom: 16px; }
.intake-copy > p { color: var(--text-muted); max-width: 48ch; }
.contact-block {
  margin-top: 28px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.contact-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  align-items: baseline;
  padding: 10px 0;
  border-top: 1px dashed var(--border);
  margin: 0;
  font-size: 14.5px;
}
.contact-row:first-child { border-top: 0; padding-top: 0; }
.contact-label {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 700; color: var(--text-muted);
}
.contact-value { color: var(--text); font-weight: 500; }

.intake-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 32px);
  box-shadow: var(--shadow-md);
  position: relative;
}
.intake-form::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 6px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary) 70%, var(--accent) 70%);
}
.form-note {
  font-size: 12.5px;
  color: var(--text-muted);
  background: color-mix(in oklab, var(--accent) 8%, transparent);
  border: 1px dashed color-mix(in oklab, var(--accent) 40%, transparent);
  padding: 10px 12px;
  border-radius: 8px;
  margin: 8px 0 22px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
@media (min-width: 640px) { .grid-2 { grid-template-columns: 1fr 1fr; gap: 18px; } }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.field .hint, .field .muted { font-size: 12.5px; color: var(--text-muted); }
.intake-form input,
.intake-form select,
.intake-form textarea {
  width: 100%;
  font: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--surface-alt);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.intake-form textarea { resize: vertical; min-height: 120px; }
.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--primary) 18%, transparent);
  background: var(--surface);
}
.form-success {
  margin: 16px 0 0;
  padding: 14px 16px;
  background: color-mix(in oklab, #2fa15e 12%, transparent);
  border: 1px solid color-mix(in oklab, #2fa15e 40%, transparent);
  color: var(--text);
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.45;
}
.form-success p { margin: 0; }
.form-error {
  margin: 14px 0 0;
  padding: 14px 16px;
  background: color-mix(in oklab, #b3261e 9%, transparent);
  border: 1px solid color-mix(in oklab, #b3261e 35%, transparent);
  color: var(--text);
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.5;
}
.form-error p { margin: 0; }
.form-error a { color: var(--primary); }
.form-status {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--muted);
}
.link-btn {
  background: none;
  border: 0;
  padding: 0;
  color: var(--primary);
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
}
.link-btn:hover { opacity: .85; }

/* Photo upload field */
.intake-form input[type="file"] {
  padding: 10px 12px;
  font-size: 14px;
  cursor: pointer;
  background: var(--surface);
}
.intake-form input[type="file"]::file-selector-button {
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  background: var(--surface-alt);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 6px 12px;
  margin-right: 12px;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
.intake-form input[type="file"]::file-selector-button:hover {
  background: color-mix(in oklab, var(--primary) 8%, var(--surface-alt));
  border-color: var(--primary);
}
.photo-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.photo-list:empty { display: none; }
.photo-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
  padding: 4px 0;
  border-bottom: 1px dashed var(--border);
}
.photo-list-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  flex: 1;
}
.photo-list-size {
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.photo-list-summary {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  padding-top: 4px;
  border-bottom: 0;
}
.form-inline-error {
  margin: 8px 0 0;
  font-size: 13px;
  color: #b3261e;
  font-weight: 500;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.optional-details {
  margin: 2px 0 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: color-mix(in oklab, var(--surface-alt) 70%, transparent);
  overflow: clip;
}
.optional-details summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 14px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.optional-details summary::-webkit-details-marker { display: none; }
.optional-details summary::after {
  content: "+";
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1;
  transition: transform .2s var(--ease);
}
.optional-details[open] summary::after { transform: rotate(45deg); }
.optional-details[open] { padding-bottom: 2px; }
.optional-details .grid-2,
.optional-details .field {
  margin-left: 14px;
  margin-right: 14px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: #d8def0;
  padding: clamp(48px, 6vw, 72px) 0 24px;
  margin-top: clamp(40px, 5vw, 64px);
}
html[data-theme="dark"] .site-footer { background: #060e1b; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-brand { color: #fff; }
.footer-logo { color: var(--navy-700); display: inline-block; margin-bottom: 14px; }
.footer-logo-img {
  display: block;
  width: min(260px, 100%);
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  margin: 0 0 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.16);
}
.footer-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.footer-tag {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  max-width: 36ch;
}
.footer-label {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-col li, .footer-col a { font-size: 14.5px; color: rgba(255,255,255,.78); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: grid; gap: 12px;
  padding-top: 20px;
  color: rgba(255,255,255,.55);
  font-size: 12.5px;
}
.footer-fine { max-width: 92ch; line-height: 1.55; }

/* ---------- Mobile sticky CTA ---------- */
.mobile-sticky-cta { display: none; }
@media (max-width: 719px) {
  body { padding-bottom: 86px; }
  .mobile-sticky-cta {
    position: fixed;
    z-index: 70;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px var(--pad-x) calc(12px + env(safe-area-inset-bottom));
    background: color-mix(in oklab, var(--bg) 92%, transparent);
    border-top: 1px solid var(--border);
    backdrop-filter: saturate(140%) blur(12px);
    -webkit-backdrop-filter: saturate(140%) blur(12px);
    box-shadow: 0 -12px 30px rgba(7, 24, 47, .10);
  }
  .mobile-sticky-cta .btn {
    min-height: 48px;
    justify-content: center;
    padding: 12px 10px;
    font-size: 13px;
  }
}

/* ---------- Layout refinement pass ---------- */
.site-header {
  background: color-mix(in oklab, var(--cream-50) 94%, transparent);
}
html[data-theme="dark"] .site-header {
  background: color-mix(in oklab, var(--bg) 92%, transparent);
}
.header-inner { min-height: 64px; }
.brand-logo { width: clamp(120px, 12vw, 152px); }
.primary-nav { gap: 18px; }
.primary-nav a { font-size: 14px; }

.hero {
  padding: clamp(46px, 6vw, 82px) 0 0;
  background:
    linear-gradient(135deg, rgba(7, 24, 47, .98), rgba(11, 37, 69, .94)),
    radial-gradient(circle at 88% 18%, rgba(201, 56, 47, .22), transparent 34%);
  color: var(--cream-50);
}
.hero::before { opacity: .45; }
.hero .display,
.hero .lede,
.hero .hero-sub,
.hero .hero-marks li,
.hero .hero-marks strong,
.hero .eyebrow,
.hero .btn-ghost {
  color: var(--cream-50);
}
.hero .lede {
  color: rgba(250, 247, 239, .82);
  max-width: 52ch;
}
.hero .hero-sub {
  color: rgba(250, 247, 239, .72);
  max-width: 52ch;
}
.hero .eyebrow { color: rgba(250, 247, 239, .72); }
.hero .hero-marks {
  border-top-color: rgba(250, 247, 239, .18);
  gap: 14px;
}
.hero .hero-marks li {
  border: 1px solid rgba(250, 247, 239, .16);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255,255,255,.05);
}
.hero .btn-ghost {
  border-color: rgba(250, 247, 239, .42);
}
.hero .btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(250, 247, 239, .75);
}
.hero .btn-secondary {
  background: rgba(250, 247, 239, .10);
  color: var(--cream-50);
  border-color: rgba(250, 247, 239, .32);
}
.hero .btn-secondary::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(179, 38, 30, .25);
}
.hero .btn-secondary:hover {
  background: rgba(250, 247, 239, .16);
  color: var(--cream-50);
  border-color: rgba(250, 247, 239, .65);
}
.hero-proof span {
  background: rgba(255,255,255,.08);
  border-color: rgba(250, 247, 239, .16);
  color: rgba(250, 247, 239, .78);
  box-shadow: none;
}
.hero-card {
  align-self: stretch;
  margin-bottom: clamp(26px, 4vw, 46px);
}
.brand-proof.section,
#more-than-handyman.section,
#who.section,
#services.section,
#walkthrough.section,
#research.section,
#pricing.section,
#process.section,
#service-area.section,
#situations.section,
#faq.section,
#intake.section {
  padding: clamp(56px, 7vw, 92px) 0;
}
.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: clamp(30px, 4vw, 46px);
}
.section-head .kicker { margin-bottom: 0; }

.who-grid,
.research-grid,
.process-grid,
.pricing-grid {
  gap: 14px;
}
.who-card,
.research-card,
.step,
.price-card,
.partner-card,
.contact-block,
.intake-form {
  box-shadow: var(--shadow-sm);
}

.services-grid {
  gap: 14px;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}
@media (min-width: 1040px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .svc:nth-child(8) { grid-column: span 2; }
}
.svc {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-height: 190px;
  box-shadow: var(--shadow-sm);
}
.svc::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: .16;
}

#pricing.section-tint {
  background:
    linear-gradient(180deg, var(--bg-tint), color-mix(in oklab, var(--bg-tint) 76%, var(--surface)));
}
.pricing-grid { align-items: stretch; }
.price-card { min-height: 100%; }
.price-terms { box-shadow: var(--shadow-sm); }

.intake-grid { align-items: stretch; }
.intake-copy {
  background: var(--navy-800);
  color: var(--cream-50);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 38px);
  min-height: 100%;
  box-shadow: var(--shadow-md);
}
.intake-copy .kicker { color: #ffb1aa; }
.intake-copy h2 { color: #fff; }
.intake-copy > p { color: rgba(250, 247, 239, .76); }
.intake-copy .contact-block {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.14);
}
.intake-copy .contact-label { color: rgba(250, 247, 239, .58); }
.intake-copy .contact-value { color: #fff; }
.intake-copy .contact-value a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.45);
  text-underline-offset: 4px;
}
.intake-copy .contact-value a:hover,
.intake-copy .contact-value a:focus-visible {
  color: #ffddd8;
  text-decoration-color: currentColor;
}

@media (max-width: 719px) {
  .utility-inner {
    min-height: 38px;
    justify-content: center;
    text-align: center;
    font-size: 10.5px;
    letter-spacing: .035em;
    padding-inline: 8px;
  }
  .utility-bar a { white-space: normal; }
  .utility-inner span { display: none; }
  .header-inner { min-height: 60px; }
  .brand--real { padding: 4px 6px; }
  .brand-logo { width: 122px; height: 50px; }
  .header-cta .theme-toggle { display: none; }
  .header-phone { display: none; }
  .hero {
    padding-top: 34px;
  }
  .display {
    font-size: clamp(38px, 10.8vw, 44px);
    line-height: .98;
    letter-spacing: -0.03em;
    word-spacing: .05em;
  }
  .lede {
    font-size: 16px;
    margin-bottom: 14px;
  }
  .hero-sub {
    font-size: 14px;
    margin-bottom: 22px;
  }
  .hero-actions {
    margin-bottom: 20px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-marks,
  .hero-proof {
    display: none;
  }
  .hero-card {
    padding: 18px;
    margin-bottom: 24px;
  }
  .card-header {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 12px;
  }
  .card-status {
    justify-self: start;
  }
  .scope-widget {
    padding: 14px;
  }
  .scope-widget h2 {
    font-size: 21px;
    line-height: 1.12;
    letter-spacing: -0.01em;
    word-spacing: .04em;
    margin-bottom: 10px;
  }
  .scope-fields {
    gap: 7px;
    margin-bottom: 12px;
  }
  .scope-fields div {
    padding: 9px 10px;
  }
  .scope-fields strong {
    font-size: 13px;
  }
  .scope-note,
  .card-foot {
    font-size: 12.5px;
  }
  .contact-row {
    grid-template-columns: 1fr;
    gap: 4px;
    font-size: 15px;
  }
  .contact-label {
    letter-spacing: .14em;
  }
}

/* ---------- Motion ---------- */
@media (prefers-reduced-motion: no-preference) {
  .who-card, .price-card, .step, .faq-list details { will-change: transform; }
  .reveal { opacity: 1; transform: none; transition: opacity .6s var(--ease), transform .6s var(--ease); }
  .reveal.is-in { opacity: 1; transform: none; }
}

/* ============================================================
   VIP UPGRADE — Brand mark, premium hero, owner-ready report
   ============================================================ */

/* --- Brand mark replaces raster logo box --- */
.brand.brand--mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}
.brand.brand--mark .brand-svg {
  flex: none;
  filter: drop-shadow(0 1px 2px rgba(7, 24, 47, .12));
}
.brand.brand--mark .brand-words {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand.brand--mark .brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.brand.brand--mark .brand-sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 3px;
}
html[data-theme="dark"] .brand.brand--mark .brand-name { color: var(--text); }

/* --- Quiet team-login link --- */
.nav-link-quiet {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  white-space: nowrap;
  padding: 6px 4px;
}
.nav-link-quiet:hover { color: var(--primary); }
@media (max-width: 919px) { .nav-link-quiet { display: none; } }
.mobile-nav-quiet {
  color: var(--text-muted) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  text-transform: none;
  letter-spacing: .02em;
}

/* --- Hero eyebrow --- */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 22px;
  padding: 6px 14px 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: color-mix(in oklab, var(--surface) 90%, transparent);
}
.hero-eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 22%, transparent);
}

/* --- Owner-ready report card (replaces scope widget) --- */
.hero-report {
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow:
    0 30px 60px -28px rgba(7, 24, 47, .35),
    0 8px 18px -10px rgba(7, 24, 47, .14);
  overflow: hidden;
  position: relative;
}
.hero-report::before { display: none; }
.report-stripe {
  height: 6px;
  background: linear-gradient(90deg, var(--navy-800) 0 70%, var(--accent) 70%);
}
.report-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 26px 18px;
  border-bottom: 1px solid var(--border);
}
.report-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.report-brand-logo {
  width: 76px;
  height: auto;
  flex: none;
  background: #fff;
  border-radius: 6px;
}
.report-label {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.report-prop {
  margin: 2px 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.005em;
  color: var(--text);
  line-height: 1.2;
}
.report-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.report-status .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #2fa15e;
  box-shadow: 0 0 0 3px color-mix(in oklab, #2fa15e 28%, transparent);
}

.report-score {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 26px;
  background: linear-gradient(180deg,
    color-mix(in oklab, var(--primary) 6%, transparent),
    transparent 80%);
  border-bottom: 1px solid var(--border);
}
.score-num {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-body);
  color: var(--primary);
}
html[data-theme="dark"] .score-num { color: var(--text); }
.score-num strong {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.score-num .score-out {
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 600;
}
.score-meta { min-width: 0; }
.score-band {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  letter-spacing: -0.005em;
}
.score-track {
  display: block;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--primary) 12%, var(--border));
  overflow: hidden;
  margin-bottom: 8px;
}
.score-track > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), color-mix(in oklab, var(--primary) 80%, #2fa15e));
  border-radius: inherit;
}
.score-note {
  margin: 0;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.report-list {
  list-style: none;
  margin: 0;
  padding: 14px 26px 8px;
  display: grid;
  gap: 6px;
}
.report-list li {
  display: grid;
  grid-template-columns: 78px 1fr;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px dashed var(--border);
}
.report-list li:first-child { border-top: 0; }
.pri {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  width: max-content;
  max-width: 100%;
}
.pri--must {
  background: color-mix(in oklab, var(--accent) 16%, transparent);
  color: var(--accent);
  border: 1px solid color-mix(in oklab, var(--accent) 38%, transparent);
}
.pri--should {
  background: color-mix(in oklab, #d19900 18%, transparent);
  color: #8a6a00;
  border: 1px solid color-mix(in oklab, #d19900 38%, transparent);
}
html[data-theme="dark"] .pri--should { color: #e8af34; }
.pri--option {
  background: color-mix(in oklab, var(--text-muted) 14%, transparent);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.report-list .item {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.35;
}

.report-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 26px 22px;
  border-top: 1px solid var(--border);
  background: color-mix(in oklab, var(--surface-alt) 60%, transparent);
}
.next-action {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
}
.next-action::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--accent);
  vertical-align: middle;
}
.report-cta {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--primary);
  text-decoration: none;
}
.report-cta:hover { color: var(--primary-hover); }

/* --- Slight hero spacing tweaks --- */
.hero { padding-top: clamp(48px, 6vw, 88px); }
.hero .display { font-size: clamp(38px, 5.4vw, 64px); }
.hero-marks { margin-top: 28px; gap: 18px 32px; }

/* --- Header polish at smaller widths --- */
@media (max-width: 1100px) {
  .brand.brand--mark .brand-sub { display: none; }
}
@media (max-width: 1024px) {
  .header-phone { display: none; }
}
@media (max-width: 919px) {
  .header-cta .btn-primary { display: none; }
}

/* --- Mobile hero report adjustments --- */
@media (max-width: 720px) {
  .hero-eyebrow {
    display: flex;
    width: fit-content;
    max-width: 100%;
    margin-bottom: 18px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(250, 247, 239, .68);
    font-size: 11px;
    line-height: 1.35;
    letter-spacing: .15em;
  }
  .hero-actions {
    display: grid;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    min-height: 54px;
  }
  .report-head { padding: 18px 20px 14px; }
  .report-score { padding: 18px 20px; }
  .score-num strong { font-size: 54px; }
  .report-list { padding: 12px 20px 6px; }
  .report-foot {
    padding: 14px 20px 18px;
    flex-wrap: wrap;
  }
  /* Stack the status pill above the item text on mobile so longer
     labels like COORDINATED cannot collide with the item copy. */
  .report-list li {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px 0;
  }
  .pri {
    justify-self: start;
    max-width: 100%;
    height: auto;
    min-height: 22px;
    padding: 3px 10px;
    white-space: nowrap;
  }
  .report-list .item { font-size: 14px; }
}

/* Hero free-photo-estimate note (added in VIP pass 3) */
.hero-free-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 9px 16px;
  border: 1px solid rgba(250, 247, 239, .28);
  border-radius: 999px;
  background: rgba(250, 247, 239, .06);
  color: rgba(250, 247, 239, .92);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.3;
  max-width: 100%;
}
.hero .hero-free-note { color: rgba(250, 247, 239, .92); }
.hero-free-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b3261e;
  box-shadow: 0 0 0 4px rgba(179, 38, 30, .25);
  flex: none;
}

/* Quick-start subhead for free-estimate path */
.quick-start-sub {
  margin-top: 8px;
  color: var(--text-muted, #5a6173);
  font-size: 15px;
  line-height: 1.5;
  max-width: 46ch;
}

/* ============================================================
   Mobile polish pass — tighter hero, headlines, card spacing,
   sticky CTA breathing room, closeout-preview rhythm
   ============================================================ */
@media (max-width: 719px) {
  /* Hero: tagline above headline kept tight on mobile */
  .hero-tagline {
    font-size: 14px;
    margin-bottom: 12px;
  }
  /* Hero: longer headline now — scale down a touch and balance the lede */
  .hero .display {
    font-size: clamp(34px, 9.2vw, 40px);
    line-height: 1.02;
    letter-spacing: -0.025em;
  }
  .hero .lede {
    font-size: 15.5px;
    line-height: 1.5;
    margin-bottom: 18px;
  }
  .hero-grid {
    gap: 28px;
  }
  .hero-actions .btn {
    font-size: 15px;
    padding: 14px 16px;
  }
  .hero-card.hero-report {
    margin-bottom: 8px;
  }
  .hero-disclaimer.footer-fine {
    font-size: 12px;
    line-height: 1.45;
    margin-top: 18px;
  }

  /* Section heads: keep h2 readable but not cramped */
  .h2 {
    font-size: clamp(24px, 6.6vw, 30px);
    line-height: 1.12;
    letter-spacing: -0.018em;
  }
  .section-head { gap: 8px; }
  .section-head .kicker { font-size: 11px; letter-spacing: .14em; }
  .section-lede { font-size: 15.5px; line-height: 1.5; }

  /* Brand-proof panel: dark photo background gets a softer, contained look */
  .brand-proof {
    background-position: center 30%;
  }
  .brand-proof-panel { gap: 24px; }
  .deadline-card { padding: 18px 16px; }
  .deadline-card li {
    grid-template-columns: 1fr;
    gap: 2px;
    padding-top: 10px;
  }
  .deadline-card strong { font-size: 14.5px; }
  .deadline-card span { font-size: 13.5px; }

  /* Closeout-preview block: tighten on mobile */
  .closeout-preview { gap: 12px; }
  .closeout-entry { padding: 18px 16px 16px; }
  .closeout-entry h3 { font-size: 18px; }
  .closeout-entry p { font-size: 14px; line-height: 1.5; }

  /* Repair / who / process / pricing grids: tighter card padding */
  .repair-card { padding: 14px 14px 12px; }
  .repair-card h3 { font-size: 15px; }
  .repair-card p { font-size: 13.5px; }
  .who-card, .step, .price-card { padding: 18px 16px; }

  /* Sample report preview card: prevent cramped grid on small screens */
  .preview-list > div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px 0;
  }

  /* Sticky CTA breathing room — current 86px is just barely enough */
  body { padding-bottom: 92px; }
  .mobile-sticky-cta {
    padding: 10px var(--pad-x) calc(10px + env(safe-area-inset-bottom));
  }
  .mobile-sticky-cta .btn {
    font-size: 13.5px;
    min-height: 46px;
    padding: 10px 8px;
  }

  /* Intake form: tighten copy block, prevent edge-to-edge buttons clipping */
  .intake-copy { padding: 22px 18px; }
  .intake-form { padding: 18px 16px; }
  .form-note { font-size: 13.5px; }
}

/* Slightly narrower phones (≤380px): more aggressive headline scaling */
@media (max-width: 380px) {
  .hero .display {
    font-size: 28px;
    line-height: 1.05;
    letter-spacing: -0.02em;
  }
  .hero .lede { font-size: 14.5px; }
  .h2 { font-size: 22px; }
  .mobile-sticky-cta .btn { font-size: 13px; padding: 10px 6px; }
}

/* Hero lede emphasis: keep <strong> readable on the dark hero, not overweight */
.hero .lede strong {
  color: var(--cream-50);
  font-weight: 700;
}
