/* NorthPoint Properties — ottonix.com rebuild 2026-08-04.
   Tokens: open-design `dashboard` system recolored to Ottonix green #1cb685
   (the crm.ottonix.com/app system Steven approved) + the shadcn neutral light
   block from the same repo. Zero freehand palette. Geist Variable self-hosted. */

@font-face {
  font-family: "Geist Variable";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("geist-latin-wght-normal.woff2?v=955eac44") format("woff2-variations");
}

:root {
  /* dark treatment (default) — crm.ottonix.com/app tokens verbatim */
  --background: #0a0c10;
  --surface: #0e1116;
  --card: #14181e;
  --foreground: #e7ebef;
  --muted-foreground: #8b95a1;
  --primary: #1cb685;
  --primary-foreground: #04130d;
  --accent-surface: #15241d;
  --accent-foreground: #35d8a3;
  --border: #222a33;
  --input: #1e242c;
  --ring: #1cb685;
  --destructive: #f04444;
  --radius: 0.625rem;
  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.4);
  --photo-edge: rgba(255, 255, 255, 0.08);
}

html.light {
  /* light treatment — shadcn neutral :root block from the same index.css,
     primary swapped to the brand green (same accent var, not a new color) */
  --background: #ffffff;
  --surface: #f7f8f9;
  --card: #ffffff;
  --foreground: #16191d;
  --muted-foreground: #5c6570;
  /* #0e7a58 = 5.3:1 against white — #159c72 failed WCAG AA on buttons
     (adversarial review 08-04); same hue family, already the light accent. */
  --primary: #0e7a58;
  --primary-foreground: #ffffff;
  --accent-surface: #e9f7f1;
  --accent-foreground: #0e7a58;
  --border: #e4e7ea;
  --input: #f2f4f5;
  --ring: #0e7a58;
  --shadow-card: 0 1px 3px rgba(16, 24, 32, 0.07);
  --photo-edge: rgba(0, 0, 0, 0.06);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: "Geist Variable", system-ui, -apple-system, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

::selection { background: var(--primary); color: var(--primary-foreground); }

/* ---- type scale ---- */
h1, h2, h3, h4 {
  font-weight: 640;
  letter-spacing: -0.025em;
  line-height: 1.12;
  text-wrap: balance;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.3rem); }
h2 { font-size: clamp(1.55rem, 2.8vw, 2.15rem); }
h3 { font-size: 1.17rem; letter-spacing: -0.015em; }
p  { text-wrap: pretty; }

a { color: var(--accent-foreground); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 560;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent-foreground);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--accent-foreground);
}

.lede {
  font-size: 1.17rem;
  color: var(--muted-foreground);
  max-width: 56ch;
}

.muted { color: var(--muted-foreground); }
.small { font-size: 0.9rem; }
.tiny  { font-size: 0.8125rem; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---- header ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--background) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--foreground);
  font-weight: 640; font-size: 1.06rem; letter-spacing: -0.02em;
}
.brand:hover { text-decoration: none; }
.brand svg { color: var(--primary); flex: none; }
.brand small {
  font-weight: 460; color: var(--muted-foreground);
  font-size: 0.78rem; letter-spacing: 0.02em;
}
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a {
  color: var(--muted-foreground);
  font-size: 0.95rem; font-weight: 500;
  padding: 6px 2px;
}
.site-nav a:hover { color: var(--foreground); text-decoration: none; }
.site-nav a[aria-current="page"] { color: var(--foreground); }

/* ---- buttons (shadcn shapes) ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: var(--radius);
  font-weight: 560; font-size: 0.98rem;
  padding: 12px 22px;
  min-height: 44px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 80ms ease, background 120ms ease, border-color 120ms ease;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 2px solid var(--ring); outline-offset: 2px; }
.btn.primary { background: var(--primary); color: var(--primary-foreground); }
.btn.primary:hover { background: color-mix(in srgb, var(--primary) 88%, var(--foreground) 12%); }
.btn.ghost {
  background: transparent; color: var(--foreground);
  border-color: var(--border);
}
.btn.ghost:hover { border-color: var(--muted-foreground); }
.btn svg { flex: none; }

/* ---- hero ---- */
.hero { padding: 84px 0 72px; }
.hero .wrap {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 56px; align-items: center;
}
.hero-actions { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.hero h1 { margin-bottom: 18px; }
.hero .lede { margin-bottom: 0; }

.hero-note {
  margin-top: 26px;
  display: flex; align-items: center; gap: 10px;
  color: var(--muted-foreground); font-size: 0.9rem;
}
.hero-note svg { color: var(--accent-foreground); flex: none; }

figure.photo {
  border-radius: calc(var(--radius) * 1.4);
  overflow: hidden;
  border: 1px solid var(--photo-edge);
  box-shadow: var(--shadow-card);
  background: var(--card);
}
figure.photo img { width: 100%; height: auto; }
figure.photo figcaption {
  padding: 10px 16px;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
figure.photo figcaption svg { color: var(--accent-foreground); flex: none; }

/* ---- trust strip ---- */
.trust-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); }
.trust-strip .wrap {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; padding-top: 22px; padding-bottom: 22px;
}
.trust-item { display: flex; align-items: center; gap: 12px; font-size: 0.92rem; font-weight: 510; }
.trust-item svg { color: var(--primary); flex: none; }
.trust-item span { color: var(--muted-foreground); font-weight: 460; }

/* ---- sections ---- */
.block { padding: 88px 0; }
.block.tint { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { max-width: 60ch; margin-bottom: 44px; }
.section-head p { color: var(--muted-foreground); margin-top: 12px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ---- steps ---- */
.step { padding: 26px 26px 28px; background: var(--card); border: 1px solid var(--border); border-radius: calc(var(--radius) * 1.4); box-shadow: var(--shadow-card); }
.step .num {
  font-size: 2.6rem; font-weight: 640; letter-spacing: -0.04em;
  color: var(--primary); line-height: 1; display: block; margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted-foreground); font-size: 0.97rem; }

/* ---- cards ---- */
.card { padding: 26px; background: var(--card); border: 1px solid var(--border); border-radius: calc(var(--radius) * 1.4); box-shadow: var(--shadow-card); }
.card h3 { margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.card h3 svg { color: var(--primary); flex: none; }
.card p { color: var(--muted-foreground); font-size: 0.97rem; }

/* ---- fit / not-fit ---- */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.fit-col { padding: 28px; border-radius: calc(var(--radius) * 1.4); border: 1px solid var(--border); background: var(--card); box-shadow: var(--shadow-card); }
.fit-col.yes { background: var(--accent-surface); border-color: color-mix(in srgb, var(--primary) 30%, var(--border)); }
.fit-col h3 { margin-bottom: 16px; }
.fit-col ul { list-style: none; display: grid; gap: 12px; }
.fit-col li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.97rem; color: var(--muted-foreground); }
.fit-col li svg { flex: none; margin-top: 3px; }
.fit-col.yes li svg { color: var(--primary); }
.fit-col.no li svg { color: var(--muted-foreground); }
.fit-col.yes li strong, .fit-col.no li strong { color: var(--foreground); font-weight: 560; }

/* ---- FAQ ---- */
.faq { display: grid; gap: 12px; max-width: 780px; }
.faq details {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-card);
}
.faq summary {
  cursor: pointer; list-style: none;
  padding: 18px 22px;
  font-weight: 560; font-size: 1.02rem;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 1.3rem; font-weight: 400; color: var(--muted-foreground);
  transition: transform 120ms ease; line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 22px 20px; color: var(--muted-foreground); max-width: 66ch; }

/* ---- lead form ---- */
.lead-form-wrap {
  max-width: 660px; margin: 0 auto;
  background: var(--card); border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.8);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.lead-form-wrap > h2 { margin-bottom: 6px; }
.lead-form-wrap > .small { margin-bottom: 26px; }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label {
  display: block; font-size: 0.88rem; font-weight: 550;
  margin-bottom: 7px;
}
.field label .opt { color: var(--muted-foreground); font-weight: 440; }
.field input, .field textarea {
  width: 100%;
  background: var(--input);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
  font: inherit; font-size: 0.98rem;
  padding: 12px 14px;
  min-height: 44px;
}
.field textarea { resize: vertical; min-height: 88px; }
.field input:focus, .field textarea:focus {
  outline: 2px solid var(--ring); outline-offset: -1px;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-foreground); opacity: 0.7; }

.consent-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin: 22px 0;
}
.consent-check { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; }
.consent-check input {
  width: 18px; height: 18px; margin-top: 3px; flex: none;
  accent-color: var(--primary);
}
.consent-check .txt { font-size: 0.85rem; color: var(--muted-foreground); line-height: 1.55; }
.consent-links { font-size: 0.85rem; color: var(--muted-foreground); margin-top: 10px; padding-left: 30px; }

.form-msg { border-radius: var(--radius); padding: 13px 16px; margin-bottom: 20px; font-size: 0.95rem; }
.form-msg.ok { background: var(--accent-surface); color: var(--accent-foreground); border: 1px solid color-mix(in srgb, var(--primary) 35%, transparent); }
.form-msg.err { background: color-mix(in srgb, var(--destructive) 12%, var(--card)); color: var(--destructive); border: 1px solid color-mix(in srgb, var(--destructive) 35%, transparent); }

/* ---- contact page ---- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.contact-list { display: grid; gap: 4px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--border); }
.contact-item:last-child { border-bottom: 0; }
.contact-item svg { color: var(--primary); flex: none; margin-top: 4px; }
.contact-item h3 { font-size: 0.88rem; font-weight: 550; color: var(--muted-foreground); margin-bottom: 2px; letter-spacing: 0.02em; }
.contact-item p, .contact-item a { font-size: 1.02rem; color: var(--foreground); }
.contact-page .lead-form-wrap { margin: 0; }

/* ---- about page ---- */
.founder-card {
  display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: center;
  background: var(--card); border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.4); padding: 28px; box-shadow: var(--shadow-card);
  max-width: 640px;
}
.founder-card .avatar {
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--accent-surface); color: var(--accent-foreground);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; font-weight: 640; letter-spacing: -0.02em;
  border: 1px solid color-mix(in srgb, var(--primary) 30%, var(--border));
  flex: none; overflow: hidden;
}
.founder-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.founder-card h3 { margin-bottom: 2px; }
.founder-card .role { color: var(--accent-foreground); font-size: 0.88rem; font-weight: 550; margin-bottom: 8px; }
.founder-card p { color: var(--muted-foreground); font-size: 0.95rem; }

/* ---- legal pages ---- */
.legal { max-width: 760px; }
.legal h1 { margin-bottom: 8px; }
.legal .updated { color: var(--muted-foreground); font-size: 0.9rem; margin-bottom: 40px; }
.legal h2 { font-size: 1.25rem; margin: 36px 0 10px; }
.legal p, .legal li { color: var(--muted-foreground); font-size: 0.98rem; margin-bottom: 12px; }
.legal ul { padding-left: 22px; }

/* ---- CTA band ---- */
.cta-band { text-align: center; }
.cta-band .wrap { max-width: 720px; }
.cta-band h2 { margin-bottom: 12px; }
.cta-band p { color: var(--muted-foreground); margin-bottom: 28px; }

/* ---- footer ---- */
.site-footer { border-top: 1px solid var(--border); background: var(--surface); padding: 56px 0 0; }
.site-footer .wrap.cols {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
  padding-bottom: 44px;
}
.site-footer .footer-h { font-size: 0.85rem; font-weight: 560; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-foreground); margin-bottom: 14px; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 640; margin-bottom: 12px; }
.footer-brand svg { color: var(--primary); }
.site-footer p, .site-footer address { font-style: normal; font-size: 0.9rem; color: var(--muted-foreground); margin-bottom: 8px; }
.site-footer address a { color: var(--muted-foreground); }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: var(--muted-foreground); font-size: 0.92rem; }
.footer-links a:hover { color: var(--foreground); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
}
.footer-bottom .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.8125rem; color: var(--muted-foreground); }

/* ---- skip link ---- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--primary); color: var(--primary-foreground);
  padding: 10px 18px; border-radius: var(--radius);
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---- responsive ---- */
@media (max-width: 900px) {
  .hero { padding: 56px 0 48px; }
  .hero .wrap, .grid-2, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .grid-3 { grid-template-columns: 1fr; }
  .trust-strip .wrap { grid-template-columns: 1fr 1fr; gap: 14px; }
  .fit-grid { grid-template-columns: 1fr; }
  .block { padding: 60px 0; }
  .site-nav { gap: 16px; }
  .site-nav a.nav-plain { display: none; }
  .lead-form-wrap { padding: 26px 20px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .site-footer .wrap.cols { grid-template-columns: 1fr; gap: 28px; }
}

/* ===================================================================
   TREATMENT C — "wbh": the we-buy-houses category look, structure
   cloned from real leaders (HomeVestors/webuyuglyhouses + Express
   Homebuyers folds, screenshots in the review card 2026-08-05).
   Warm light surfaces, navy ink, burnt-orange CTA (#C2410C = 5.2:1
   with white, AA-pass; the category's orange, darkened for contrast).
   =================================================================== */
html.wbh {
  --background: #fbfcfd;
  --surface: #f2f5f8;
  --card: #ffffff;
  --foreground: #1c2b3a;
  --muted-foreground: #52616f;
  --primary: #1857b8;
  --primary-foreground: #ffffff;
  --accent-surface: #e8f1fc;
  --accent-foreground: #12448f;
  --border: #e2e8f0;
  --input: #ffffff;
  --ring: #1857b8;
  --navy: #16324f;
  --navy-ink: #0d1b2a;
  --shadow-card: 0 1px 3px rgba(22, 50, 79, 0.10);
  --photo-edge: rgba(22, 50, 79, 0.10);
}

/* topbar: Express-style utility strip */
.wbh-topbar { background: var(--navy); color: #e8eef4; font-size: 0.85rem; }
.wbh-topbar .wrap { display: flex; justify-content: space-between; align-items: center; padding-top: 8px; padding-bottom: 8px; gap: 12px; }
.wbh-topbar a { color: #ffffff; font-weight: 650; text-decoration: none; display: inline-flex; align-items: center; gap: 7px; }
.wbh-topbar a:hover { text-decoration: underline; }

html.wbh .site-header { background: #ffffff; }
html.wbh .brand, html.wbh .brand small { color: var(--navy); }
html.wbh .brand svg { color: var(--primary); }
html.wbh .site-nav a.nav-plain { color: #3d4f61; font-weight: 550; }
html.wbh .site-nav a.nav-plain:hover { color: var(--navy-ink); }
html.wbh .site-nav .btn.primary { border-radius: 999px; font-weight: 650; }

/* hero: full-bleed real photo + navy legibility overlay + form card */
.hero-wbh { position: relative; overflow: hidden; }
.hero-wbh .bg { position: absolute; inset: 0; }
.hero-wbh .bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-wbh .bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(13,27,42,0.90) 0%, rgba(13,27,42,0.72) 42%, rgba(13,27,42,0.38) 100%);
}
.hero-wbh .wrap {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px;
  padding-top: 64px; padding-bottom: 72px; align-items: center;
}
.hero-wbh h1 {
  color: #ffffff; font-weight: 720;
  font-size: clamp(2.3rem, 4.9vw, 3.55rem);
  margin-bottom: 16px; letter-spacing: -0.02em;
}
.hero-wbh .sub { color: #dfe7ee; font-size: 1.22rem; font-weight: 500; max-width: 48ch; }
.hero-wbh .hero-points { list-style: none; margin-top: 26px; display: grid; gap: 12px; }
.hero-wbh .hero-points li { display: flex; gap: 12px; align-items: center; color: #ffffff; font-size: 1.02rem; font-weight: 550; }
.hero-wbh .hero-points svg { color: #8ec5fa; flex: none; }
.hero-wbh .hero-phone { margin-top: 28px; color: #cfd9e2; font-size: 0.98rem; }
.hero-wbh .hero-phone a { color: #ffffff; font-weight: 700; font-size: 1.15rem; }

.hero-form-card {
  background: var(--card); border-radius: 14px;
  box-shadow: 0 12px 40px rgba(13, 27, 42, 0.35);
  padding: 28px 26px;
}
.hero-form-card h2 { font-size: 1.35rem; margin-bottom: 4px; color: var(--navy-ink); }
.hero-form-card .small { margin-bottom: 16px; }
.hero-form-card .field { margin-bottom: 12px; }
.hero-form-card .consent-block { margin: 14px 0; padding: 12px; }
.hero-form-card .btn.primary { width: 100%; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 15px 22px; font-size: 1rem; }

/* badge strip: honest trust items, category styling */
html.wbh .trust-strip { background: #ffffff; }
html.wbh .trust-item { font-weight: 600; color: var(--navy); font-size: 0.94rem; }
html.wbh .trust-item svg { color: var(--primary); }

/* steps: numbered circles */
html.wbh .step { border-top: 4px solid var(--primary); }
html.wbh .step .num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent-surface); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 720;
}
html.wbh h2 { color: var(--navy-ink); font-weight: 700; }
html.wbh .eyebrow { color: var(--accent-foreground); }
html.wbh .btn.primary { font-weight: 650; }
html.wbh .fit-col.yes { background: #eaf4ec; border-color: #bcd8c2; }
html.wbh .fit-col.yes li svg { color: #2f7d43; }
html.wbh .btn.ghost { border-color: var(--navy); color: var(--navy); }

@media (max-width: 900px) {
  .hero-wbh .wrap { grid-template-columns: 1fr; gap: 32px; padding-top: 44px; padding-bottom: 52px; }
  .wbh-topbar .wrap { flex-direction: column; gap: 2px; }
}

/* ---- testimonial cards (renders real quotes; preview may show samples) ---- */
.t-card { position: relative; display: flex; flex-direction: column; }
.t-card > p { color: var(--foreground); font-size: 0.98rem; flex: 1; }
.t-stars { display: flex; align-items: center; gap: 7px; color: var(--accent-foreground); font-size: 0.8rem; font-weight: 650; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; }
.t-head { display: flex; align-items: center; gap: 10px; margin-top: 16px; font-size: 0.88rem; font-weight: 600; color: var(--muted-foreground); }
.t-head img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); }
.sample-chip {
  position: absolute; top: 10px; right: 10px;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted-foreground); border: 1px dashed var(--border);
  border-radius: 4px; padding: 2px 7px; background: var(--surface);
}

/* ---- "even if" situations grid (Papa-pattern, 2026-08-07) ---- */
.sit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 28px; max-width: 900px; }
.sit-item { display: flex; align-items: flex-start; gap: 10px; font-size: 1rem; font-weight: 530; color: var(--foreground); padding: 10px 0; border-bottom: 1px solid var(--border); }
.sit-item svg { color: var(--primary); flex: none; margin-top: 4px; }
@media (max-width: 700px) { .sit-grid { grid-template-columns: 1fr; } }

/* ---- round 6: compare table, neighborhood chips, header polish ---- */
.compare-wrap { overflow-x: auto; }
table.compare { width: 100%; border-collapse: collapse; background: var(--card); border: 1px solid var(--border); border-radius: calc(var(--radius) * 1.4); overflow: hidden; box-shadow: var(--shadow-card); }
table.compare th, table.compare td { padding: 14px 18px; text-align: left; font-size: 0.96rem; border-bottom: 1px solid var(--border); }
table.compare thead th { font-weight: 700; color: var(--navy-ink, var(--foreground)); background: var(--surface); }
table.compare thead th.us { background: var(--primary); color: var(--primary-foreground); }
table.compare td:first-child { font-weight: 600; color: var(--foreground); width: 26%; }
table.compare td { color: var(--muted-foreground); }
table.compare td.us { color: var(--foreground); font-weight: 550; background: var(--accent-surface); }
table.compare td.us svg, table.compare th.us svg { color: var(--primary); vertical-align: -2px; margin-right: 6px; }
table.compare tr:last-child td { border-bottom: 0; }

.hood-chips { display: flex; flex-wrap: wrap; gap: 10px; align-content: flex-start; }
.hood-chips span { background: var(--card); border: 1px solid var(--border); border-radius: 999px; padding: 8px 16px; font-size: 0.9rem; font-weight: 550; color: var(--foreground); box-shadow: var(--shadow-card); }

.types-grid .card p { margin-top: 6px; }
.photo-band figcaption { font-size: 0.8rem; }

/* header/topbar spacing polish (round-6 feedback: top button felt cramped) */
.site-header .wrap { height: 68px; }
.site-nav { gap: 22px; }
.site-nav .btn.primary { padding: 10px 20px; min-height: 40px; margin-left: 6px; white-space: nowrap; }
.wbh-topbar a { white-space: nowrap; }
.hero-form-card .btn.primary { white-space: nowrap; }
@media (max-width: 900px) {
  .site-nav { gap: 12px; }
  .site-nav .btn.primary { padding: 9px 14px; font-size: 0.9rem; margin-left: 0; }
}

/* ---- 2026-08-13: homepage rebuilt to the category-leader layout ----
   Hero accent word, stat strip, centered section heads, numbered step tiles,
   and the six-card why grid. Tokens only, no new colors introduced. */

.hero-wbh .hero-kicker {
  display: block; color: var(--primary); font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.09em; text-transform: uppercase; margin-bottom: 18px;
}
.hero-wbh h1 em { font-style: normal; color: var(--primary); }
.hero-wbh .hero-body {
  color: #cfdae4; font-size: 1.02rem; max-width: 46ch; margin-top: 14px;
}

/* Stat strip under the hero. Scrolls sideways on narrow screens rather than
   wrapping into a ragged stack. */
.stat-bar { background: var(--card); border-bottom: 1px solid var(--border); }
.stat-bar .wrap {
  display: flex; gap: 34px; align-items: center; justify-content: space-between;
  padding-top: 20px; padding-bottom: 20px; overflow-x: auto;
}
.stat-item { display: flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.stat-item svg { color: var(--primary); flex: 0 0 auto; }
.stat-item div { display: flex; flex-direction: column; line-height: 1.25; }
.stat-item strong { color: var(--foreground); font-size: 0.95rem; font-weight: 700; }
.stat-item span { color: var(--muted-foreground); font-size: 0.83rem; }

.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center p { margin-left: auto; margin-right: auto; max-width: 60ch; }

/* Numbered step tiles: filled square, matching the category convention. */
.step-grid .step .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--primary); color: var(--primary-foreground);
  font-weight: 700; font-size: 1.05rem; margin-bottom: 16px;
}

.why-grid { align-items: stretch; }
.why-card { display: flex; flex-direction: column; }
.why-card h3 { margin-top: 14px; font-size: 1.05rem; }
.why-card p { margin-top: 8px; color: var(--muted-foreground); }
.why-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent-surface); color: var(--primary); flex: 0 0 auto;
}

.wrap.narrow { max-width: 820px; }
.faq { max-width: none; }
.center-cta { text-align: center; margin-top: 26px; }

@media (max-width: 720px) {
  .stat-bar .wrap { gap: 22px; justify-content: flex-start; }
  .section-head.center { text-align: left; }
}

/* Proof band: dark full-width section, copy left, four stat tiles right. */
.proof-band { background: var(--navy-ink); color: #e8eef4; padding: 76px 0; }
.proof-band .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
/* Brand orange is only 3.36:1 on this near-black band and the darker accent
   token is 2.38:1, which fails outright. This is a lightened variant of the same
   hue used ONLY on dark surfaces: 5.78:1, passes AA for small text. Measured,
   not eyeballed. */
.proof-band { --accent-on-dark: #7cb8f7; }
html.wbh .proof-band .eyebrow,
.proof-band .eyebrow { color: var(--accent-on-dark); }
.proof-band .proof-tile strong { color: var(--accent-on-dark); }
/* ⚠ Must out-specify `html.wbh h2` (line ~499), which sets every h2 to
   --navy-ink. That selector is 0,1,2; a plain `.proof-band h2` is 0,1,1 and
   LOSES regardless of source order, which rendered this headline navy-on-navy
   and completely invisible. Any dark-background section added later needs the
   same treatment. Caught by looking at a screenshot, not by the build. */
html.wbh .proof-band h2,
.proof-band .proof-copy h2 { color: #ffffff; margin-top: 12px; }
.proof-band .proof-copy p { color: #b9c6d3; margin-top: 16px; max-width: 52ch; }
.proof-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.proof-tile {
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: calc(var(--radius) * 1.4); padding: 26px 24px;
}
.proof-tile strong {
  display: block; color: var(--primary); font-size: 2.1rem; font-weight: 750;
  line-height: 1.05; letter-spacing: -0.02em;
}
.proof-tile span { display: block; color: #b9c6d3; font-size: 0.9rem; margin-top: 8px; }
@media (max-width: 860px) {
  .proof-band { padding: 52px 0; }
  .proof-band .wrap { grid-template-columns: 1fr; gap: 32px; }
  .proof-tile strong { font-size: 1.8rem; }
}

/* ---- 2026-08-14: header, single-field hero, comparison + review treatments ---- */

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

/* Phone sits in the header beside the CTA, as the donor arranges it. */
.nav-phone { display: inline-flex; align-items: center; gap: 7px; color: var(--navy-ink); font-size: 0.93rem; }
.nav-phone svg { color: var(--primary); flex: none; }
.nav-phone span { font-weight: 640; }
.nav-phone b { color: var(--primary); font-weight: 700; }
.nav-phone:hover { text-decoration: none; }
@media (max-width: 1040px) { .nav-phone span { display: none; } }
@media (max-width: 860px)  { .nav-phone { display: none; } }

/* Hero is now ONE column over the full-bleed photo (the form card is gone). */
html.wbh .hero-wbh .wrap { grid-template-columns: 1fr; display: block; }
.hero-col { max-width: 42rem; }

/* Single address field + button, one white pill. */
.hero-quick {
  display: flex; align-items: center; gap: 8px;
  background: #ffffff; border-radius: 999px; padding: 8px;
  margin-top: 28px; max-width: 34rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}
.hero-quick input {
  flex: 1 1 auto; min-width: 0; border: 0; background: transparent;
  padding: 12px 18px; font: inherit; font-size: 1rem; color: var(--navy-ink);
}
.hero-quick input::placeholder { color: #7d8894; }
.hero-quick input:focus { outline: none; }
.hero-quick:focus-within { box-shadow: 0 0 0 3px rgba(124, 184, 247, 0.55), 0 10px 30px rgba(0, 0, 0, 0.22); }
.hero-quick .btn { border-radius: 999px; flex: 0 0 auto; white-space: nowrap; }

.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.hero-chips .chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.22);
  color: #eef4f9; border-radius: 999px; padding: 8px 15px; font-size: 0.86rem; font-weight: 550;
}
.hero-chips .chip svg { color: #7cb8f7; flex: none; }

/* Comparison: our column first and filled; the alternatives read as muted
   column headers, with losing values marked so the eye finds them. */
table.compare thead th.alt {
  text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.78rem;
  color: var(--muted-foreground); font-weight: 640;
}
table.compare td.pos { color: #12653f; font-weight: 640; }
table.compare td.neg { color: #a8321c; }
table.compare td.us.pos { color: #12653f; }

/* Review cards: initials disc, name, town. No photos, no invented faces. */
.t-avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 999px; flex: none;
  background: var(--accent-surface); color: var(--primary);
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.01em;
}
.t-who { display: flex; flex-direction: column; line-height: 1.3; }
.t-who strong { color: var(--foreground); font-size: 0.95rem; font-weight: 660; }
.t-who em { font-style: normal; color: var(--muted-foreground); font-size: 0.84rem; }

.review-links { display: flex; flex-wrap: wrap; gap: 34px; justify-content: center; margin-top: 40px; }
.review-links a { color: var(--navy-ink); font-weight: 640; font-size: 0.98rem; }
.review-links a:hover { color: var(--primary); }

.review-grid { align-items: start; }
.review-cta { text-align: center; margin-top: 48px; }
.review-cta p { margin-bottom: 18px; }

@media (max-width: 620px) {
  .hero-quick { flex-direction: column; align-items: stretch; border-radius: var(--radius); }
  .hero-quick .btn { width: 100%; border-radius: var(--radius); }
}

/* ---- 2026-08-14 pass 2: photo why-cards, star ratings, closing CTA band ---- */

/* Why cards now lead with a real photo of one of Steven's own properties. */
.why-card { padding: 0; overflow: hidden; }
.why-shot { margin: 0; aspect-ratio: 3 / 2; overflow: hidden; background: var(--surface); }
.why-shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.why-body { padding: 22px 24px 26px; }
.why-body h3 { margin-top: 0; }
.why-body p { margin-top: 8px; color: var(--muted-foreground); }

/* Stars. Gold reads as a rating everywhere; the brand orange would read as a
   decorative flourish and get ignored. */
.stars { display: inline-flex; gap: 2px; color: #e8a417; line-height: 1; }
.t-card .stars { margin-bottom: 14px; }

.hero-rating { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px; margin-top: 22px; }
.hero-rating .stars { color: #ffc44d; }
.hero-rating .rating-text { color: #f2f7fb; font-size: 0.95rem; }
.hero-rating .rating-text b { font-weight: 750; }
.hero-rating .chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.22);
  color: #eef4f9; border-radius: 999px; padding: 6px 13px; font-size: 0.83rem; font-weight: 550;
}
.hero-rating .chip svg { color: #ffc44d; flex: none; }

/* Closing CTA: full-bleed warm band, centred, form card sitting inside it. */
.cta-close {
  background: linear-gradient(105deg, #0f3f86 0%, #1857b8 52%, #7cb8f7 100%);
  padding: 84px 0 92px; text-align: center;
}
/* Direct child ONLY. The broad `.cta-close h2` also matched the heading inside
   the white form card nested in this band and rendered it white-on-white —
   invisible, exactly the bug the proof band had. Scope band text to the band. */
html.wbh .cta-close > .wrap > h2 { color: #ffffff; }
.cta-close > .wrap > p { color: #dbe9fb; margin-top: 14px; max-width: 52ch; margin-left: auto; margin-right: auto; }
.cta-close .lead-form-wrap {
  max-width: 640px; margin: 34px auto 0; text-align: left;
  background: var(--card); border-radius: calc(var(--radius) * 1.6);
  padding: 30px 30px 34px; box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}
@media (max-width: 620px) {
  .cta-close { padding: 56px 0 62px; }
  .cta-close .lead-form-wrap { padding: 22px 20px 26px; }
}

/* Rating badge above the review grid. */
.rating-badge {
  display: flex; align-items: center; justify-content: center; gap: 30px;
  max-width: 460px; margin: 0 auto 40px; padding: 22px 30px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.4); box-shadow: var(--shadow-card);
}
.rb-score { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.rb-score strong { font-size: 2.1rem; font-weight: 750; letter-spacing: -0.02em; color: var(--foreground); line-height: 1; }
.rb-rule { width: 1px; align-self: stretch; background: var(--border); }
.rb-count { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.rb-count strong { font-size: 1.5rem; font-weight: 720; color: var(--foreground); line-height: 1; }
.rb-count span { color: var(--muted-foreground); font-size: 0.87rem; }

/* Closing CTA is now a single address box, matching the donor. */
.cta-quick { margin: 34px auto 0; }
.cta-fine { color: #dbe9fb; font-size: 0.9rem; margin-top: 16px; }

/* ---- blog: index grid, homepage strip, article page ---- */
.blog-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; max-width: none; }
.blog-all { color: var(--primary); font-weight: 640; white-space: nowrap; }
.post-grid { align-items: stretch; }
.post-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; color: inherit; }
.post-card:hover { text-decoration: none; border-color: var(--primary); }
.post-shot { margin: 0; aspect-ratio: 3 / 2; overflow: hidden; background: var(--surface); }
.post-shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.post-meta { color: var(--muted-foreground); font-size: 0.82rem; }
.post-card h3 { font-size: 1.06rem; line-height: 1.25; }
.post-card p { color: var(--muted-foreground); font-size: 0.94rem; flex: 1; }
.post-more { color: var(--primary); font-weight: 640; font-size: 0.93rem; }

.post-page h1 { margin: 10px 0 14px; }
.post-page .lede { margin-bottom: 26px; }
.post-back { display: inline-block; color: var(--muted-foreground); font-size: 0.9rem; margin-bottom: 18px; }
.post-hero { margin: 0 0 34px; border-radius: calc(var(--radius) * 1.4); overflow: hidden; border: 1px solid var(--border); }
.post-hero img { width: 100%; height: auto; display: block; }
.post-page h2 { font-size: 1.4rem; margin: 34px 0 12px; }
.post-page p { color: var(--muted-foreground); margin-bottom: 14px; max-width: 68ch; }
.post-cta {
  margin-top: 48px; padding: 32px; text-align: center;
  background: var(--accent-surface); border-radius: calc(var(--radius) * 1.4);
}
.post-cta h3 { margin-bottom: 8px; }
.post-cta .btn { margin-top: 18px; }

@media (max-width: 760px) {
  .blog-head { flex-direction: column; align-items: flex-start; }
}
