/* ============================================================
   hohm site — design tokens (B&W fintech)
   ============================================================ */
:root {
  --bg:           #050505;
  --bg-elev:      #0e0e0e;
  --ink:          #f5f5f5;
  --ink-dim:      #d4d4d8;
  --ink-mute:     #8f8f9a;
  --line:         rgba(255,255,255,0.07);
  --line-strong:  rgba(255,255,255,0.13);
  --accent:       #ffffff;
  --accent-glow:  rgba(255,255,255,0.10);
  --glass:        rgba(255,255,255,0.03);
  --glass-strong: rgba(255,255,255,0.055);
  --glass-line:   rgba(255,255,255,0.09);
  --radius:       16px;
  --radius-lg:    24px;
  --radius-sm:    8px;
  --sans:         "Geist", ui-sans-serif, system-ui, sans-serif;
  --mono:         "Geist Mono", ui-monospace, monospace;
  --max:          1320px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* Visible focus for keyboard users (WCAG 2.4.7) */
:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible, .choice:focus-visible, .faq-q:focus-visible, .offer-close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Skip link (WCAG 2.4.1) */
.skip-link {
  position: absolute; top: -60px; left: 16px; z-index: 300;
  background: #fff; color: #000;
  padding: 12px 20px; border-radius: 8px;
  font-weight: 600; font-size: 14px; text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }
body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  letter-spacing: -0.01em;
}

/* Atmospheric — very subtle grain + vignette */
body::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(80vw 60vw at 60% -10%, rgba(255,255,255,0.022), transparent 60%),
    radial-gradient(60vw 40vw at -10% 40%, rgba(255,255,255,0.012), transparent 60%);
  pointer-events: none; z-index: 0;
}
#root { position: relative; z-index: 2; }

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3 { margin: 0; font-weight: 800; line-height: 1; }

.h-display {
  font-size: clamp(38px, 5.5vw, 76px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
}
.h-section {
  font-size: clamp(28px, 3.4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.0;
}
.h-card {
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow .dot {
  display: inline-block; width: 5px; height: 5px; border-radius: 50%;
  background: var(--ink-dim); flex-shrink: 0;
}
.italic { font-style: italic; }
.margintop-2 { display: inline-block; margin-top: 8px; }
.accent-text { color: var(--accent); }
.dim-text { color: var(--ink-dim); }

/* ============================================================
   Layout
   ============================================================ */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 720px) { .container { padding: 0 20px; } }
.section { padding: clamp(72px, 9vw, 140px) 0; position: relative; }

/* ============================================================
   Buttons
   ============================================================ */
.bento {
  display: grid; grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(120px, auto); gap: 8px;
}
@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(6,1fr); grid-auto-rows: minmax(130px, auto); }
}
@media (max-width: 640px) {
  .bento { grid-template-columns: repeat(2,1fr); grid-auto-rows: minmax(130px, auto); }
}
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 18px; border-radius: 999px;
  font-weight: 600; text-decoration: none; cursor: pointer;
  border: 1px solid transparent; color: inherit;
  transition: color 0.3s cubic-bezier(0.2,0.8,0.2,1),
              border-color 0.3s cubic-bezier(0.2,0.8,0.2,1),
              box-shadow 0.3s cubic-bezier(0.2,0.8,0.2,1),
              transform 0.3s cubic-bezier(0.2,0.8,0.2,1);
  position: relative; overflow: hidden; display: inline-flex;
}
.btn::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.3s;
}
.btn:hover::before { background: rgba(255,255,255,0.06); }
.btn:active { transform: translateY(1px) scale(0.99); }
.btn:disabled, .btn[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
  filter: grayscale(0.3);
  pointer-events: none;
}

.btn .arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(0,0,0,0.18);
  transition: transform 0.3s cubic-bezier(0.2,0.8,0.2,1);
  flex-shrink: 0;
}
.btn:hover .arrow { transform: translateX(3px); }

.btn-primary {
  background: #fff;
  color: #000;
  box-shadow: 0 1px 3px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.12);
}
.btn-primary:hover {
  background: #e8e8e8;
  box-shadow: 0 8px 32px rgba(255,255,255,0.14), 0 1px 0 rgba(255,255,255,0.2);
  transform: translateY(-1px);
}
.btn-primary .arrow { background: rgba(0,0,0,0.15); }

.btn-ghost {
  background: var(--glass);
  color: var(--ink);
  border-color: var(--glass-line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-1px);
}

/* 40px is fine for pointer devices; touch devices get the 44px minimum. */
.btn-sm { height: 40px; padding: 0 18px; font-size: 13px; }
@media (pointer: coarse) { .btn-sm { height: 44px; } }

/* ============================================================
   Glass primitive
   ============================================================ */
.glass {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-line);
  border-radius: var(--radius);
  position: relative;
}
.glass::after {
  content: "";
  position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* ============================================================
   NAV
   ============================================================ */
.nav-wrap {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 32px;
  display: flex; justify-content: center;
  pointer-events: none;
}
.nav {
  pointer-events: auto;
  display: flex; align-items: center; gap: 12px;
  padding: 6px 8px 6px 16px;
  position: relative;
  border-radius: 999px;
  background: rgba(5,5,5,0.5);
  border: 1px solid var(--glass-line);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  width: min(100%, 940px);
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.nav--scrolled {
  background: rgba(5,5,5,0.85);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.nav-logo {
  font-size: 24px; font-weight: 700; letter-spacing: -0.04em;
  line-height: 1; display: flex; align-items: center; gap: 9px;
  color: var(--ink); text-decoration: none;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.8; }
.nav-logo .mark {
  width: 22px; height: 22px;
  background: #fff;
  border-radius: 5px 5px 5px 50%;
  display: inline-block;
  transform: rotate(-8deg);
  position: relative; flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1);
}
.nav-logo:hover .mark { transform: rotate(0deg); }
.nav-logo .mark::after {
  content: ""; position: absolute; inset: 5px;
  border-radius: 2px 2px 2px 50%;
  background: var(--bg);
}
.nav-links {
  display: flex; gap: 2px; position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-link {
  font-size: 17px; color: var(--ink-dim);
  padding: 8px 14px; border-radius: 999px;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  cursor: pointer; white-space: nowrap; font-weight: 500;
}
.nav-link:hover { color: var(--ink); background: rgba(255,255,255,0.05); }
/* .nav-links is absolutely centered (see above) so it doesn't reflow around
   the CTA button as the pill narrows — it visibly collides with "Get cash
   offer" from ~761px up to ~850px (iPad Mini/portrait tablet range). Switch
   to the hamburger well before that collision zone. */
@media (max-width: 880px) { .nav-links { display: none; } }

/* Mobile menu */
.nav-menu-btn {
  display: none;
  /* 44×44 minimum touch target (WCAG 2.5.5 / platform HIG) */
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.05); border: 1px solid var(--glass-line);
  color: var(--ink); cursor: pointer;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 880px) {
  .nav-menu-btn { display: inline-flex; margin-left: auto; }
  .nav > .btn-primary { display: none; }      /* CTA moves into the mobile menu */
  .nav-logo img { height: 52px !important; }   /* trim logo so the bar isn't cramped */

  /* Static city pages have no React, so no hamburger to move the CTA into.
     Keep it in the bar — organic traffic lands here and it is the only
     conversion path on the page. */
  .nav--static > .btn-primary { display: inline-flex; margin-left: auto; }
  .nav--static .nav-logo img { height: 44px !important; }
}
.mobile-menu {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: rgba(8,8,8,0.95);
  border: 1px solid var(--glass-line);
  border-radius: 20px;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  padding: 8px;
  display: flex; flex-direction: column;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}
.mobile-menu a {
  color: var(--ink-dim); text-decoration: none;
  font-size: 16px; font-weight: 500;
  padding: 14px 18px; border-radius: 12px;
  transition: color 0.2s, background 0.2s;
}
.mobile-menu a:hover, .mobile-menu a:focus-visible { color: var(--ink); background: rgba(255,255,255,0.06); }
.mobile-menu .btn-primary { margin: 6px 8px 8px; justify-content: center; height: 48px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 160px 0 110px;
  overflow: hidden;
  min-height: 100vh;
  display: flex; align-items: center;
}
.hero-img {
  position: absolute; inset: 0; z-index: 0;
  will-change: transform;
}
.hero-img img {
  width: 100%; height: 115%;
  object-fit: cover;
  opacity: 0.18;
  will-change: transform;
}
.hero-img::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.6) 0%, rgba(5,5,5,0.3) 30%, rgba(5,5,5,0.9) 80%, var(--bg) 100%),
    radial-gradient(60vw 50vw at 65% 20%, rgba(255,255,255,0.04), transparent 65%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; text-align: center; display: flex; flex-direction: column; align-items: center; }

.hero-eyebrow-row {
  display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 44px;
}
.hero-eyebrow-row .pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 8px; border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-line);
  font-size: 12px; color: var(--ink-dim);
}
.hero-eyebrow-row .pill .badge {
  background: #fff; color: #000;
  font-family: var(--mono); font-size: 9.5px; font-weight: 700;
  padding: 3px 9px; border-radius: 999px;
  letter-spacing: 0.08em; text-transform: uppercase;
}

.hero h1 { max-width: 16ch; margin-bottom: 36px; text-align: center; }
.hero h1 .italic { color: var(--ink-dim); }

.hero-sub {
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--ink-dim);
  max-width: 52ch;
  margin-bottom: 52px;
  line-height: 1.55;
  font-weight: 400;
  text-align: center;
}

/* Address bar */
.address-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 8px 8px 24px; border-radius: 999px;
  background: rgba(10,10,10,0.6);
  border: 1px solid var(--glass-line);
  backdrop-filter: blur(32px) saturate(150%);
  -webkit-backdrop-filter: blur(32px) saturate(150%);
  max-width: 600px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.address-bar:focus-within {
  border-color: rgba(255,255,255,0.25);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.05), 0 1px 0 rgba(255,255,255,0.06) inset;
}
.address-bar .pin { color: var(--ink-dim); display: flex; align-items: center; }
.address-bar input {
  flex: 1; background: transparent; border: none; outline: none;
  color: var(--ink); font-family: var(--sans); font-size: 16px;
  letter-spacing: -0.01em; height: 56px; min-width: 0; font-weight: 400;
}
.address-bar input::placeholder { color: var(--ink-mute); }
@media (max-width: 560px) {
  .address-bar { flex-wrap: wrap; padding: 10px; border-radius: 24px; }
  .address-bar .pin { display: none; }
  .address-bar input { flex: 1 1 100%; height: 48px; padding: 0 8px; }
  .address-bar .btn { width: 100%; justify-content: center; }
}

/* Address autocomplete dropdown */
.address-wrap { position: relative; max-width: 600px; width: 100%; }
.address-suggestions {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 50;
  background: #111;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.7);
}
.address-suggestion {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 20px; cursor: pointer;
  font-size: 14px; color: var(--ink-dim);
  transition: background 0.15s, color 0.15s;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.address-suggestion:last-child { border-bottom: none; }
.address-suggestion:hover, .address-suggestion.active { background: rgba(255,255,255,0.06); color: var(--ink); }
.address-suggestion .sug-pin { color: var(--ink-mute); flex-shrink: 0; }
.address-suggestion .sug-main { font-weight: 500; color: var(--ink); }
.address-suggestion .sug-secondary { font-size: 12px; color: var(--ink-mute); margin-top: 1px; }

.hero-trust {
  display: flex; align-items: center; gap: 28px;
  margin-top: 36px; flex-wrap: wrap;
}
.hero-trust .stars { display: flex; gap: 2px; color: var(--ink); }
.hero-trust .trust-label {
  font-size: 13px; color: var(--ink-dim);
}
.hero-trust .trust-label strong { color: var(--ink); font-weight: 600; }
.hero-trust .sep { width: 1px; height: 18px; background: var(--line); }

/* Hero floating stat */
.hero-side {
  position: absolute; right: 40px; top: 50%;
  transform: translateY(-50%);
  width: 270px; z-index: 3;
}
@media (max-width: 1120px) { .hero-side { display: none; } }
.hero-side-card {
  padding: 22px; border-radius: var(--radius);
}
.hero-side-card .label {
  font-family: var(--mono); font-size: 14px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-mute); margin-bottom: 10px;
}
.hero-side-card .value {
  font-size: 44px; font-weight: 800; line-height: 1;
  letter-spacing: -0.04em; color: var(--ink);
}
.hero-side-card .value .currency { color: var(--ink-dim); margin-right: 2px; font-weight: 300; }
.hero-side-card .sub { font-size: 12.5px; color: var(--ink-mute); margin-top: 10px; line-height: 1.4; }
.hero-side-mini-card {
  margin-top: 12px; padding: 16px 18px; border-radius: var(--radius);
  display: flex; align-items: center; gap: 14px;
}
.hero-side-mini-card .av {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--glass-line);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--ink-dim); flex-shrink: 0;
  font-size: 14px;
}
.hero-side-mini-card .name { font-size: 13px; font-weight: 500; }
.hero-side-mini-card .role { font-size: 11.5px; color: var(--ink-mute); margin-top: 2px; }

/* ============================================================
   Marquee
   ============================================================ */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0; overflow: hidden;
  background: rgba(10,10,10,0.5);
}
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marquee 42s linear infinite;
  width: max-content;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-dim);
  padding-right: 56px;
}
.marquee-item .dot {
  width: 4px; height: 4px; border-radius: 50%; background: var(--ink-dim);
}
@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* ============================================================
   Section header
   ============================================================ */
.section-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: end; margin-bottom: clamp(48px, 6vw, 72px);
}
@media (max-width: 860px) { .section-head { grid-template-columns: 1fr; gap: 24px; } }
.section-head .lead {
  color: var(--ink-dim); max-width: 44ch; line-height: 1.6; font-size: 17px;
}

/* ============================================================
   How it works
   ============================================================ */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; counter-reset: step;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step {
  padding: 36px 32px 30px; border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
  min-height: 320px; display: flex; flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1), border-color 0.3s;
}
.step:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.16) !important; }
.step .num {
  font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.2em;
  color: var(--ink-dim); margin-bottom: 80px; text-transform: uppercase;
}
.step h3 { margin-bottom: 14px; }
.step p { color: var(--ink-dim); font-size: 14.5px; line-height: 1.6; }
.step .step-icon {
  position: absolute; top: 32px; right: 32px;
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-dim);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.step:hover .step-icon {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.18);
  color: var(--ink);
}
.step .timeline {
  margin-top: auto; padding-top: 24px;
  border-top: 1px dashed var(--line);
  font-family: var(--mono); font-size: 12.5px;
  letter-spacing: 0.14em; color: var(--ink-dim);
  text-transform: uppercase;
  display: flex; justify-content: space-between;
}
.step .timeline strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   BENTO
   ============================================================ */
.section--about {
  padding: clamp(84px, 9vw, 140px) 0;
}
.section-head--about {
  gap: 18px;
  align-items: start;
  margin-bottom: 36px;
}
.section-title--about {
  margin-top: 20px;
}
.section-lead--about {
  align-self: start;
  margin-top: 24px;
  max-width: 52ch;
}
.bento {
  display: grid; grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(120px, auto); gap: 8px;
}
@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(6,1fr); grid-auto-rows: minmax(130px, auto); }
}
@media (max-width: 640px) {
  .bento { grid-template-columns: repeat(2,1fr); grid-auto-rows: minmax(130px, auto); }
}
.b {
  padding: 12px 14px 8px;
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-start;
  gap: 10px;
  border: 1px solid var(--glass-line);
  background: var(--glass);
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1), border-color 0.3s, background 0.3s;
}
.b-foot.p { margin-bottom: 0; }
.b:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.15);
  background: var(--glass-strong);
}

.b-hero { grid-column: 1 / span 4; grid-row: 1; min-height: 168px; }
.b-sq   { grid-column: 5 / span 4; grid-row: 1; min-height: 168px; }
.b-sq2  { grid-column: 9 / span 4; grid-row: 1; min-height: 168px; }
.b-tall { grid-column: 1 / span 7; grid-row: 2; min-height: 350px; }
.b-wide2 { grid-column: 8 / span 5; grid-row: 2; min-height: 350px; }
.b-wide { grid-column: span 6; grid-row: span 1; }

@media (max-width: 980px) {
  .bento { grid-auto-rows: minmax(160px, auto); gap: 10px; }
  .b-hero { grid-column: span 6; grid-row: 1; }
  .b-sq { grid-column: span 3; grid-row: 2; }
  .b-sq2 { grid-column: span 3; grid-row: 2; }
  .b-tall { grid-column: span 6; grid-row: 3; }
  .b-wide2 { grid-column: span 6; grid-row: 4; }
}
@media (max-width: 640px) {
  .b-hero, .b-wide, .b-sq, .b-sq2, .b-wide2 { grid-column: span 2; grid-row: span 2; }
  .b-tall { grid-column: span 2; grid-row: span 2; }
}

.b-label {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-dim);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 8px;
}
.b-label .num { color: var(--ink); }
.b h3.b-title { margin-top: 6px; }

/* Hero bento */
.b-hero {
  background: linear-gradient(150deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 60%, rgba(255,255,255,0.0) 100%);
}
.b-hero .big-num,
.b-sq .big,
.b-sq .big-num,
.b-sq2 .big-num {
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-top: 0; color: var(--ink);
}
.b-hero .big-num .currency,
.b-sq .big .label,
.b-sq .big-num .label,
.b-sq2 .big-num .label {
  color: var(--ink-dim); font-weight: 300;
}
.b-hero .big-num .unit,
.b-sq .big-num .unit,
.b-sq2 .big-num .unit {
  font-style: italic; color: var(--ink-dim);
  font-size: 0.55em; margin-left: 6px; vertical-align: middle; font-weight: 400;
}
.b-hero .b-foot,
.b-sq .b-foot,
.b-sq2 .b-foot {
  margin-top: 0;
  display: flex; justify-content: flex-start; align-items: center;
  color: var(--ink-dim); font-size: 15px;
  gap: 16px;
}
.b-hero .b-foot .delta,
.b-sq .b-foot .delta,
.b-sq2 .b-foot .delta {
  font-family: var(--mono); color: var(--ink); font-weight: 600;
}


/* Tall bento */
.b-tall h3 {
  font-size: clamp(22px, 2.3vw, 30px);
  font-weight: 700; letter-spacing: -0.03em;
  line-height: 1.15; margin-bottom: 14px;
}
.b-tall .strike-list { display: flex; flex-direction: column; gap: 0; margin-top: 10px; }
.b-tall .strike-list .row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-top: 1px solid var(--line);
}
.b-tall .strike-list .row:last-child { border-bottom: 1px solid var(--line); }
.b-tall .strike-list .label { font-size: 16px; color: var(--ink-dim); }
.b-tall .strike-list .val {
  font-family: var(--mono); font-size: 16px; color: var(--ink-mute);
  text-decoration: line-through;
}
.b-tall .strike-list .val.yes {
  color: var(--ink); text-decoration: none; font-weight: 600;
}

/* Wide bento — quote */
.b-wide {
  flex-direction: row; align-items: center; gap: 20px;
  background: linear-gradient(100deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
}
.b-wide .quote-mark {
  font-size: 72px; line-height: 0.6; color: var(--ink-dim);
  font-style: italic; flex-shrink: 0;
}
.b-wide .quote-text {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.35; color: var(--ink);
  font-style: italic; font-weight: 400;
}
.b-wide .quote-attr {
  font-family: var(--mono); font-size: 12.5px; color: var(--ink-mute);
  margin-top: 8px; font-style: normal;
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* Square bento */
.b-sq .big {
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 800; line-height: 0.95;
  letter-spacing: -0.05em; margin-top: 0;
}
.b-sq .big .label {
  font-size: 0.42em; font-style: italic; color: var(--ink-dim);
  display: block; margin-top: 6px; letter-spacing: -0.02em; font-weight: 400;
}

/* Any condition */
.b-sq2 .b-copy,
.b-caption {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-dim);
  font-style: italic;
}
.b-sq2 .cond {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px;
}
.b-sq2 .cond span {
  font-size: 13px; padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-line);
  color: var(--ink-mute);
  transition: color 0.2s, border-color 0.2s;
}
.b-sq2:hover .cond span { color: var(--ink-dim); border-color: rgba(255,255,255,0.15); }

/* Map bento */
.b-wide2 { position: relative; }
.b-wide2.no-pad { padding: 0; overflow: hidden; }
.b-wide2 .map {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.25; transition: opacity 0.4s;
}
.b-wide2 .overlay-label {
  position: absolute; top: 22px; left: 22px; z-index: 3;
}
.b-wide2 .overlay-meta {
  position: absolute; bottom: 18px; left: 22px; z-index: 3;
}
.b-wide2:hover .map { opacity: 0.4; }
.b-wide2 .map svg { width: 80%; height: 80%; }
.b-wide2 .meta {
  position: relative; z-index: 2; margin-top: auto;
  display: flex; gap: 18px;
  font-family: var(--mono); font-size: 11.5px;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-mute);
  flex-wrap: wrap;
}
.b-wide2 .meta strong { color: var(--ink-dim); font-weight: 600; }
.b-wide2 .pin-dot {
  position: absolute; width: 7px; height: 7px; border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 5px rgba(255,255,255,0.1), 0 0 16px rgba(255,255,255,0.2);
  z-index: 2;
  animation: ping 3s ease-in-out infinite;
}
.b-wide2 .pin-dot::after {
  content: attr(data-label);
  position: absolute; left: 13px; top: -4px;
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-mute); white-space: nowrap;
}
@keyframes ping {
  0%, 100% { box-shadow: 0 0 0 5px rgba(255,255,255,0.1), 0 0 16px rgba(255,255,255,0.2); }
  50%       { box-shadow: 0 0 0 8px rgba(255,255,255,0.05), 0 0 24px rgba(255,255,255,0.12); }
}

/* ============================================================
   Buyers
   ============================================================ */
.buyers-wrap {
  border-top: 1px solid var(--line);
  background: radial-gradient(80vw 50vw at 50% 0%, rgba(255,255,255,0.025), transparent 60%);
}

/* ============================================================
   Final CTA
   ============================================================ */
.final-cta {
  border-radius: 32px; text-align: center;
  padding: clamp(60px, 8vw, 108px) clamp(32px, 5vw, 80px);
  background: linear-gradient(150deg, rgba(255,255,255,0.055) 0%, rgba(255,255,255,0.02) 50%, rgba(255,255,255,0.0) 100%);
  border: 1px solid var(--glass-line);
  position: relative; overflow: hidden;
}
.section--sell {
  padding: clamp(84px, 9vw, 140px) 0;
}
.section--sell .final-cta {
  min-height: clamp(560px, 74vh, 760px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section--sell .final-cta > * {
  width: 100%;
}
.final-cta::before {
  content: ""; position: absolute;
  top: -50%; left: 50%; transform: translateX(-50%);
  width: 60%; height: 200px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta .h-section { max-width: 26ch; margin: 0 auto 28px; }
.final-cta p { color: var(--ink-dim); max-width: 48ch; margin: 0 auto 40px; font-size: 17px; line-height: 1.6; }
.final-cta .ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  padding: 72px 0 36px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .tag {
  font-size: 16px; line-height: 1.5; font-style: italic;
  max-width: 28ch; color: var(--ink-mute); margin-top: 18px; font-weight: 400;
}
.footer-col h4 {
  font-family: var(--mono); font-size: 12.5px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 20px; font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; }
.footer-col a {
  color: var(--ink-dim); text-decoration: none; font-size: 17px; font-weight: 500;
  transition: color 0.2s; letter-spacing: -0.01em;
}
.footer-col a:hover { color: var(--ink); }
.footer-bot {
  margin-top: 72px; padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: var(--ink-mute); font-family: var(--mono);
  letter-spacing: 0.03em;
}

/* ============================================================
   Offer flow modal
   ============================================================ */
.offer-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(24px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: fadein .2s ease-out;
}
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
.offer-modal {
  width: min(720px, 100%); max-height: 90vh; overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, #141414 0%, #0a0a0a 100%);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 60px 120px -20px rgba(0,0,0,0.9), 0 0 0 1px rgba(255,255,255,0.06);
  display: flex; flex-direction: column;
  animation: rise .3s cubic-bezier(.2,.7,.2,1);
}
@keyframes rise {
  from { opacity: 0; transform: translateY(24px) scale(.97); }
  to   { opacity: 1; transform: none; }
}
.offer-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 28px; border-bottom: 1px solid var(--line);
}
.offer-head .progress-row {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute);
}
.offer-head .progress-bar {
  width: 160px; height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px; overflow: hidden;
}
.offer-head .progress-fill {
  height: 100%; background: var(--ink);
  transition: width 0.4s cubic-bezier(.2,.8,.2,1);
}
.offer-close {
  /* 44×44 minimum touch target (WCAG 2.5.5 / platform HIG) */
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.05); border: 1px solid var(--glass-line);
  color: var(--ink-dim); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s, color 0.2s;
}
.offer-close:hover { background: rgba(255,255,255,0.1); color: var(--ink); }
.offer-body { padding: 44px 44px 32px; overflow-y: auto; }
@media (max-width: 600px) { .offer-body { padding: 32px 24px 24px; } }
.offer-step-head { margin-bottom: 32px; }
.offer-step-head .step-eyebrow {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-mute); margin-bottom: 12px;
}
.offer-step-head h2 {
  font-size: clamp(26px, 3.5vw, 40px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 12px;
}
.offer-step-head p { color: var(--ink-dim); font-size: 15px; max-width: 44ch; }
/* Labelled field: visible <label> above the control, with hint/error beneath.
   Placeholder-only labelling vanishes as soon as the user types, so every
   control keeps a persistent visible label (WCAG 3.3.2). */
.field { display: flex; flex-direction: column; gap: 6px; }
.field-label {
  font-size: 13px; font-weight: 500; color: var(--ink-dim);
  letter-spacing: -0.01em; line-height: 1.3;
}
.field-req { color: var(--ink-mute); }
.field-hint { font-size: 12px; color: var(--ink-mute); line-height: 1.45; margin: 0; }
.field-error {
  font-size: 12.5px; color: #ff8a8a; line-height: 1.45; margin: 0;
  display: flex; align-items: center; gap: 5px;
}

.field-input {
  width: 100%; background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-line); border-radius: 12px;
  padding: 16px 18px; color: var(--ink);
  font-family: var(--sans);
  /* 16px avoids iOS Safari's auto-zoom on focus */
  font-size: 16px; outline: none;
  min-height: 44px;
  transition: border-color .2s, background .2s; font-weight: 400;
}
.field-input::placeholder { color: var(--ink-mute); }
.field-input:focus {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.05);
}
.field-input[aria-invalid="true"] { border-color: rgba(255,110,110,0.8); }
.field-input[aria-invalid="true"]:focus { border-color: rgba(255,140,140,0.95); }
.field-grid { display: grid; gap: 10px; }
.field-grid.cols-2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 520px) { .field-grid.cols-2 { grid-template-columns: 1fr; } }

.choice {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-radius: 12px;
  border: 1px solid var(--glass-line);
  background: rgba(255,255,255,0.03);
  cursor: pointer;
  transition: background .25s, border-color .25s, transform .15s;
  width: 100%; text-align: left;
}
.choice:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.16); }
.choice.selected { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.08); }
.choice .left { display: flex; align-items: center; gap: 14px; }
.choice .ic {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-dim); flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.choice.selected .ic { background: rgba(255,255,255,0.12); color: var(--ink); }
.choice .title { font-size: 14.5px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.choice .desc { font-size: 12px; color: var(--ink-mute); margin-top: 2px; }
.choice .check {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.choice.selected .check { background: #fff; border-color: #fff; color: #000; }

.offer-foot {
  padding: 18px 28px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(0,0,0,0.35);
}
.offer-foot .back {
  background: transparent; border: none; cursor: pointer;
  color: var(--ink-dim); font-size: 14px;
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: 8px;
  transition: color .2s, background .2s; font-family: var(--sans); font-weight: 500;
}
.offer-foot .back:hover { color: var(--ink); background: rgba(255,255,255,0.05); }
.offer-foot .back:disabled { opacity: 0.3; cursor: not-allowed; }

/* Result */
.offer-result { text-align: center; padding: 20px 0 8px; }
.offer-result .sigil {
  width: 64px; height: 64px; border-radius: 50%;
  background: #fff;
  margin: 0 auto 28px;
  display: flex; align-items: center; justify-content: center;
  color: #000;
  animation: pulse 2.5s ease-in-out infinite;
  box-shadow: 0 0 60px rgba(255,255,255,0.15);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 40px rgba(255,255,255,0.12); transform: scale(1); }
  50%       { box-shadow: 0 0 70px rgba(255,255,255,0.22); transform: scale(1.04); }
}
.offer-result h2 {
  font-size: clamp(30px, 4vw, 44px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 16px;
}
.offer-result .range {
  font-size: clamp(44px, 7vw, 78px); font-weight: 800;
  letter-spacing: -0.04em; line-height: 1; margin: 24px 0;
}
.offer-result .range .currency { color: var(--ink-dim); font-weight: 300; }
.offer-result .range .dash { color: var(--ink-mute); margin: 0 6px; font-style: italic; }
.offer-result p { color: var(--ink-dim); max-width: 44ch; margin: 0 auto 28px; font-size: 15px; }
.offer-result .next-row {
  display: flex; gap: 12px; justify-content: center; margin-top: 8px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap {
  border-top: 1px solid var(--line);
}
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start;
}
@media (max-width: 860px) { .faq-grid { grid-template-columns: 1fr; } }

.faq-item {
  border: 1px solid var(--glass-line);
  border-radius: var(--radius);
  background: var(--glass);
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}
.faq-item.open {
  border-color: rgba(255,255,255,0.16);
  background: var(--glass-strong);
}
.faq-q {
  width: 100%; text-align: left; background: transparent; border: none;
  padding: 22px 24px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  color: var(--ink); letter-spacing: -0.02em; line-height: 1.35;
}
.faq-q:hover { color: var(--ink); }
.faq-chevron {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,0.05); border: 1px solid var(--glass-line);
  display: flex; align-items: center; justify-content: center; color: var(--ink-dim);
  transition: transform 0.35s cubic-bezier(0.2,0.8,0.2,1), background 0.2s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); background: rgba(255,255,255,0.1); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.2,0.8,0.2,1), padding 0.3s;
  padding: 0 24px;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 24px 22px;
}
.faq-a p {
  font-size: 14.5px; color: var(--ink-dim); line-height: 1.65;
  margin: 0; border-top: 1px solid var(--line); padding-top: 16px;
}
.faq-a p strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   Legal doc modal (Privacy / Terms / Accessibility)
   ============================================================ */
.legal-body {
  padding: 8px 44px 40px; overflow-y: auto;
}
@media (max-width: 600px) { .legal-body { padding: 8px 24px 32px; } }
.legal-body h3 {
  font-size: 16px; font-weight: 700; letter-spacing: -0.01em;
  color: var(--ink); margin: 28px 0 10px; line-height: 1.3;
}
.legal-body h3:first-child { margin-top: 8px; }
.legal-body p, .legal-body li {
  font-size: 14.5px; line-height: 1.7; color: var(--ink-dim);
  margin: 0 0 12px;
}
.legal-body ul { margin: 0 0 12px; padding-left: 20px; }
.legal-body li { margin-bottom: 6px; }
.legal-body a { color: var(--ink); text-decoration: underline; }
.legal-body .legal-meta {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-mute); margin-bottom: 4px;
}
.legal-body strong { color: var(--ink); font-weight: 600; }

/* MapLibre popup override */
.map-popup .maplibregl-popup-content {
  background: rgba(10,10,10,0.9);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: #f5f5f5;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
}
.map-popup .maplibregl-popup-tip { display: none; }

/* Keep required CARTO/OSM attribution but blend it into the dark bento tile */
.maplibregl-ctrl-attrib {
  background: rgba(5,5,5,0.5) !important;
  font-size: 9px !important;
}
.maplibregl-ctrl-attrib a { color: var(--ink-mute) !important; }

/* ============================================================
   Divider rule
   ============================================================ */
.rule { display: flex; align-items: center; gap: 24px; margin: 0 auto 60px; }
.rule .line { flex: 1; height: 1px; background: var(--line); }
.rule .txt {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-mute);
}

/* ============================================================
   Mobile refinements (≤640px) — cleaner spacing, no dead space
   ============================================================ */
@media (max-width: 640px) {
  /* Address bar: stack input over full-width button */
  .address-bar {
    flex-wrap: wrap; padding: 10px; gap: 10px;
    border-radius: var(--radius);
  }
  .address-bar .pin { padding-left: 8px; }
  .address-bar input { flex: 1 1 auto; height: 44px; }
  .address-bar .btn { width: 100%; justify-content: center; }
  .address-suggestions { border-radius: var(--radius); }

  /* Bento: let cards size to content — kills the tall empty panels */
  .bento { grid-auto-rows: auto; }
  .b, .b-hero, .b-tall, .b-wide, .b-sq, .b-sq2, .b-wide2 {
    grid-column: 1 / -1 !important; grid-row: auto !important;
    min-height: 168px;
  }
  .b-wide2 { min-height: 220px; }
  .b-hero .big-num { margin-top: 8px; }
  .b-hero .b-foot { margin-top: 10px; }

  /* How-it-works steps: trim fixed min-height */
  .step { min-height: 0; padding: 28px 24px; }
  .step .num { margin-bottom: 48px; }

  /* Hero: tighter */
  .hero { padding: 132px 0 80px; }
  .hero h1 { margin-bottom: 28px; }
  .hero-sub { margin-bottom: 36px; }
  .hero-eyebrow-row { margin-bottom: 32px; }

  /* Final CTA + footer spacing */
  .final-cta { border-radius: var(--radius-lg); }
  .footer-bot { flex-direction: column; align-items: flex-start; }
}

/* Progress row: keep "Step X of Y" on one line */
.offer-head .progress-row { flex: 1; min-width: 0; }
.offer-head .progress-row > span:first-child { white-space: nowrap; }
@media (max-width: 480px) {
  .offer-head { padding: 18px 20px; }
  .offer-head .progress-bar { width: 90px; }
}

/* Prevent iOS zoom-on-focus: inputs ≥16px */
.field-input, .address-bar input { font-size: 16px; }

/* ============================================================
   GSAP initial states — CSS hides elements before JS animates
   so there's zero flash-of-content. GSAP calls gsap.to() → visible.
   ============================================================ */
.hero-word {
  display: inline-block; /* translateY requires block formatting */
  opacity: 0;
  transform: translateY(28px);
  will-change: opacity, transform;
}
#hero-eyebrow, #hero-sub, #hero-bar, #hero-trust {
  opacity: 0;
  will-change: opacity, transform;
}
#hero-side {
  opacity: 0;
  will-change: opacity, transform;
}
.gs-reveal {
  opacity: 0;
  transform: translateY(40px);
  will-change: opacity, transform;
}
.step, .b, .property-card {
  opacity: 0;
  transform: translateY(52px);
  will-change: opacity, transform;
}
/* Reduced-motion: skip all animation, show everything (WCAG 2.3.3) */
@media (prefers-reduced-motion: reduce) {
  .hero-word, #hero-eyebrow, #hero-sub, #hero-bar,
  #hero-trust, #hero-side, .gs-reveal, .step, .b, .property-card {
    opacity: 1 !important;
    transform: none !important;
  }
  .marquee-track { animation: none; }
  .b-wide2 .pin-dot, .offer-result .sigil { animation: none; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ============================================================
   Utility
   ============================================================ */
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
/* Anchor offset without phantom whitespace */
/* Anchor landing offset. Sections already carry 72–140px of their own top
   padding, so a large value here stacks on top of that and leaves a big empty
   band under the fixed nav. 24px is just enough to keep the heading clear of
   the nav on mobile (where section padding is smallest) without adding to it. */
[id] { scroll-margin-top: 24px; }

/* ============================================================
   City landing pages (static, generated by scripts/build-cities.js)
   Deliberately minimal: one hero + the shared site footer.
   ============================================================ */
.city-hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 150px 0 90px;
  background: radial-gradient(70vw 55vw at 50% 0%, rgba(255,255,255,0.05), transparent 68%);
}
.city-hero-inner { width: 100%; }

.breadcrumb {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 28px;
}
.breadcrumb a { color: var(--ink-mute); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--ink); }

.city-h1 { max-width: 16ch; margin: 22px 0 24px; }
.city-lede {
  font-size: clamp(16px, 1.4vw, 18px); color: var(--ink-dim);
  max-width: 58ch; line-height: 1.65; margin: 0 0 40px;
}

.city-address { max-width: 640px; }
.city-address-row { display: flex; gap: 10px; margin-top: 6px; }
.city-address-row .field-input { flex: 1; min-width: 0; }
.city-address-row .btn { flex-shrink: 0; }
@media (max-width: 640px) {
  .city-address-row { flex-direction: column; }
  .city-address-row .btn { width: 100%; justify-content: center; }
}
.city-address .field-hint { margin-top: 10px; }

.city-trust {
  list-style: none; padding: 0; margin: 40px 0 0;
  display: flex; flex-wrap: wrap; gap: 12px 30px;
  font-size: 14px; color: var(--ink-dim);
}
.city-trust li { display: flex; align-items: center; gap: 9px; }
.city-trust li::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--ink-dim); flex-shrink: 0;
}

.city-note {
  margin: 34px 0 0; font-family: var(--mono);
  font-size: 11.5px; letter-spacing: 0.08em;
  color: var(--ink-mute); line-height: 1.6;
}

/* Visually hidden but present for assistive tech and crawlers.
   Uses the clip-path pattern rather than display:none so the content is
   still exposed in the accessibility tree. */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
