/* ==========================================================================
   SummitShield Roofing — prototype refresh
   Lane: claude-code  |  Step 8 bakeoff  |  2026-06-16
   Design system: one stylesheet, shared by every page.
   Palette fixes the disliked red/blue clash -> warm charcoal + ivory + copper,
   with one tightly-scoped "ember" tone reserved for storm/emergency actions.
   All photographic sections carry a built-in scrim so text never gets lost.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* ink / neutrals */
  --ink: #15191c;
  --ink-soft: #222a30;
  --ink-2: #2c353c;
  --slate: #4c565d;
  --muted: #6f7a81;
  --line: #e7decf;
  --line-soft: #efe8db;
  --paper: #fbf8f3;
  --paper-2: #f3ece1;
  --paper-3: #ede3d4;
  --panel: #ffffff;

  /* brand accent — copper / bronze (a roofing material, premium, calm) */
  --copper: #b26a38;
  --copper-700: #925227;
  --copper-800: #7c441f;
  --copper-300: #e4c9ae;
  --copper-100: #f3e4d4;
  --copper-50: #f8efe4;

  /* ember — reserved for storm / emergency only */
  --ember: #b23a2e;
  --ember-700: #8b2920;

  /* support */
  --gold: #c2902f;          /* review stars (warm, not garish) */
  --ok: #3c7a52;

  /* type */
  --display: "Roboto Slab", Rockwell, Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* layout */
  --wrap: 1180px;
  --wrap-narrow: 880px;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(21, 25, 28, .06), 0 1px 3px rgba(21, 25, 28, .05);
  --shadow: 0 14px 36px -18px rgba(21, 25, 28, .35), 0 4px 12px -8px rgba(21, 25, 28, .18);
  --shadow-lg: 0 40px 80px -40px rgba(21, 25, 28, .55);
  --ring: 0 0 0 3px rgba(178, 106, 56, .35);

  /* photographic scrims (constant across all heroes for guaranteed contrast) */
  --scrim-left: linear-gradient(96deg, rgba(15,18,20,.92) 0%, rgba(15,18,20,.74) 42%, rgba(15,18,20,.30) 78%, rgba(15,18,20,.12) 100%);
  --scrim-down: linear-gradient(180deg, rgba(15,18,20,.42) 0%, rgba(15,18,20,.30) 40%, rgba(15,18,20,.80) 100%);
  --scrim-band: linear-gradient(90deg, rgba(15,18,20,.88) 0%, rgba(15,18,20,.66) 55%, rgba(15,18,20,.42) 100%);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--copper-700); text-decoration: none; }
a:hover { color: var(--copper-800); }
ul, ol { padding-left: 1.1em; }
button { font: inherit; cursor: pointer; }

:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: var(--paper); padding: 10px 16px;
  border-radius: 8px; transition: top .2s ease;
}
.skip-link:focus { top: 12px; color: var(--paper); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.08; color: var(--ink); letter-spacing: -.01em; }
h1 { font-size: clamp(2.3rem, 5.2vw, 3.7rem); font-weight: 600; }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.12rem; font-weight: 600; }
p { color: var(--slate); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--slate); line-height: 1.6; }
strong { color: var(--ink); font-weight: 600; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--sans); font-size: .78rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--copper-700);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--copper); border-radius: 2px; }
.eyebrow--center::after { content: ""; width: 26px; height: 2px; background: var(--copper); border-radius: 2px; }

/* on-dark variants */
.on-dark, .on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: var(--paper); }
.on-dark p, .on-dark .lead { color: rgba(251, 248, 243, .82); }
.on-dark .eyebrow { color: var(--copper-300); }
.on-dark .eyebrow::before, .on-dark .eyebrow--center::after { background: var(--copper-300); }
.on-dark a { color: var(--copper-300); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(18px, 4vw, 40px); }
.wrap--narrow { max-width: var(--wrap-narrow); }
.section { padding-block: clamp(56px, 8vw, 104px); }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }
.section--paper-2 { background: var(--paper-2); }
.section--ink { background: var(--ink); }
.section--ink-grad { background: radial-gradient(1100px 500px at 80% -10%, #283139 0%, var(--ink) 60%); }

.section__head { max-width: 720px; margin-bottom: clamp(28px, 4vw, 48px); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head .eyebrow { margin-bottom: 14px; }
.section__head p { margin-top: 14px; }

.grid { display: grid; gap: clamp(18px, 2.4vw, 28px); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 72px); align-items: center; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--copper-700); --btn-fg: #fff; --btn-bd: var(--copper-700);
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--sans); font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 15px 24px; border-radius: 999px; border: 1.5px solid var(--btn-bd);
  background: var(--btn-bg); color: var(--btn-fg);
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--copper); border-color: var(--copper); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 24px -12px rgba(146, 82, 39, .8); }
.btn svg { width: 1.05em; height: 1.05em; }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line); }
.btn--ghost:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.btn--ember { --btn-bg: var(--ember-700); --btn-bd: var(--ember-700); }
.btn--ember:hover { background: var(--ember); border-color: var(--ember); }
.btn--lg { padding: 18px 30px; font-size: 1.06rem; }
.btn--block { width: 100%; }
.on-dark .btn--ghost, .btn--ghost-light { --btn-fg: var(--paper); --btn-bd: rgba(251,248,243,.42); }
.on-dark .btn--ghost:hover, .btn--ghost-light:hover { background: var(--paper); border-color: var(--paper); color: var(--ink); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.textlink { display: inline-flex; align-items: center; gap: .4em; font-weight: 600; color: var(--copper-700); }
.textlink svg { width: 1em; height: 1em; transition: transform .18s ease; }
.textlink:hover svg { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 248, 243, .9);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-stuck { box-shadow: 0 10px 30px -22px rgba(21,25,28,.5); background: rgba(251,248,243,.97); }
.header-inner { display: flex; align-items: center; gap: 24px; height: 76px; }

.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); flex-shrink: 0; }
.brand:hover { color: var(--ink); }
.brand__mark { width: 36px; height: 41px; flex-shrink: 0; }
.brand__name { display: flex; flex-direction: column; line-height: 1; }
.brand__name b { font-family: var(--display); font-weight: 600; font-size: 1.28rem; letter-spacing: -.01em; }
.brand__name span { font-size: .62rem; font-weight: 700; letter-spacing: .34em; color: var(--copper-700); margin-top: 3px; }

.primary-nav { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.primary-nav > ul { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-link {
  display: inline-flex; align-items: center; gap: .35em;
  padding: 10px 14px; border-radius: 9px; font-size: .96rem; font-weight: 500; color: var(--ink-soft);
  transition: background .18s ease, color .18s ease;
}
.nav-link:hover { background: var(--paper-2); color: var(--ink); }
.nav-link[aria-current="page"] { color: var(--copper-800); }
.nav-link[aria-current="page"]::after { content: ""; }
.nav-link .caret { width: 14px; height: 14px; transition: transform .2s ease; }

/* dropdown (services routing) */
.has-menu { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%) translateY(8px);
  width: 560px; background: var(--panel); border: 1px solid var(--line);
  border-radius: 16px; box-shadow: var(--shadow); padding: 16px;
  opacity: 0; visibility: hidden; transition: opacity .18s ease, transform .18s ease;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px; z-index: 120;
}
.has-menu:hover .dropdown, .has-menu:focus-within .dropdown, .dropdown.is-open {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.has-menu:hover .caret, .has-menu:focus-within .caret { transform: rotate(180deg); }
.dropdown a { display: flex; gap: 12px; padding: 11px 12px; border-radius: 11px; color: var(--ink); align-items: flex-start; }
.dropdown a:hover { background: var(--paper-2); }
.dropdown .ico { width: 34px; height: 34px; flex-shrink: 0; border-radius: 9px; background: var(--copper-50); color: var(--copper-700); display: grid; place-items: center; }
.dropdown .ico svg { width: 18px; height: 18px; }
.dropdown b { display: block; font-family: var(--sans); font-weight: 600; font-size: .95rem; }
.dropdown small { color: var(--muted); font-size: .82rem; line-height: 1.4; }
.dropdown .dd-foot { grid-column: 1 / -1; margin-top: 6px; padding: 12px; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; align-items: center; gap: 12px; }

.header-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; flex-shrink: 0; }
.header-phone { display: inline-flex; flex-direction: column; align-items: flex-end; line-height: 1.1; color: var(--ink); }
.header-phone small { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.header-phone b { font-family: var(--display); font-size: 1.12rem; font-weight: 600; color: var(--ink); }
.header-phone:hover b { color: var(--copper-800); }

.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 11px; background: var(--panel); align-items: center; justify-content: center; }
.nav-toggle span { position: relative; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: background .1s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s ease, top .2s ease; }
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }

/* ---------- Hero ---------- */
.hero { position: relative; background-color: var(--ink); background-size: cover; background-position: center; color: var(--paper); isolation: isolate; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background-image: var(--scrim-left); }
.hero__inner { padding-block: clamp(72px, 13vw, 150px); max-width: 680px; }
.hero h1 { color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.hero .lead { color: rgba(251,248,243,.9); margin-top: 18px; max-width: 33em; }
.hero .eyebrow { color: var(--copper-300); margin-bottom: 18px; }
.hero .btn-row { margin-top: 30px; }
.hero--home { background-image: var(--scrim-left), url("https://images.unsplash.com/photo-1602193289141-9605ad75d0a5?w=1900&q=80&auto=format&fit=crop"); }
.hero--services { background-image: var(--scrim-left), url("https://images.unsplash.com/photo-1590365876016-da05ac533e83?w=1900&q=80&auto=format&fit=crop"); }
.hero--replacement { background-image: var(--scrim-left), url("https://images.unsplash.com/photo-1635424825057-7fb6dcd651ef?w=1900&q=80&auto=format&fit=crop"); }
.hero--repair { background-image: var(--scrim-left), url("https://images.unsplash.com/photo-1634853982486-c06f0e17940f?w=1900&q=80&auto=format&fit=crop"); }
.hero--storm { background-image: var(--scrim-left), url("https://images.unsplash.com/photo-1591497108559-cd6cb3ba3d20?w=1900&q=80&auto=format&fit=crop"); }
.hero--reviews { background-image: var(--scrim-left), url("https://images.unsplash.com/photo-1519115226133-94046df0e272?w=1900&q=80&auto=format&fit=crop"); }
.hero--projects { background-image: var(--scrim-left), url("https://images.unsplash.com/photo-1602193230480-7840a38eb0c3?w=1900&q=80&auto=format&fit=crop"); }
.hero--areas { background-image: var(--scrim-left), url("https://images.unsplash.com/photo-1560170412-0f7df0eb0fb1?w=1900&q=80&auto=format&fit=crop"); }
.hero--about { background-image: var(--scrim-left), url("https://images.unsplash.com/photo-1635424825057-7fb6dcd651ef?w=1900&q=80&auto=format&fit=crop"); }
.hero--contact { background-image: var(--scrim-left), url("https://images.unsplash.com/photo-1590365876016-da05ac533e83?w=1900&q=80&auto=format&fit=crop"); }

/* compact hero (interior pages) */
.hero--sub .hero__inner { padding-block: clamp(56px, 9vw, 104px); max-width: 720px; }
.hero--sub h1 { font-size: clamp(2.1rem, 4.4vw, 3.1rem); }

/* hero proof chips */
.hero__proof { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 30px; padding-top: 24px; border-top: 1px solid rgba(251,248,243,.18); }
.hero__proof li { list-style: none; display: flex; align-items: center; gap: 9px; font-size: .92rem; color: rgba(251,248,243,.9); }
.hero__proof svg { width: 18px; height: 18px; color: var(--copper-300); flex-shrink: 0; }

/* breadcrumb */
.breadcrumb { font-size: .85rem; color: rgba(251,248,243,.7); margin-bottom: 16px; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.breadcrumb a { color: rgba(251,248,243,.9); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(251,248,243,.5); }

/* ---------- Proof strip (real facts, no invented numbers) ---------- */
.proofbar { background: var(--ink); color: var(--paper); }
.proofbar .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(251,248,243,.12); border-radius: 0; }
.proofbar__cell { background: var(--ink); padding: 22px 24px; display: flex; flex-direction: column; gap: 4px; }
.proofbar__cell .k { font-family: var(--display); font-size: 1.5rem; color: #fff; line-height: 1.1; }
.proofbar__cell .v { font-size: .86rem; color: rgba(251,248,243,.72); }
.proofbar__cell .k span { color: var(--copper-300); }

/* ---------- Light-surface guard ----------
   These components always sit on a light panel/paper surface. Pin their text to
   dark ink even when they're dropped inside an .on-dark / dark section, so a page
   author can reuse them anywhere without text washing out. */
.card, .svc-card, .review-card, .project-card, .step, .form-card,
.badge-tile, .provider-card, .area-pill, .faq__item, .human-band {
  color: var(--slate);
}
.card h1, .card h2, .card h3, .card h4,
.svc-card h3, .review-card h3, .project-card h3, .step h3,
.form-card h2, .form-card h3, .badge-tile b, .provider-card b,
.area-pill b, .faq__q, .human-band h3 { color: var(--ink); }
.on-dark .card p, .on-dark .svc-card p, .on-dark .project-card p,
.on-dark .step p, .on-dark .review-card blockquote { color: var(--slate); }

/* ---------- Cards ---------- */
.card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--copper-300); }
.card .ico { width: 48px; height: 48px; border-radius: 12px; background: var(--copper-50); color: var(--copper-700); display: grid; place-items: center; margin-bottom: 18px; }
.card .ico svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: .96rem; }
.card .textlink { margin-top: 16px; }
.card-list { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 9px; }
.card-list li { display: flex; gap: 9px; align-items: flex-start; font-size: .93rem; color: var(--slate); }
.card-list svg { width: 17px; height: 17px; color: var(--copper); flex-shrink: 0; margin-top: 3px; }

/* service card with image */
.svc-card { display: flex; flex-direction: column; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .25s ease; }
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.svc-card__img { aspect-ratio: 16 / 10; background: var(--ink-2); background-size: cover; background-position: center; }
.svc-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.svc-card__body h3 { margin-bottom: 8px; }
.svc-card__body .textlink { margin-top: auto; padding-top: 16px; }
.tag { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--copper-700); background: var(--copper-50); padding: 5px 10px; border-radius: 999px; }

/* ---------- Routing selector (homeowner / business / storm / coatings) ---------- */
.routing { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.route {
  position: relative; display: flex; flex-direction: column; gap: 10px;
  padding: 26px 24px; border-radius: var(--radius); color: var(--paper);
  background: var(--ink); background-size: cover; background-position: center; isolation: isolate;
  min-height: 230px; overflow: hidden; transition: transform .2s ease, box-shadow .25s ease;
}
.route::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(15,18,20,.25) 0%, rgba(15,18,20,.55) 55%, rgba(15,18,20,.9) 100%); }
.route:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.route .ico { width: 42px; height: 42px; border-radius: 11px; background: rgba(178,106,56,.92); color: #fff; display: grid; place-items: center; }
.route .ico svg { width: 22px; height: 22px; }
.route h3 { color: #fff; margin-top: auto; }
.route p { color: rgba(251,248,243,.85); font-size: .9rem; }
.route .textlink { color: var(--copper-300); margin-top: 4px; }
.route--storm .ico { background: var(--ember); }

/* ---------- Steps / process ---------- */
.steps { counter-reset: step; display: grid; gap: 22px; }
.steps--row { grid-template-columns: repeat(4, 1fr); }
.step { position: relative; padding: 26px 24px 24px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); font-family: var(--display); font-size: 1.1rem; color: var(--copper-700); font-weight: 600; display: inline-block; margin-bottom: 12px; }
.step h3 { margin-bottom: 6px; color: var(--ink); font-size: 1.12rem; }
.step p { font-size: .92rem; color: var(--slate); }

/* ---------- Before / after slider ---------- */
.ba { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); user-select: none; aspect-ratio: 16 / 9; background: var(--ink-2); }
.ba__img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.ba__after { clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba__label { position: absolute; top: 14px; padding: 6px 12px; border-radius: 999px; font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #fff; background: rgba(21,25,28,.72); backdrop-filter: blur(4px); }
.ba__label--before { left: 14px; } .ba__label--after { right: 14px; background: rgba(146,82,39,.85); }
.ba__range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.ba__handle { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 3px; background: #fff; box-shadow: 0 0 0 1px rgba(0,0,0,.15); transform: translateX(-50%); pointer-events: none; }
.ba__handle::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 44px; height: 44px; border-radius: 999px; background: #fff; box-shadow: var(--shadow); }
.ba__handle::before { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 20px; height: 20px; z-index: 2; background: var(--copper-700); border-radius: 999px; }

/* ---------- Tabs ---------- */
.tabs { display: block; }
.tabs__list { display: flex; flex-wrap: wrap; gap: 8px; border-bottom: 1px solid var(--line); margin-bottom: 28px; }
.tabs__btn { border: none; background: transparent; padding: 12px 18px; border-radius: 10px 10px 0 0; font-weight: 600; color: var(--muted); border-bottom: 2px solid transparent; margin-bottom: -1px; }
.tabs__btn:hover { color: var(--ink); }
.tabs__btn[aria-selected="true"] { color: var(--copper-800); border-bottom-color: var(--copper); }
.tabs__panel[hidden] { display: none; }

/* ---------- Reviews ---------- */
.review-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 14px; }
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 18px; height: 18px; }
.review-card blockquote { font-size: 1.02rem; color: var(--ink); line-height: 1.6; }
.review-card .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-card .avatar { width: 42px; height: 42px; border-radius: 999px; background: var(--copper-100); color: var(--copper-800); display: grid; place-items: center; font-weight: 700; font-family: var(--display); }
.review-card .who b { font-size: .95rem; } .review-card .who small { color: var(--muted); display: block; }
.provider-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.provider-card { display: flex; align-items: center; gap: 12px; padding: 16px 20px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.provider-card .logo { width: 40px; height: 40px; border-radius: 9px; display: grid; place-items: center; font-weight: 800; color: #fff; }
.provider-card b { display: block; font-family: var(--sans); }
.provider-card small { color: var(--muted); }

/* ---------- Projects ---------- */
.project-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .25s ease; display: flex; flex-direction: column; }
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.project-card__img { aspect-ratio: 4 / 3; background: var(--ink-2); background-size: cover; background-position: center; position: relative; }
.project-card__img .tag { position: absolute; top: 12px; left: 12px; background: rgba(21,25,28,.78); color: #fff; }
.project-card__body { padding: 22px; }
.project-meta { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 8px; }
.project-meta li { display: flex; justify-content: space-between; gap: 12px; font-size: .88rem; border-top: 1px dashed var(--line); padding-top: 8px; }
.project-meta li:first-child { border-top: none; padding-top: 0; }
.project-meta .lbl { color: var(--muted); } .project-meta .val { color: var(--ink); font-weight: 600; text-align: right; }

/* ---------- Areas ---------- */
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.area-pill { display: flex; align-items: center; gap: 10px; padding: 14px 16px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-sm); transition: border-color .18s ease, transform .15s ease; color: var(--ink); }
.area-pill:hover { border-color: var(--copper-300); transform: translateX(3px); color: var(--ink); }
.area-pill svg { width: 18px; height: 18px; color: var(--copper); flex-shrink: 0; }
.area-pill b { font-weight: 600; font-size: .96rem; }
.map-frame { display: block; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: var(--paper-2); position: relative; aspect-ratio: 4 / 3; color: var(--ink); }
.map-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(.18) contrast(1.02); }
.map-frame .map-cta { position: absolute; right: 14px; bottom: 14px; display: inline-flex; align-items: center; gap: 7px; background: var(--panel); border: 1px solid var(--line); border-radius: 999px; padding: 9px 15px; font-size: .84rem; font-weight: 600; color: var(--ink); box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .2s ease; }
a.map-frame:hover .map-cta { transform: translateY(-2px); box-shadow: var(--shadow); }
.map-frame .map-cta svg { width: 15px; height: 15px; color: var(--copper-700); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: var(--ink); color: var(--paper); border-radius: var(--radius-lg); overflow: hidden; isolation: isolate; }
.cta-band--bleed { border-radius: 0; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(700px 320px at 12% 0%, rgba(178,106,56,.30) 0%, transparent 60%), radial-gradient(600px 300px at 100% 120%, rgba(178,106,56,.18) 0%, transparent 60%); }
.cta-band__inner { padding: clamp(36px, 6vw, 64px); display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: space-between; }
.cta-band__inner > div { max-width: 34em; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(251,248,243,.82); margin-top: 10px; }

/* contact band (human) */
.human-band { display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center; padding: 26px clamp(22px,4vw,40px); background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); }
.human-band .face { width: 64px; height: 64px; border-radius: 999px; background: var(--copper-100); color: var(--copper-800); display: grid; place-items: center; font-family: var(--display); font-size: 1.4rem; font-weight: 600; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 16px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: .86rem; font-weight: 600; color: var(--ink); }
.field label .req { color: var(--ember); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .98rem; padding: 13px 15px; border: 1.5px solid var(--line);
  border-radius: 11px; background: var(--panel); color: var(--ink); width: 100%; transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--copper); box-shadow: var(--ring); outline: none; }
.field .hint { font-size: .8rem; color: var(--muted); }
.form-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 4vw, 36px); box-shadow: var(--shadow); }
.form-success { padding: 16px 18px; border-left: 3px solid var(--ok); background: #eef6f0; color: #245438; font-weight: 600; }

/* ---------- Badges / demo notes ---------- */
.badge { display: inline-flex; align-items: center; gap: 7px; padding: 7px 13px; border-radius: 999px; font-size: .82rem; font-weight: 600; border: 1px solid var(--line); background: var(--panel); color: var(--ink); }
.badge svg { width: 15px; height: 15px; color: var(--copper); }
.badge-grid { display: flex; flex-wrap: wrap; gap: 14px; align-items: stretch; }
.badge-tile { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; padding: 20px 18px; min-width: 130px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.badge-tile .seal { width: 48px; height: 48px; border-radius: 12px; background: var(--paper-2); color: var(--copper-700); display: grid; place-items: center; }
.badge-tile .seal svg { width: 26px; height: 26px; }
.badge-tile b { font-size: .9rem; } .badge-tile small { color: var(--muted); font-size: .76rem; }

.demo-note {
  display: flex; gap: 11px; align-items: flex-start;
  font-size: .82rem; color: var(--slate); line-height: 1.5;
  background: var(--copper-50); border: 1px dashed var(--copper-300);
  border-radius: 11px; padding: 12px 15px;
}
.demo-note svg { width: 17px; height: 17px; color: var(--copper-700); flex-shrink: 0; margin-top: 2px; }
.demo-note b { color: var(--copper-800); }
.demo-note--ink { background: rgba(228,201,174,.1); border-color: rgba(228,201,174,.32); color: rgba(251,248,243,.8); }
.demo-note--ink b { color: var(--copper-300); }

/* ---------- FAQ accordion ---------- */
.faq { display: grid; gap: 10px; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--panel); overflow: hidden; }
.faq__q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 19px 22px; background: transparent; border: none; font-weight: 600; color: var(--ink); font-size: 1.02rem; }
.faq__q .pm { width: 22px; height: 22px; flex-shrink: 0; position: relative; }
.faq__q .pm::before, .faq__q .pm::after { content: ""; position: absolute; top: 50%; left: 50%; width: 12px; height: 2px; background: var(--copper-700); transform: translate(-50%,-50%); transition: transform .2s ease; }
.faq__q .pm::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq__q[aria-expanded="true"] .pm::after { transform: translate(-50%,-50%) rotate(0); }
.faq__a { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height .28s ease, padding .28s ease; }
.faq__a p { padding-bottom: 20px; font-size: .96rem; }
.faq__item.is-open .faq__a { max-height: 460px; }

/* ---------- Misc content ---------- */
.list-check { list-style: none; padding: 0; display: grid; gap: 12px; }
.list-check li { display: flex; gap: 11px; align-items: flex-start; }
.list-check svg { width: 20px; height: 20px; color: var(--copper); flex-shrink: 0; margin-top: 3px; }
.figure { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.figure img, .figure .ph { display: block; width: 100%; }
.media-ph { aspect-ratio: 16 / 11; background: var(--ink-2); background-size: cover; background-position: center; border-radius: var(--radius); box-shadow: var(--shadow); }
.pill-row { display: flex; flex-wrap: wrap; gap: 9px; }
.pill { font-size: .85rem; font-weight: 600; color: var(--ink); background: var(--panel); border: 1px solid var(--line); border-radius: 999px; padding: 8px 15px; }
.divider-roof { height: 14px; width: 100%; background-image: url("assets/roofline.svg"); background-repeat: repeat-x; background-size: auto 14px; opacity: .5; }
.callout { border-left: 3px solid var(--copper); background: var(--paper-2); padding: 18px 22px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.callout p:first-child { margin-top: 0; }
.stat-inline { display: flex; gap: 30px; flex-wrap: wrap; }
.stat-inline .n { font-family: var(--display); font-size: 2rem; color: var(--ink); line-height: 1; }
.stat-inline .l { font-size: .85rem; color: var(--muted); }
.on-dark .stat-inline .n { color: #fff; } .on-dark .stat-inline .l { color: rgba(251,248,243,.7); }

/* ---------- Sticky mobile call bar ---------- */
.mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: rgba(251,248,243,.96); backdrop-filter: blur(8px); border-top: 1px solid var(--line); gap: 10px; }
.mobile-cta .btn { flex: 1; padding: 14px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--paper); padding-top: clamp(48px, 7vw, 80px); }
.site-footer a { color: rgba(251,248,243,.75); }
.site-footer a:hover { color: #fff; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 48px); padding-bottom: 44px; }
.footer-brand .brand__name b { color: #fff; }
.footer-brand p { color: rgba(251,248,243,.66); font-size: .94rem; margin-top: 16px; max-width: 30ch; }
.footer-col h3 { color: #fff; font-family: var(--sans); font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.footer-col ul a { font-size: .94rem; }
.footer-nap { display: grid; gap: 12px; font-size: .94rem; }
.footer-nap .line { display: flex; gap: 10px; align-items: flex-start; color: rgba(251,248,243,.78); }
.footer-nap svg { width: 17px; height: 17px; color: var(--copper-300); flex-shrink: 0; margin-top: 3px; }
.footer-nap b { color: #fff; }
.social-row { display: flex; gap: 10px; margin-top: 6px; }
.social-row a { width: 40px; height: 40px; border-radius: 10px; border: 1px solid rgba(251,248,243,.2); display: grid; place-items: center; color: rgba(251,248,243,.8); transition: background .18s ease, border-color .18s ease, color .18s; }
.social-row a:hover { background: rgba(251,248,243,.1); border-color: rgba(251,248,243,.4); color: #fff; }
.social-row svg { width: 19px; height: 19px; }
.footer-bottom { border-top: 1px solid rgba(251,248,243,.14); padding: 22px 0 calc(22px + env(safe-area-inset-bottom)); display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center; font-size: .84rem; color: rgba(251,248,243,.6); }
.footer-bottom a { color: rgba(251,248,243,.7); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 18px; }

/* ---------- Reveal on scroll (progressive enhancement) ---------- */
.reveal { opacity: 1; } /* visible by default; JS only animates when it can */
html.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
html.js .reveal.is-in, html.reveal-all .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html.js .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Toast (clearly-labeled demo capability) ---------- */
.toast { position: fixed; left: 18px; bottom: 18px; z-index: 95; max-width: 320px; display: flex; gap: 12px; align-items: flex-start; background: var(--panel); border: 1px solid var(--line); border-left: 3px solid var(--copper); border-radius: 12px; padding: 14px 16px; box-shadow: var(--shadow); transform: translateY(140%); opacity: 0; transition: transform .4s ease, opacity .4s ease; }
.toast.is-show { transform: translateY(0); opacity: 1; }
.toast .ico { width: 34px; height: 34px; border-radius: 9px; background: var(--copper-50); color: var(--copper-700); display: grid; place-items: center; flex-shrink: 0; }
.toast b { font-size: .92rem; } .toast p { font-size: .82rem; margin-top: 2px; }
.toast .demo-flag { font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: var(--copper-700); font-weight: 700; }
.toast .x { margin-left: auto; background: none; border: none; color: var(--muted); font-size: 1.2rem; line-height: 1; padding: 2px 4px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1040px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 960px) {
  .routing { grid-template-columns: 1fr 1fr; }
  .steps--row { grid-template-columns: 1fr 1fr; }
  .grid--4 { grid-template-columns: 1fr 1fr; }
  .proofbar .wrap { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  /* mobile nav */
  .nav-toggle { display: inline-flex; }
  .header-phone small { display: none; }
  .primary-nav {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: 12px 18px 22px;
    margin: 0; gap: 4px; max-height: calc(100dvh - 76px); overflow-y: auto;
    transform: translateY(-12px); opacity: 0; visibility: hidden; transition: opacity .2s ease, transform .2s ease;
    box-shadow: var(--shadow);
  }
  .primary-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .primary-nav > ul { flex-direction: column; align-items: stretch; gap: 2px; width: 100%; }
  .nav-link { padding: 14px 12px; font-size: 1.05rem; border-radius: 10px; justify-content: space-between; }
  .has-menu { position: static; }
  .dropdown { position: static; transform: none; width: 100%; box-shadow: none; border: none; background: var(--paper-2);
    grid-template-columns: 1fr; opacity: 1; visibility: visible; max-height: 0; overflow: hidden; padding: 0 8px; transition: max-height .3s ease, padding .3s ease; }
  .dropdown.is-open { max-height: 800px; padding: 8px; transform: none; }
  .has-menu:hover .dropdown, .has-menu:focus-within .dropdown { transform: none; }
  .dropdown .dd-foot { flex-direction: column; align-items: stretch; }
  .header-actions .btn { display: none; }
  .header-actions .header-phone { display: none; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 72px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .grid--2, .grid--3, .grid--4, .split, .routing, .steps--row, .areas-grid, .form .row, .human-band { grid-template-columns: 1fr; }
  .human-band { text-align: center; justify-items: center; }
  .proofbar .wrap { grid-template-columns: 1fr 1fr; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .hero__inner { max-width: none; }
  .dropdown { grid-template-columns: 1fr; }
  .btn-row { flex-direction: column; align-items: stretch; width: 100%; }
  .btn-row .btn { width: 100%; min-width: 0; }
  .provider-row .btn { margin-left: 0 !important; }
}
@media (max-width: 420px) {
  .proofbar .wrap { grid-template-columns: 1fr; }
  .badge-tile { min-width: 110px; flex: 1; }
}

/* print */
@media print {
  .site-header, .mobile-cta, .toast, .cta-band, .hero::after { box-shadow: none; }
  body { background: #fff; }
}

/* ==========================================================================
   005 Neighborhood Proof refresh
   Selected visual direction: proof-led regional editorial, July 2026.
   ========================================================================== */
:root {
  --display: "Roboto Slab", Rockwell, Georgia, "Times New Roman", serif;
  --muted: #6a747b;
  --wrap: 1280px;
  --radius: 3px;
  --radius-sm: 2px;
  --radius-lg: 4px;
  --shadow-sm: 0 1px 0 rgba(21, 25, 28, .08);
  --shadow: 0 12px 28px -24px rgba(21, 25, 28, .55);
  --shadow-lg: 0 20px 44px -34px rgba(21, 25, 28, .7);
}

h1, h2, h3, h4 { font-weight: 700; letter-spacing: -.025em; }
.btn { border-radius: 0; font-size: .91rem; font-weight: 700; letter-spacing: .045em; text-transform: uppercase; }
.btn:hover { transform: none; box-shadow: none; }
.nav-link, .dropdown, .dropdown a, .dropdown .ico, .form-card, .faq__item,
.project-card, .review-card, .provider-card, .badge-tile, .area-pill,
.media-ph, .map-frame, .cta-band { border-radius: var(--radius-sm); }

.site-header { background: rgba(251, 248, 243, .98); backdrop-filter: none; }
.site-header.is-stuck { background: var(--paper); box-shadow: 0 8px 24px -22px rgba(21,25,28,.7); }
.brand__name b, .header-phone b { font-weight: 700; }
.dropdown { box-shadow: 0 18px 48px -34px rgba(21,25,28,.65); }

.home-refresh main { display: flex; flex-direction: column; }
.home-refresh .home-hero { order: 0; }
.home-refresh .home-proof { order: 1; }
.home-refresh .home-routing { order: 2; }
.home-refresh .home-why { order: 3; }
.home-refresh .home-process { order: 4; }
.home-refresh .home-reviews { order: 5; }
.home-refresh .home-areas { order: 6; }
.home-refresh .home-cta { order: 7; }
.home-refresh .proofbar,
.home-refresh .home-services,
.home-refresh .home-affiliations { display: none; }
.toast { display: none; }

.home-hero {
  display: grid;
  grid-template-columns: minmax(560px, 46%) minmax(0, 54%);
  min-height: 542px;
  background: var(--ink);
  isolation: isolate;
}
.home-hero::after { display: none; }
.home-hero .hero__inner {
  grid-column: 1;
  align-self: center;
  width: 100%;
  max-width: none;
  padding: 52px 38px 44px clamp(40px, 4.4vw, 68px);
}
.home-hero .hero__visual {
  grid-column: 2;
  grid-row: 1;
  min-height: 542px;
  background: var(--ink-soft) url("assets/roof-after.png") center 48% / cover no-repeat;
}
.home-hero h1 {
  max-width: 620px;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -.04em;
  text-shadow: none;
}
.home-hero h1::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin: 24px 0 20px;
  background: var(--copper);
}
.home-hero .lead { max-width: 33rem; font-size: 1.13rem; line-height: 1.55; }
.home-hero .btn-row { margin-top: 24px; gap: 22px; align-items: center; flex-wrap: nowrap; }
.home-hero .btn > svg { display: none; }
.home-hero .btn--ghost-light {
  position: relative;
  margin-left: 28px;
  padding-inline: 0;
  border: 0;
  border-bottom: 1px solid var(--copper-300);
  background: transparent;
}
.home-hero .btn--ghost-light::before {
  content: "OR";
  position: absolute;
  right: calc(100% + 20px);
  color: rgba(251,248,243,.55);
  font-size: .68rem;
  letter-spacing: .14em;
}
.home-hero .btn--ghost-light:hover { background: transparent; color: var(--copper-300); border-color: var(--copper-300); }
.home-hero .hero__proof {
  gap: 0;
  margin-top: 34px;
  padding-top: 20px;
  border-top-color: rgba(251,248,243,.25);
}
.home-hero .hero__proof li {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.home-hero .hero__proof li + li::before { content: ""; margin-inline: 6px; }

.home-proof { padding: 24px 0 clamp(44px, 6vw, 76px); background: var(--paper); }
.home-proof .wrap {
  display: grid;
  max-width: none;
  padding-inline: clamp(22px, 4.4vw, 68px);
  grid-template-columns: minmax(0, 2.55fr) minmax(300px, 1fr);
  grid-template-rows: auto 1fr;
  gap: 26px 40px;
  align-items: start;
}
.home-proof .proof-comparison { grid-column: 1; grid-row: 1 / span 2; margin: 0; }
.home-proof .proof-intro { grid-column: 2; grid-row: 1; }
.home-proof .proof-intro h2 { margin-top: 16px; font-size: clamp(2.1rem, 3.2vw, 3.3rem); }
.home-proof .proof-ledger { margin-top: 32px; }
.home-proof .proof-ledger div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.home-proof .proof-ledger dt {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.home-proof .proof-ledger dd { color: var(--ink-soft); font-size: .91rem; }
.home-proof .proof-note {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  margin: 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  padding: 16px 0 0;
}
.home-proof .ba { border-radius: 0; box-shadow: none; }
.home-proof .ba__label { border-radius: 0; letter-spacing: .13em; }
.home-proof .proof-projects, .home-proof .proof-more { display: none; }

.home-routing { background: var(--paper-2); }
.home-routing .section__head { margin-inline: 0; text-align: left; }
.home-routing .eyebrow--center::after { display: none; }
.home-routing .routing { grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); }
.home-routing .route {
  min-height: 0;
  padding: 30px 24px;
  background-image: none !important;
  background-color: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
}
.home-routing .route:last-child { border-right: 0; }
.home-routing .route::after, .home-routing .route .ico { display: none; }
.home-routing .route h3, .home-routing .route p { color: var(--ink); }
.home-routing .route p { color: var(--slate); }
.home-routing .route .textlink { color: var(--copper-800); }
.home-routing .route:hover { transform: none; background: rgba(255,255,255,.45); }

.home-why { background: var(--paper); border-top: 1px solid var(--line); }
.home-why .media-ph { border-radius: 0; box-shadow: none; }
.home-process { background: var(--ink); }
.home-process .steps { gap: 0; border-top: 1px solid rgba(251,248,243,.3); }
.home-process .step {
  padding: 26px 26px 8px 0;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(251,248,243,.2);
  border-radius: 0;
}
.home-process .step + .step { padding-left: 26px; }
.home-process .step:last-child { border-right: 0; }
.home-process .step h3 { color: #fff; }
.home-process .step p { color: rgba(251,248,243,.72); }

.home-reviews .review-card {
  padding: 0 28px;
  border: 0;
  border-left: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}
.home-reviews .review-card:first-child { padding-left: 0; border-left: 0; }
.home-reviews .provider-card { box-shadow: none; border-radius: 0; }
.home-areas .area-pill { padding-inline: 0; background: transparent; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; }
.home-areas .map-frame { border-radius: 0; box-shadow: none; }
.home-areas .map-frame .map-cta { border-radius: 0; }
.home-cta .cta-band { border-radius: 0; }

.capture-mode { scroll-behavior: auto; scrollbar-width: none; }
.capture-mode::-webkit-scrollbar { display: none; }
.capture-mode .site-header { position: relative; }
.capture-mode .mobile-cta { display: none !important; }

@media (min-width: 1400px) {
  .home-hero { grid-template-columns: minmax(590px, 40%) minmax(0, 60%); }
  .home-hero .hero__inner { padding-right: 38px; }
}

@media (min-width: 861px) {
  .site-header .wrap { max-width: none; padding-inline: 32px; }
  .header-inner { height: 92px; }
  .brand__mark { width: 44px; height: 50px; }
  .brand__name b { font-size: 1.65rem; }
  .brand__name span { font-size: .72rem; }
}

@media (max-width: 1040px) {
  .home-hero { grid-template-columns: 48% 52%; }
  .home-hero .hero__inner { padding-left: 40px; padding-right: 36px; }
  .home-routing .routing { grid-template-columns: 1fr 1fr; }
  .home-routing .route:nth-child(2) { border-right: 0; }
  .home-routing .route:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 760px) {
  .home-hero { grid-template-columns: 1fr; min-height: 0; }
  .home-hero .hero__inner { grid-column: 1; grid-row: 1; padding: 40px 22px 30px; }
  .home-hero .hero__visual { grid-column: 1; grid-row: 2; min-height: 300px; background-position: center; }
  .home-hero h1 { font-size: clamp(2.75rem, 12vw, 3.4rem); }
  .home-hero .lead { font-size: 1.04rem; }
  .home-hero h1::after { margin: 20px 0 16px; }
  .home-hero .btn-row { align-items: stretch; flex-wrap: wrap; margin-top: 22px; gap: 12px; }
  .home-hero .btn--ghost-light { margin-left: 0; padding: 16px 0; }
  .home-hero .btn--ghost-light::before { display: none; }
  .home-hero .hero__proof { display: flex; gap: 0; margin-top: 22px; padding-top: 16px; }
  .home-hero .hero__proof li { font-size: .65rem; }
  .home-hero .hero__proof li + li::before { display: inline; margin-inline: 9px; }
  .home-proof .wrap { grid-template-columns: 1fr; grid-template-rows: auto; }
  .home-proof .proof-intro, .home-proof .proof-comparison, .home-proof .proof-note { grid-column: 1; grid-row: auto; }
  .home-proof .proof-intro { order: 1; }
  .home-proof .proof-comparison { order: 2; }
  .home-proof .proof-note { order: 3; }
  .home-proof .proof-ledger { margin-top: 24px; }
  .home-proof .proof-ledger div { grid-template-columns: 98px 1fr; }
  .home-proof .ba { aspect-ratio: 4 / 3; }
  .home-routing .routing { grid-template-columns: 1fr; }
  .home-routing .route { border-right: 0; border-bottom: 1px solid var(--line); }
  .home-process .steps { border-top: 0; }
  .home-process .step, .home-process .step + .step { padding: 22px 0; border-right: 0; border-top: 1px solid rgba(251,248,243,.25); }
  .home-reviews .review-card, .home-reviews .review-card:first-child { padding: 24px 0; border-left: 0; border-top: 1px solid var(--line); }
}
