:root {
  --bg: #FEFDFB;
  --bg-alt: #F5F0E8;
  --fg: #1B2E1C;
  --fg-muted: #5C6B5E;
  --accent: #C4622D;
  --accent-warm: #E8855A;
  --green: #1B4332;
  --green-light: #2D6A4F;
  --border: #E2D9C8;
  --radius: 8px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Figtree', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(254, 253, 251, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--fg);
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
  padding: 4px 2px;
}
.nav-link:hover { color: var(--fg); }
.nav-link--active { color: var(--accent); }

/* SECTION LABEL */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

/* HERO — full-bleed cinematic */
.hero-full {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15, 30, 20, 0.72) 0%,
    rgba(15, 30, 20, 0.55) 50%,
    rgba(15, 30, 20, 0.30) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  display: block;
  margin-bottom: 16px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.80);
  max-width: 460px;
  line-height: 1.65;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 2px 12px rgba(196,98,45,0.35);
}

.btn-primary:hover {
  background: var(--accent-warm);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(196,98,45,0.45);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.40);
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}

.btn-outline-light:hover {
  border-color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08);
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
}

/* PROOF */
.proof {
  background: var(--green);
  color: white;
  padding: 40px 24px;
}

.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}

.proof-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}

.proof-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}

.proof-label {
  font-size: 0.85rem;
  opacity: 0.75;
  text-align: center;
}

.proof-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* HOW */
.how {
  padding: 100px 24px;
  background: var(--bg);
}

.how-header {
  max-width: 1100px;
  margin: 0 auto 64px;
}

.how-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.how-steps {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  padding: 0 32px;
}

.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }

.step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.step p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.step-connector {
  width: 60px;
  height: 1px;
  background: var(--border);
  margin-top: 36px;
  flex-shrink: 0;
}

/* CATEGORIES */
.categories {
  padding: 80px 24px;
  background: var(--bg-alt);
}

.categories-header {
  max-width: 1100px;
  margin: 0 auto 48px;
}

.categories-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.cat-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.cat-card:hover {
  box-shadow: 0 8px 32px rgba(27, 67, 50, 0.08);
  transform: translateY(-2px);
}

.cat-icon {
  margin-bottom: 8px;
}

.cat-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.cat-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.cat-card-cta {
  border-color: var(--accent);
  border-style: dashed;
}

/* TRUST */
.trust {
  padding: 100px 24px;
  background: var(--bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.trust-card-stack {
  position: relative;
  height: 280px;
}

.trust-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(27, 67, 50, 0.06);
}

.card-back {
  position: absolute;
  top: 20px;
  left: 20px;
  right: -10px;
  transform: rotate(-2deg);
  opacity: 0.6;
}

.card-front {
  position: absolute;
  top: 0;
  left: 0;
  right: 20px;
}

.trust-card-inner { display: flex; flex-direction: column; gap: 10px; }

.trust-card-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.trust-stars { display: flex; gap: 2px; }

.trust-card-text {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
  font-style: italic;
}

.trust-card-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fg);
}

.trust-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.trust-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-identity { flex: 1; }

.trust-name {
  font-weight: 600;
  font-size: 0.9rem;
  display: block;
}

.trust-loc {
  font-size: 0.75rem;
  color: var(--fg-muted);
  display: block;
}

.trust-score {
  display: flex;
  align-items: center;
  gap: 3px;
  font-weight: 700;
  font-size: 0.9rem;
}

.trust-badge-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.trust-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--fg-muted);
}

.trust-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.trust-desc {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.trust-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
}

/* NEIGHBORHOOD */
.neighborhood {
  padding: 80px 24px;
  background: var(--bg-alt);
}

.neighborhood-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.neighborhood-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.neighborhood-copy > p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.neighborhood-comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 10px;
  background: white;
  border: 1px solid var(--border);
}

.comp-local { border-left: 3px solid var(--green); }

.comp-title {
  font-weight: 700;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 4px;
  color: var(--green);
}

.comp-detail {
  font-size: 0.8rem;
  color: var(--fg-muted);
  display: block;
}

/* MAP ILLUSTRATION */
.map-illustration {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  height: 260px;
  position: relative;
}

.map-river {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(100, 160, 200, 0.15));
  border-left: 2px solid rgba(100, 160, 200, 0.3);
}

.map-nighborhood {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.map-streets {
  position: relative;
  height: 160px;
}

.street {
  position: absolute;
  background: var(--border);
  border-radius: 2px;
}

.street-h1 { height: 4px; top: 40px; left: 10%; right: 10%; }
.street-h2 { height: 4px; top: 100px; left: 10%; right: 10%; }
.street-v1 { width: 4px; left: 30%; top: 20px; bottom: 20px; }
.street-v2 { width: 4px; left: 65%; top: 20px; bottom: 20px; }

.map-pins { position: absolute; inset: 0; }

.pin {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.pin.active {
  background: var(--accent);
}

.pin::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--accent);
}

.pin:not(.active)::after { border-top-color: var(--border); }

.pin-1 { top: 30px; left: 22%; }
.pin-2 { top: 70px; left: 70%; }
.pin-3 { top: 55px; left: 48%; }
.pin-4 { top: 120px; left: 35%; }
.pin-5 { top: 15px; left: 58%; }
.pin-6 { top: 130px; left: 75%; }

.map-label {
  text-align: center;
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-weight: 500;
  margin-top: 12px;
}

/* CLOSING */
.closing {
  padding: 100px 24px;
  background: var(--green);
  color: white;
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing .section-label {
  color: rgba(255,255,255,0.6);
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.closing p {
  font-size: 1.05rem;
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 40px;
}

.closing-note {
  font-size: 1rem;
  opacity: 0.75;
  font-style: italic;
}

/* FOOTER */
.footer {
  padding: 40px 24px;
  background: var(--fg);
  color: rgba(255,255,255,0.5);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: white;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.9rem;
}

.footer-copy {
  font-size: 0.8rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-full {
    min-height: 480px;
  }

  .hero-content {
    padding: 60px 20px;
  }

  .hero-headline {
    font-size: 2.5rem;
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  .how-steps {
    flex-direction: column;
    gap: 48px;
  }
  
  .step { padding: 0; }
  
  .step-connector { display: none; }
  
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .trust {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .neighborhood-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .proof-inner {
    flex-direction: column;
    gap: 32px;
  }
  
  .proof-divider {
    width: 60px;
    height: 1px;
  }
  
  .proof-number { font-size: 2rem; }
  
  .market-scene { height: 200px; }
}

@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr 1fr; }
  
  .hero { padding: 60px 16px 40px; }
  
  .how { padding: 60px 16px; }
  
  .categories { padding: 60px 16px; }
  
  .trust { padding: 60px 16px; }
  
  .neighborhood { padding: 60px 16px; }
  
  .closing { padding: 60px 16px; }
}