:root {
  --bg: #FAF6F0;
  --fg: #1A1A1A;
  --accent: #B5542A;
  --green: #1B4332;
  --sand: #E8D5B7;
  --sand-dark: #D4B98A;
  --warm: #F2E8D9;
  --muted: #6B5F52;
  --light: #FDFBF8;
  --border: #E0D4C4;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  --radius: 4px;
  --radius-lg: 12px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 300;
  flex: 1;
}
.nav-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: opacity 0.15s ease;
  white-space: nowrap;
}
.nav-cta:hover { opacity: 0.88; }

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 7rem 2rem 6rem;
  border-bottom: 1px solid var(--border);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-geo {
  position: absolute;
  border-radius: 50%;
  opacity: 0.35;
}
.hero-geo-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #D4B98A 0%, transparent 70%);
  top: -200px; right: -100px;
}
.hero-geo-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #1B4332 0%, transparent 70%);
  bottom: -100px; left: -80px;
  opacity: 0.12;
}
.hero-geo-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, #B5542A 0%, transparent 70%);
  top: 40%; right: 30%;
  opacity: 0.15;
}
.hero-geo-4 {
  width: 150px; height: 150px;
  background: radial-gradient(circle, #D4B98A 0%, transparent 70%);
  bottom: 20%; right: 10%;
  opacity: 0.2;
}
.hero-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.75rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.25rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
  font-weight: 300;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-stat {}
.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 400;
}
.hero-stat-div {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── SHARED SECTION STYLES ── */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin-bottom: 2.5rem;
}

/* ── HOW IT WORKS ── */
.works {
  padding: var(--space-2xl) 2rem;
  background: var(--light);
  border-bottom: 1px solid var(--border);
}
.works-grid {
  max-width: 1100px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.works-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.works-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--sand-dark);
  display: block;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.works-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--fg);
}
.works-card p {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.55;
}
.works-quote {
  max-width: 1100px;
  margin: 0 auto;
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
}
.works-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--fg);
}
.works-quote span {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 400;
  margin-top: 0.25rem;
  display: block;
}

/* ── CATEGORIES ── */
.categories {
  padding: var(--space-2xl) 2rem;
  border-bottom: 1px solid var(--border);
}
.cat-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.cat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color 0.2s ease;
}
.cat-card:hover {
  border-color: var(--sand-dark);
}
.cat-card-lg {
  grid-column: span 1;
}
.cat-icon {
  width: 48px;
  height: 48px;
  background: var(--warm);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--accent);
}
.cat-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--fg);
}
.cat-card p {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 300;
}

/* ── TRUST ── */
.trust {
  padding: var(--space-2xl) 2rem;
  background: var(--green);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.trust-left .section-label {
  color: #A8D5B5;
}
.trust-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #FAF6F0;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
}
.trust-body {
  font-size: 0.95rem;
  color: #C5D9C3;
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.65;
}
.trust-items {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #FAF6F0;
  font-size: 0.9rem;
  font-weight: 400;
}
.trust-check {
  width: 22px;
  height: 22px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.trust-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}
.trust-card-icon {
  color: #A8D5B5;
  margin-bottom: 1.25rem;
}
.trust-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: #FAF6F0;
  margin-bottom: 0.6rem;
}
.trust-card p {
  font-size: 0.85rem;
  color: #C5D9C3;
  font-weight: 300;
  margin-bottom: 1.75rem;
}
.trust-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.trust-amount-label {
  font-size: 0.75rem;
  color: #A8D5B5;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── STORIES ── */
.stories {
  padding: var(--space-2xl) 2rem;
  background: var(--warm);
  border-bottom: 1px solid var(--border);
}
.stories-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.story-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.story-initial {
  width: 36px;
  height: 36px;
  background: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
  margin-bottom: 0.85rem;
}
.story-content h4 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.story-content p {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.story-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent);
  background: rgba(181, 84, 42, 0.1);
  padding: 0.2rem 0.55rem;
  border-radius: 2px;
}

/* ── NEIGHBORHOODS ── */
.neighborhoods {
  padding: var(--space-2xl) 2rem;
  border-bottom: 1px solid var(--border);
}
.hood-grid {
  max-width: 1100px;
  margin: 0 auto 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hood-item {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  transition: all 0.2s ease;
}
.hood-item:hover {
  background: var(--sand);
  border-color: var(--sand-dark);
}
.hood-footer {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  font-weight: 300;
}
.neighborhoods-body {
  max-width: 1100px;
  margin: 0 auto 2rem;
  font-size: 1rem;
  color: var(--muted);
  font-weight: 300;
}

/* ── CLOSING ── */
.closing {
  padding: var(--space-2xl) 2rem;
  background: var(--fg);
  text-align: center;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--sand);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.closing p {
  font-size: 1.05rem;
  color: #A89880;
  font-weight: 300;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}
.closing-cta {}
.closing-cta-text {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sand-dark);
}

/* ── FOOTER ── */
.footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
}
.footer-sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin-left: 0.75rem;
  font-weight: 300;
}
.footer-brand {
  display: flex;
  align-items: center;
}
.footer-meta {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { padding: 4rem 1.5rem 4rem; }
  .hero-stats { gap: 1.25rem; }
  .hero-stat-div { display: none; }
  .works-grid { grid-template-columns: 1fr; gap: 1rem; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .stories-grid { grid-template-columns: repeat(2, 1fr); }
  .trust { grid-template-columns: 1fr; gap: 2.5rem; }
  .closing h2 br { display: none; }
}

@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.2rem; }
  .footer-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
  .footer-brand { flex-direction: column; }
}