:root {
  --bg: #F6F1E9;
  --bg-dark: #EDE7D9;
  --fg: #1A1A1A;
  --fg-muted: #6B6560;
  --accent: #E05D1A;
  --forest: #1E3A0F;
  --forest-light: #2D5217;
  --cream: #FBF8F3;
  --border: #D9D0C0;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  line-height: 1.15;
}

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--forest);
}

.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* ── HERO ── */
.hero {
  padding: 80px 48px 100px;
  background: var(--forest);
  color: var(--cream);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(224,93,26,0.12) 0%, transparent 60%);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(42px, 5vw, 64px);
  font-family: 'Fraunces', serif;
  font-weight: 700;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 17px;
  color: rgba(251,248,243,0.75);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat { display: flex; flex-direction: column; }

.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--cream);
}

.stat-label {
  font-size: 12px;
  color: rgba(251,248,243,0.6);
  letter-spacing: 0.04em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(251,248,243,0.2);
}

/* ── BUILDING SCENE ── */
.hero-visual { display: flex; justify-content: center; align-items: flex-end; }

.building-scene {
  position: relative;
  width: 320px;
  height: 320px;
}

.moon {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(251,248,243,0.15);
  box-shadow: 0 0 0 8px rgba(251,248,243,0.05);
}

.stars { position: absolute; inset: 0; }

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(251,248,243,0.4);
  animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.9; }
}

.building-body {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px 4px 0 0;
  padding: 8px;
}

.apartment-rows { display: flex; flex-direction: column; gap: 6px; }

.floor { display: flex; gap: 6px; }

.apt-window {
  width: 32px;
  height: 28px;
  background: rgba(251,248,243,0.08);
  border: 1px solid rgba(251,248,243,0.12);
  border-radius: 2px;
  position: relative;
}

.apt-window.has-bags { background: rgba(224,93,26,0.15); border-color: rgba(224,93,26,0.4); }

.bags {
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 14px;
  background: #E05D1A;
  border-radius: 2px 2px 0 0;
  box-shadow: -8px 0 0 #c04d14, 0 -4px 0 #f07030;
}

.ground {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: rgba(0,0,0,0.2);
  border-radius: 2px;
  display: flex;
  align-items: flex-end;
  padding: 0 20px;
  gap: 16px;
}

.dumpster {
  width: 36px;
  height: 28px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
}

.van {
  position: relative;
  width: 80px;
  height: 40px;
  display: flex;
  align-items: flex-end;
}

.van-body {
  width: 56px;
  height: 28px;
  background: rgba(224,93,26,0.6);
  border-radius: 3px 8px 3px 3px;
}

.van-cabin {
  width: 24px;
  height: 28px;
  background: rgba(224,93,26,0.9);
  border-radius: 3px 3px 3px 0;
}

.van-wheel {
  position: absolute;
  bottom: -6px;
  width: 14px;
  height: 14px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
}

.van-wheel-front { left: 4px; }
.van-wheel-rear { right: 10px; }

.valet-worker {
  position: absolute;
  right: -10px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.valet-head {
  width: 10px;
  height: 10px;
  background: rgba(251,248,243,0.5);
  border-radius: 50%;
}

.valet-body {
  width: 10px;
  height: 18px;
  background: var(--forest-light);
  border-radius: 3px;
  position: relative;
}

.valet-vest {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--accent);
  border-radius: 2px 2px 0 0;
}

/* ── SECTION COMMON ── */
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 14px;
}

.section-headline {
  font-size: clamp(28px, 3.5vw, 46px);
  font-family: 'Fraunces', serif;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 56px;
}

/* ── HOW IT WORKS ── */
.howitworks {
  padding: 100px 48px;
  background: var(--cream);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(30,58,15,0.08);
}

.step-num {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 300;
  color: rgba(30,58,15,0.12);
  line-height: 1;
  margin-bottom: 20px;
}

.step-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.step-icon {
  width: 48px;
  height: 48px;
}

.step-icon svg { width: 100%; height: 100%; }

/* ── OUTCOMES ── */
.outcomes {
  padding: 100px 48px;
  background: var(--bg);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}

.outcome-list { display: flex; flex-direction: column; gap: 32px; }

.outcome {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.outcome-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  margin-top: 2px;
}

.outcome-icon svg { width: 100%; height: 100%; }

.outcome h4 {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 6px;
}

.outcome p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── PROOF CARD ── */
.proof-card {
  background: var(--forest);
  color: var(--cream);
  border-radius: 16px;
  padding: 40px 36px;
  position: sticky;
  top: 40px;
}

.proof-quote {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(251,248,243,0.9);
  margin-bottom: 16px;
}

.proof-source {
  font-size: 12px;
  color: rgba(251,248,243,0.5);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.proof-divider {
  height: 1px;
  background: rgba(251,248,243,0.15);
  margin-bottom: 28px;
}

.proof-num {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.proof-desc {
  font-size: 14px;
  color: rgba(251,248,243,0.65);
  line-height: 1.55;
}

/* ── PRICING ── */
.pricing {
  padding: 100px 48px;
  background: var(--cream);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
}

.pricing-card--primary {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--cream);
}

.pricing-tier {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 16px;
}

.pricing-amount {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 32px;
}

.pricing-dollar { font-size: 24px; vertical-align: top; margin-top: 6px; display: inline-block; }
.pricing-unit { font-size: 14px; font-weight: 400; color: var(--fg-muted); margin-left: 4px; }
.pricing-card--primary .pricing-unit { color: rgba(251,248,243,0.6); }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--fg-muted);
}

.pricing-card--primary .pricing-features li { color: rgba(251,248,243,0.7); }

.pricing-features svg { flex-shrink: 0; }

.pricing-example { border-top: 1px solid var(--border); padding-top: 24px; }
.pricing-card--primary .pricing-example { border-color: rgba(251,248,243,0.15); }

.example-calc { display: flex; flex-direction: column; gap: 8px; }

.calc-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}

.calc-row--small { font-size: 13px; opacity: 0.65; }

.calc-arrow { color: var(--accent); font-size: 18px; }

.calc-result {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ── CLOSING ── */
.closing {
  padding: 100px 48px;
  background: var(--forest);
  color: var(--cream);
}

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

.closing-text {
  max-width: 700px;
}

.closing h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-family: 'Fraunces', serif;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 24px;
  line-height: 1.15;
}

.closing p {
  font-size: 17px;
  color: rgba(251,248,243,0.7);
  line-height: 1.75;
  max-width: 600px;
}

/* ── FOOTER ── */
.footer {
  padding: 40px 48px;
  background: #162D0B;
  color: rgba(251,248,243,0.5);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--cream);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(251,248,243,0.4);
  margin-bottom: 24px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(251,248,243,0.25);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .proof-card { position: static; }
  .pricing-grid { grid-template-columns: 1fr; }
  .nav { padding: 16px 24px; }
  .hero { padding: 60px 24px 80px; }
  .howitworks, .outcomes, .pricing, .closing { padding: 60px 24px; }
}

@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  .hero-headline { font-size: 36px; }
  .section-headline { font-size: 28px; }
}