/* RAA Estate — Landing Page Styles
 * Uplifted via Impeccable principles:
 *  - OKLCH tinted neutrals (no pure grays, tinted into brand green)
 *  - Fraunces display + Geist body (avoid Inter/Arial defaults)
 *  - Natural cubic-bezier easing (no bounce)
 *  - No side-tab accent borders, no purple gradients, no dark glows
 *  - Flat surfaces (no cards-in-cards)
 *  - Fluid modular type scale via clamp()
 */
:root {
  /* Brand anchors */
  --brand-green:       oklch(35% 0.04 170);
  --brand-green-deep:  oklch(28% 0.045 170);
  --brand-green-ink:   oklch(22% 0.04 170);
  --brand-peach:       oklch(82% 0.12 75);
  --brand-peach-soft:  oklch(88% 0.07 75);

  /* Tinted neutrals (all share ~75 hue w/ tiny chroma — Impeccable: no pure grays) */
  --brand-cream:       oklch(97% 0.012 80);
  --brand-cream-warm:  oklch(94% 0.018 80);

  /* Text scale — tinted into green hue, not gray */
  --ink:         oklch(28% 0.045 170);
  --ink-soft:    oklch(45% 0.025 170);
  --ink-muted:   oklch(58% 0.02 170);

  /* Lines / rules */
  --line:        oklch(86% 0.018 80);
  --line-soft:   oklch(92% 0.012 80);

  /* Status */
  --danger:      oklch(52% 0.16 32);
  --success:     oklch(50% 0.10 165);

  /* Shadows — use brand hue at low alpha */
  --shadow-sm: 0 1px 2px oklch(28% 0.045 170 / 0.06);
  --shadow-md: 0 6px 20px oklch(28% 0.045 170 / 0.08);
  --shadow-lg: 0 18px 50px oklch(28% 0.045 170 / 0.14);

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  /* Modular type scale (fluid, clamp-based) */
  --fs-xs:    clamp(11px, 0.72vw + 9px, 12px);
  --fs-sm:    clamp(12px, 0.8vw + 10px, 13px);
  --fs-base:  clamp(15px, 0.6vw + 13.5px, 16px);
  --fs-md:    clamp(16px, 0.5vw + 15px, 18px);
  --fs-lg:    clamp(20px, 1.2vw + 16px, 24px);
  --fs-xl:    clamp(26px, 2.2vw + 18px, 36px);
  --fs-2xl:   clamp(32px, 4vw + 20px, 52px);
  --fs-3xl:   clamp(38px, 6vw + 20px, 68px);

  /* Easing (Impeccable: natural, no bounce/elastic) */
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 160ms;
  --dur: 240ms;
  --dur-slow: 420ms;
}

* { box-sizing: border-box; }

html {
  scroll-padding-top: 96px;
}
html, body {
  margin: 0;
  padding: 0;
  background: var(--brand-cream);
  color: var(--ink);
  font-family: 'Geist', 'Söhne', ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, sans-serif;
  font-size: var(--fs-base);
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Display font — Fraunces is distinctive, variable, w/ optical sizing (not Cormorant-overused) */
.display, .hero h1, .section h2, .ty-hero h1, .ty-section h2,
.form-head .title, .size-pill .v, .stat-card .num, .dist-cell .val,
.pledge-pillar .letter, .price-anchor .big, .size-table td.v,
.footer-brand .wm, .next-step .num, .ty-share .t {
  font-family: 'Fraunces', 'Source Serif 4', 'Iowan Old Style', Georgia, serif;
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 96;
  font-weight: 450;
  letter-spacing: -0.015em;
}

.mono { font-family: 'Geist Mono', 'JetBrains Mono', ui-monospace, Menlo, monospace; }

img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; }

/* ===== Skip link (a11y) ===== */
.skip-link {
  position: absolute; top: -100%; left: 0; z-index: 200;
  padding: 10px 16px;
  background: var(--brand-green-deep); color: var(--brand-cream);
  font-size: 13px; font-weight: 500; text-decoration: none;
  border-radius: 0 0 var(--radius-sm) 0;
  transition: top 0.2s var(--ease-out);
}
.skip-link:focus { top: 0; }

/* ===== Top bar — editorial centered logo with side menus ===== */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: linear-gradient(to bottom,
    oklch(22% 0.04 170 / 0.85) 0%,
    oklch(22% 0.04 170 / 0.55) 60%,
    oklch(22% 0.04 170 / 0) 100%);
  padding: 18px 0 32px;
  transition: background var(--dur) var(--ease-out);
}
.topbar.solid {
  background: oklch(22% 0.04 170 / 0.95);
  backdrop-filter: saturate(1.1) blur(14px);
  -webkit-backdrop-filter: saturate(1.1) blur(14px);
  padding: 14px 0;
  border-bottom: 1px solid oklch(82% 0.12 75 / 0.08);
}
.topbar-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 24px;
  padding: 0 32px;
}
.topbar .logo {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  text-decoration: none; justify-self: center;
}
.topbar .logo .preword {
  font-size: 9px; letter-spacing: 0.32em; text-transform: uppercase;
  color: oklch(97% 0.012 80 / 0.7); font-weight: 500;
  font-family: 'Geist Mono', ui-monospace, monospace;
}
.topbar .logo-wordmark {
  font-family: 'Fraunces', serif;
  font-weight: 450; font-size: 22px; letter-spacing: 0.18em;
  color: var(--brand-cream);
  font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 96;
  line-height: 1;
}
.topbar .logo .estd {
  font-size: 9px; letter-spacing: 0.32em; text-transform: uppercase;
  color: oklch(82% 0.12 75 / 0.85); font-weight: 500;
  font-family: 'Geist Mono', ui-monospace, monospace;
  margin-top: 4px;
  position: relative;
  padding: 0 14px;
}
.topbar .logo .estd::before,
.topbar .logo .estd::after {
  content: ""; position: absolute; top: 50%;
  width: 24px; height: 1px; background: oklch(82% 0.12 75 / 0.4);
}
.topbar .logo .estd::before { right: 100%; }
.topbar .logo .estd::after { left: 100%; }

.topnav-left, .topnav-right {
  display: flex; align-items: center; gap: 36px;
}
.topnav-left { justify-self: start; }
.topnav-right { justify-self: end; }
.topnav-left a, .topnav-right a {
  color: oklch(97% 0.012 80 / 0.85);
  text-decoration: none;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500;
  transition: color var(--dur-fast) var(--ease-out);
}
.topnav-left a:hover, .topnav-right a:hover { color: var(--brand-peach); }
.topnav-right .phone {
  font-family: 'Geist Mono', ui-monospace, monospace;
  letter-spacing: 0.06em;
  color: var(--brand-peach);
}
@media (max-width: 900px) {
  .topbar { padding: 14px 0; background: oklch(22% 0.04 170 / 0.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
  .topbar-inner { grid-template-columns: auto 1fr auto; padding: 0 18px; gap: 12px; }
  .topnav-left, .topnav-right { display: none; }
  .topbar .logo { justify-self: start; align-items: flex-start; }
  .topbar .logo .preword, .topbar .logo .estd { display: none; }
  .topbar .logo-wordmark { font-size: 16px; letter-spacing: 0.16em; }
  .topbar .logo .estd::before, .topbar .logo .estd::after { display: none; }
}

.topbar-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--brand-cream);
  border: 1px solid oklch(82% 0.12 75 / 0.4);
  padding: 9px 18px; border-radius: 999px;
  min-height: 36px;
  text-decoration: none; font-weight: 500;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  transition: background var(--dur) var(--ease-out), color var(--dur) var(--ease-out);
  justify-self: end;
}
.topbar-cta:hover { background: var(--brand-peach); color: var(--brand-green-deep); border-color: var(--brand-peach); }
.topbar-cta .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-peach);
  animation: pulse 2.4s var(--ease-inout) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

/* ===== Hero — full-bleed editorial image with overlay copy ===== */
.hero {
  position: relative;
  background: var(--brand-green-ink);
  color: var(--brand-cream);
  overflow: hidden;
  min-height: 100svh;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
  opacity: 0.62; filter: saturate(0.85) contrast(1.05);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      oklch(22% 0.04 170 / 0.55) 0%,
      oklch(22% 0.04 170 / 0.18) 35%,
      oklch(22% 0.04 170 / 0.65) 100%);
}

.hero-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  position: relative; z-index: 2;
  padding: 110px 22px 60px;
  min-height: 100svh;
  align-content: end;
}
.hero-copy { padding-bottom: 12px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px; border: 1px solid oklch(82% 0.12 75 / 0.35);
  border-radius: 999px; font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--brand-peach);
  background: oklch(22% 0.04 170 / 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-weight: 500;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-peach); }
.hero h1 {
  font-size: clamp(44px, 7vw + 16px, 96px);
  line-height: 1.0;
  margin: 22px 0 18px;
  color: var(--brand-cream);
  max-width: 14ch;
  text-wrap: balance;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.hero h1 em { font-style: italic; color: var(--brand-peach); font-weight: 400; }
.hero-sub {
  font-size: clamp(15px, 0.6vw + 14px, 18px);
  line-height: 1.55; max-width: 54ch;
  color: oklch(97% 0.012 80 / 0.85);
  margin: 0 0 26px;
  text-wrap: pretty;
}
.hero-price {
  display: flex; align-items: baseline; gap: 10px;
  padding: 18px 22px;
  background: oklch(22% 0.04 170 / 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid oklch(82% 0.12 75 / 0.22);
  border-radius: var(--radius-md);
  margin-bottom: 22px;
  max-width: 360px;
}
.hero-price .label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand-peach); }
.hero-price .amount {
  font-family: 'Fraunces', serif; font-size: 38px; font-weight: 450;
  color: var(--brand-cream); display: block; margin-top: 4px;
  line-height: 1;
}
.hero-price .unit { font-size: 12px; color: oklch(97% 0.012 80 / 0.7); display: block; margin-top: 4px; }

.hero-meta {
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  font-size: 12px; color: oklch(97% 0.012 80 / 0.78);
  letter-spacing: 0.04em;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 7px; }
.hero-meta svg { width: 13px; height: 13px; opacity: .8; }

.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: inline-flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: oklch(97% 0.012 80 / 0.55);
  text-decoration: none;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-weight: 500;
}
.hero-scroll .line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, oklch(82% 0.12 75 / 0.6), transparent);
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 440px;
    gap: 80px;
    padding: 160px 56px 80px;
    align-items: start;
    align-content: start;
  }
  .hero-copy {
    padding: 0;
    position: sticky;
    top: 160px;
    align-self: start;
  }
  .hero-scroll { bottom: 36px; }
}

/* ===== Marquee strip ===== */
.marquee-strip {
  background: var(--brand-peach);
  color: var(--brand-green-deep);
  padding: 11px 0;
  overflow: hidden;
  border-bottom: 1px solid oklch(28% 0.045 170 / 0.1);
}
.marquee-track {
  display: flex; gap: 40px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 12px; }
.marquee-track .sep { opacity: .4; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===== Section shell ===== */
.section {
  padding: 64px 22px;
  max-width: 1200px; margin: 0 auto;
}
@media (min-width: 900px) { .section { padding: 104px 40px; } }

.section-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--brand-green);
  margin-bottom: 22px;
  font-weight: 500;
  font-family: 'Geist Mono', ui-monospace, monospace;
}
.section-kicker::before {
  content: ""; width: 32px; height: 1px; background: var(--brand-peach);
}
.section h2 {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 144;
  font-weight: 400;
  font-size: clamp(34px, 4vw + 14px, 64px);
  line-height: 1.05;
  color: var(--brand-green-deep);
  margin: 0 0 22px;
  max-width: 20ch;
  text-wrap: balance;
  letter-spacing: -0.025em;
}
.section h2 em { font-style: italic; color: var(--brand-green); font-weight: 400; }
.section-intro {
  font-size: clamp(15px, 0.4vw + 14px, 17px);
  max-width: 56ch; color: var(--ink-soft);
  margin: 0 0 44px;
  text-wrap: pretty;
  line-height: 1.65;
}

/* ===== Location / Stats ===== */
.location { background: var(--brand-green-deep); color: var(--brand-cream); }
.location h2 { color: var(--brand-cream); }
.location h2 em { color: var(--brand-peach); }
.location .section-intro { color: oklch(97% 0.012 80 / 0.78); }
.location .section-kicker { color: var(--brand-peach); }
.location .section-kicker::before { background: var(--brand-peach); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 28px;
  background: oklch(82% 0.12 75 / 0.18);
  border: 1px solid oklch(82% 0.12 75 / 0.18);
  border-radius: var(--radius-md); overflow: hidden;
}
@media (min-width: 700px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
  padding: 26px 22px;
  background: var(--brand-green-deep);
}
.stat-card .num {
  font-size: clamp(30px, 3vw + 18px, 42px);
  color: var(--brand-peach);
  line-height: 1;
  margin-bottom: 8px;
  font-weight: 450;
}
.stat-card .lbl {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: oklch(97% 0.012 80 / 0.72);
}

.dist-grid {
  margin-top: 32px;
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: oklch(82% 0.12 75 / 0.18);
  border: 1px solid oklch(82% 0.12 75 / 0.18);
  border-radius: var(--radius-md); overflow: hidden;
}
@media (min-width: 700px) { .dist-grid { grid-template-columns: repeat(3, 1fr); } }
.dist-cell {
  background: var(--brand-green-deep);
  padding: 20px 22px;
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
}
.dist-cell .place { font-size: 13px; color: oklch(97% 0.012 80 / 0.82); }
.dist-cell .val { font-size: 24px; color: var(--brand-peach); line-height: 1; }

/* ===== Amenities — light editorial (matches master plan cream theme) ===== */
.amenities-section {
  background: var(--brand-cream);
  color: var(--ink);
}
.amenities-section .section-kicker { color: var(--brand-green); }
.amenities-section .section-kicker::before { background: var(--brand-peach); }
.amenities-section h2 { color: var(--brand-green-deep); }
.amenities-section h2 em { color: var(--brand-green); font-style: italic; }
.amenities-section .section-intro { color: var(--ink-soft); }

/* ===== Image bento (top): tall portrait + 2 squares + wide landscape ===== */
.amen-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 32px;
}
@media (min-width: 700px) {
  .amen-bento {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
  }
}

.amen-tile {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--brand-cream-warm);
  border: 1px solid var(--line);
  isolation: isolate;
  min-height: 240px;
  transition: border-color var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.amen-tile:hover { border-color: var(--brand-green); transform: translateY(-2px); }
.amen-tile:hover .img { filter: brightness(1.04) saturate(1.05); }

.amen-tile .img {
  position: absolute;
  inset: 0;
  background-color: var(--brand-green-ink);
  /* Source feat-* images have labels baked into the bottom ~25% — anchor to top + oversize vertically to crop them */
  background-size: auto 138%;
  background-position: top center;
  background-repeat: no-repeat;
  transition: filter var(--dur) var(--ease-out);
  z-index: 1;
}
/* Hero tiles use entrance.jpg / house.jpg which have NO baked label — show full image */
.amen-tile--tall .img,
.amen-tile--wide .img {
  background-size: cover;
  background-position: center;
}

/* Gradient overlay for caption legibility (still dark — captions sit on photo) */
.amen-tile .img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    oklch(22% 0.04 170 / 0.88) 0%,
    oklch(22% 0.04 170 / 0.42) 36%,
    oklch(22% 0.04 170 / 0) 68%);
  pointer-events: none;
}

.amen-tile figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px 22px 20px;
  z-index: 2;
  display: flex; flex-direction: column; gap: 8px;
}
.amen-tile .num {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 10px; letter-spacing: 0.22em;
  color: var(--brand-peach);
  font-weight: 500;
}
.amen-tile .t {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 96;
  font-size: 19px; font-weight: 450;
  color: var(--brand-cream);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.amen-tile .t em { font-style: italic; color: oklch(85% 0.10 75); font-weight: 400; }

/* Bento sizing */
@media (min-width: 700px) {
  /* Tall portrait — left column, spans 2 rows */
  .amen-tile--tall { grid-column: 1 / span 2; grid-row: 1 / span 2; }
  /* Two squares stacked — middle/right columns row 1 */
  .amen-tile--square:nth-of-type(2) { grid-column: 3; grid-row: 1; }
  .amen-tile--square:nth-of-type(3) { grid-column: 4; grid-row: 1; }
  /* Wide landscape — right side, row 2 */
  .amen-tile--wide { grid-column: 3 / span 2; grid-row: 2; }

  .amen-tile--tall .t { font-size: 26px; max-width: 14ch; }
  .amen-tile--tall figcaption { padding: 28px 30px 30px; gap: 10px; }
}

/* ===== Hairline feature grid (light cream theme — mirrors plan-sizes pattern) ===== */
.amen-features {
  margin-top: 16px;
  display: grid; grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 0;
  overflow: hidden;
}
@media (min-width: 700px) {
  .amen-features { grid-template-columns: repeat(4, 1fr); gap: 1px; }
}
.amen-feat {
  background: var(--brand-cream);
  padding: 28px 24px 26px;
  display: flex; flex-direction: column; gap: 8px;
  transition: background var(--dur-fast) var(--ease-out);
}
.amen-feat:hover { background: var(--brand-cream-warm); }
.amen-feat .num {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 10px; letter-spacing: 0.22em;
  color: var(--brand-green);
  font-weight: 500;
}
.amen-feat .t {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 96;
  font-size: 19px; font-weight: 450;
  color: var(--brand-green-deep);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-top: 2px;
}
.amen-feat .d {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-top: 4px;
}

/* ===== Footnote strip (cream theme) ===== */
.amen-footnote {
  display: flex; align-items: center; gap: 18px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.amen-footnote .line {
  flex-shrink: 0;
  width: 28px; height: 1px;
  background: var(--brand-peach);
}
.amen-footnote .text {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-muted);
  line-height: 1.7;
}
@media (max-width: 700px) {
  .amen-footnote .text { font-size: 10px; letter-spacing: 0.1em; }
}

/* ===== Master plan — light cream contrast section ===== */
.plan-section {
  background: var(--brand-cream);
  color: var(--ink);
}
.plan-wrap {
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start;
}
@media (min-width: 900px) { .plan-wrap { grid-template-columns: 1.25fr 1fr; gap: 80px; } }
.plan-img {
  overflow: hidden;
  background: var(--brand-cream-warm);
  border: 1px solid var(--line-soft);
  position: relative;
}
.plan-img img { width: 100%; display: block; }
.plan-sizes {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  overflow: hidden;
}
@media (min-width: 520px) { .plan-sizes { grid-template-columns: repeat(3, 1fr); } }
.size-pill {
  padding: 22px 12px;
  background: var(--brand-cream);
  text-align: center;
  transition: background var(--dur-fast) var(--ease-out);
}
.size-pill:hover { background: var(--brand-cream-warm); }
.size-pill .v {
  font-family: 'Fraunces', serif;
  font-size: 30px; color: var(--brand-green-deep); line-height: 1;
  font-weight: 450;
  font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 96;
}
.size-pill .u { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-muted); margin-top: 6px; font-family: 'Geist Mono', ui-monospace, monospace; }

/* ===== Pledge / About — dark editorial split ===== */
.pledge {
  background: var(--brand-green-ink);
  color: var(--brand-cream);
  padding: 0;
  overflow: hidden;
}
.pledge .section {
  padding: 0;
  max-width: none;
}
.pledge-row {
  display: grid; grid-template-columns: 1fr; gap: 0;
  min-height: 70vh;
}
@media (min-width: 900px) { .pledge-row { grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; } }
.pledge-img {
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--brand-green-deep);
  position: relative;
}
.pledge-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (min-width: 900px) { .pledge-img { aspect-ratio: auto; min-height: 100%; } }
.pledge-text {
  padding: 64px 22px;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 600px;
}
@media (min-width: 900px) { .pledge-text { padding: 100px 80px; max-width: none; } }
.pledge-text .section-kicker { color: var(--brand-peach); margin-bottom: 18px; }
.pledge-text .section-kicker::before { background: var(--brand-peach); }
.pledge-text h2 {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 96;
  font-weight: 400;
  font-size: clamp(28px, 3vw + 16px, 48px);
  line-height: 1.08;
  color: var(--brand-cream);
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  max-width: 18ch;
  text-wrap: balance;
}
.pledge-text h2 em { font-style: italic; color: var(--brand-peach); }
.pledge-text .section-intro {
  font-size: 15px; line-height: 1.7;
  color: oklch(97% 0.012 80 / 0.78);
  margin: 0 0 28px;
  max-width: 46ch;
}
.pledge-pillars {
  display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 8px;
}
.pledge-pillar {
  display: flex; gap: 22px; padding: 22px 0;
  border-top: 1px solid oklch(82% 0.12 75 / 0.18);
}
.pledge-pillar:last-child { border-bottom: 1px solid oklch(82% 0.12 75 / 0.18); }
.pledge-pillar .letter {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 144;
  font-style: italic;
  font-size: 48px; line-height: 1; color: var(--brand-peach); flex-shrink: 0;
  width: 44px;
  font-weight: 400;
}
.pledge-pillar .t {
  font-family: 'Fraunces', serif;
  font-size: 18px; font-weight: 450;
  color: var(--brand-cream); margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.pledge-pillar .d {
  font-size: 14px; color: oklch(97% 0.012 80 / 0.72);
  line-height: 1.65; text-wrap: pretty;
}

/* ===== CTA band ===== */
.ctaband {
  background: var(--brand-green-ink); color: var(--brand-cream);
  text-align: center;
}
.ctaband .section { padding: clamp(80px, 12vw, 140px) 22px; max-width: 900px; }
.ctaband .section-kicker { color: var(--brand-peach); justify-content: center; }
.ctaband .section-kicker::before { background: var(--brand-peach); }
.ctaband h2 {
  color: var(--brand-cream); margin: 0 auto 22px;
  max-width: 18ch;
  font-size: clamp(38px, 5vw + 14px, 76px);
}
.ctaband h2 em { color: var(--brand-peach); }
.ctaband p {
  color: oklch(97% 0.012 80 / 0.78);
  max-width: 52ch; margin: 0 auto 36px;
  font-size: 16px; line-height: 1.65;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--brand-cream);
  border: 1px solid oklch(82% 0.12 75 / 0.5);
  font-weight: 500;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 16px 36px;
  text-decoration: none;
  transition: background var(--dur) var(--ease-out), color var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
.btn-primary:hover { background: var(--brand-peach); color: var(--brand-green-deep); border-color: var(--brand-peach); }
.btn-primary:focus-visible { outline: 2px solid var(--brand-peach); outline-offset: 3px; }

/* ===== Footer — editorial centered ===== */
footer {
  background: var(--brand-green-ink); color: oklch(97% 0.012 80 / 0.7);
  padding: 64px 22px 36px;
  border-top: 1px solid oklch(82% 0.12 75 / 0.1);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1fr; gap: 36px;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid oklch(82% 0.12 75 / 0.12);
}
@media (min-width: 800px) { .footer-top { grid-template-columns: 1fr auto 1fr; text-align: left; } }
.footer-brand .wm {
  font-family: 'Fraunces', serif;
  font-size: 22px; letter-spacing: 0.18em;
  color: var(--brand-cream);
  margin-bottom: 8px;
  font-weight: 450;
  font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 96;
}
.footer-brand p {
  font-size: 13px;
  color: oklch(97% 0.012 80 / 0.65);
  margin: 0;
  line-height: 1.6;
  max-width: 32ch;
}
.footer-nav {
  display: flex; flex-wrap: wrap; gap: 28px; justify-content: center;
}
.footer-nav a {
  color: oklch(97% 0.012 80 / 0.78);
  text-decoration: none;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500;
  transition: color var(--dur-fast) var(--ease-out);
}
.footer-nav a:hover { color: var(--brand-peach); }
.footer-contact { text-align: center; }
@media (min-width: 800px) { .footer-contact { text-align: right; } }
.footer-contact a, .footer-contact p {
  font-size: 13px;
  color: oklch(97% 0.012 80 / 0.78);
  text-decoration: none;
  display: block;
  margin: 0 0 6px;
  transition: color var(--dur-fast) var(--ease-out);
}
.footer-contact a:hover { color: var(--brand-peach); }
.footer-contact .phone {
  font-family: 'Geist Mono', ui-monospace, monospace;
  letter-spacing: 0.06em;
  color: var(--brand-peach);
  font-size: 14px;
  margin-bottom: 10px;
}
.footer-disclaimer {
  font-size: 11px; color: oklch(97% 0.012 80 / 0.5); line-height: 1.7;
  text-wrap: pretty;
  text-align: center;
  max-width: 900px; margin: 0 auto;
}
.footer-disclaimer strong { color: oklch(97% 0.012 80 / 0.75); }
.footer-meta {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid oklch(82% 0.12 75 / 0.08);
  font-size: 11px;
  color: oklch(97% 0.012 80 / 0.55);
  letter-spacing: 0.08em;
}

/* ===== Placeholder image (subtle stripes fallback) ===== */
.img-placeholder {
  background:
    repeating-linear-gradient(45deg,
      oklch(28% 0.045 170 / 0.04) 0 8px,
      oklch(28% 0.045 170 / 0.08) 8px 16px);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-muted); font-family: 'Geist Mono', ui-monospace, monospace; font-size: 11px;
}

/* ===== Mobile bottom CTA ===== */
.mobile-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px; padding: 10px 12px;
  background: color-mix(in oklch, var(--brand-cream) 92%, transparent);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line-soft);
}
.mobile-cta a {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 14px; border-radius: 999px; text-decoration: none;
  font-weight: 500; font-size: 14px;
  min-height: 44px;
  transition: background var(--dur-fast) var(--ease-out);
}
.mobile-cta .call { background: var(--brand-cream-warm); color: var(--brand-green-deep); border: 1px solid var(--line); }
.mobile-cta .form { background: var(--brand-green); color: var(--brand-cream); }
.mobile-cta .form:hover { background: var(--brand-green-deep); }
@media (min-width: 900px) { .mobile-cta { display: none; } }
body { padding-bottom: 80px; }
@media (min-width: 900px) { body { padding-bottom: 0; } }

/* ===== Focus states (Impeccable: visible, not suppressed) ===== */
:focus-visible {
  outline: 2px solid var(--brand-peach);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ===== Editorial pull-quote (oversized centered serif on dark) ===== */
.pullquote {
  background: var(--brand-green-ink);
  color: var(--brand-cream);
  padding: clamp(80px, 14vw, 180px) 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pullquote .inner {
  max-width: 1280px; margin: 0 auto;
  position: relative; z-index: 2;
}
.pullquote .kicker {
  display: inline-block;
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: oklch(82% 0.12 75 / 0.85); font-weight: 500;
  font-family: 'Geist Mono', ui-monospace, monospace;
  margin-bottom: 28px;
  padding: 0 18px;
  position: relative;
}
.pullquote .kicker::before,
.pullquote .kicker::after {
  content: ""; position: absolute; top: 50%;
  width: 32px; height: 1px; background: oklch(82% 0.12 75 / 0.35);
}
.pullquote .kicker::before { right: 100%; }
.pullquote .kicker::after { left: 100%; }
.pullquote .quote {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 144;
  font-weight: 400;
  font-size: clamp(34px, 6.5vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--brand-cream);
  text-wrap: balance;
  margin: 0;
}
.pullquote .quote em {
  font-style: italic; color: var(--brand-peach);
  font-weight: 400;
}
.pullquote .attribution {
  margin-top: 36px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: oklch(97% 0.012 80 / 0.55);
  font-weight: 500;
}

/* ===== Asymmetric image+text split (editorial) ===== */
.split {
  background: var(--brand-green-ink);
  color: var(--brand-cream);
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}
.split-text {
  padding: 64px 22px;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 540px;
}
.split-img {
  width: 100%;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  position: relative;
}
.split-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.split .kicker {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--brand-peach); font-weight: 500;
  margin-bottom: 18px;
  font-family: 'Geist Mono', ui-monospace, monospace;
}
.split h3 {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 96;
  font-weight: 400;
  font-size: clamp(28px, 3vw + 16px, 48px);
  line-height: 1.08;
  color: var(--brand-cream);
  margin: 0 0 22px;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.split h3 em { font-style: italic; color: var(--brand-peach); }
.split p {
  font-size: 15px; line-height: 1.7;
  color: oklch(97% 0.012 80 / 0.78);
  margin: 0 0 14px;
  text-wrap: pretty;
}
.split .learn-more {
  display: inline-block;
  margin-top: 24px;
  padding-bottom: 6px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brand-peach);
  text-decoration: none;
  border-bottom: 1px solid oklch(82% 0.12 75 / 0.45);
  font-weight: 500;
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.split .learn-more:hover {
  color: var(--brand-cream);
  border-bottom-color: var(--brand-cream);
}

@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; min-height: 80vh; }
  .split-text { padding: 100px 80px; max-width: none; }
  .split-img { aspect-ratio: auto; height: 100%; }
  .split.text-right .split-text { order: 2; }
  .split.text-right .split-img { order: 1; }
  .split.narrow-text { grid-template-columns: 0.85fr 1.15fr; }
  .split.narrow-text.text-right { grid-template-columns: 1.15fr 0.85fr; }
}

/* ===== Lead form section (dedicated, dark) ===== */
.form-section {
  background: var(--brand-green-ink);
  color: var(--brand-cream);
  padding: clamp(80px, 12vw, 140px) 22px;
}
.form-section .inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 56px;
  align-items: center;
}
@media (min-width: 900px) {
  .form-section .inner { grid-template-columns: 1fr 1fr; gap: 80px; }
}
.form-section .intro h2 {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 144;
  font-weight: 400;
  font-size: clamp(34px, 4vw + 14px, 64px);
  line-height: 1.05;
  color: var(--brand-cream);
  margin: 16px 0 22px;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.form-section .intro h2 em { font-style: italic; color: var(--brand-peach); }
.form-section .intro p {
  font-size: 15px; line-height: 1.7;
  color: oklch(97% 0.012 80 / 0.78);
  max-width: 46ch;
  text-wrap: pretty;
}
.form-section .intro .kicker {
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--brand-peach); font-weight: 500;
  font-family: 'Geist Mono', ui-monospace, monospace;
}

/* ===== Editorial footer (matches reference) ===== */
.footer-editorial { text-align: left; }
.footer-editorial .nav-row {
  display: flex; flex-wrap: wrap; gap: 28px; justify-content: center;
  margin: 30px 0;
}
.footer-editorial .nav-row a {
  color: oklch(97% 0.012 80 / 0.75);
  text-decoration: none;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500;
}
.footer-editorial .nav-row a:hover { color: var(--brand-peach); }

/* ===== Scroll reveal ===== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.72s var(--ease-out), transform 0.72s var(--ease-out);
  }
  .reveal.revealed { opacity: 1; transform: none; }
  .reveal-d1 { transition-delay: 0.12s; }
  .reveal-d2 { transition-delay: 0.24s; }
  .reveal-d3 { transition-delay: 0.36s; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; }
}
