:root {
  --bg: #F5F0E8;
  --bg-alt: #EDE8DC;
  --fg: #1A1A18;
  --fg-muted: #5C5A52;
  --accent: #C9A84C;
  --accent-dark: #A8893D;
  --green: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #40916C;
  --white: #FFFFFF;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 clamp(24px, 5vw, 80px);
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27,67,50,0.08);
}
.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--green);
  letter-spacing: -0.02em;
}
.nav-tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(80px, 15vw, 140px) clamp(24px, 5vw, 80px) clamp(80px, 12vw, 120px);
  overflow: hidden;
}
.hero-bg-texture {
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(27,67,50,0.12) 0%, transparent 60%),
    linear-gradient(135deg, transparent 60%, rgba(201,168,76,0.08) 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--green);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 500px;
}

/* Stat stack */
.stat-stack {
  background: var(--green);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}

/* How */
.how {
  background: var(--white);
  padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 80px);
}
.how-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600;
  color: var(--green);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 64px;
}
.step-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 20px;
}
.step-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.step-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Difference */
.difference {
  background: var(--bg);
  padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 80px);
}
.diff-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: start;
}
.diff-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 48px;
}
.diff-pillars { display: flex; flex-direction: column; gap: 28px; }
.pillar { display: flex; gap: 16px; align-items: flex-start; }
.pillar-icon {
  font-size: 16px;
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}
.pillar-title { font-size: 16px; font-weight: 600; color: var(--fg); margin-bottom: 4px; }
.pillar-body { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* Quote */
.quote-block {
  background: var(--green);
  border-radius: 16px;
  padding: 40px 36px;
  margin-top: 80px;
}
.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}

/* Markets */
.markets {
  background: var(--bg-alt);
  padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 80px);
}
.markets-inner { max-width: 1100px; margin: 0 auto; }
.market-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.market-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 24px;
  border: 1px solid rgba(27,67,50,0.08);
}
.market-city {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 12px;
}
.market-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.market-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(201,168,76,0.12);
  padding: 4px 10px;
  border-radius: 4px;
}

/* Closing */
.closing {
  background: var(--green);
  padding: clamp(80px, 12vw, 140px) clamp(24px, 5vw, 80px);
  text-align: center;
}
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 64px;
}
.closing-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}
.cstat { display: flex; flex-direction: column; gap: 6px; align-items: center; }
.cstat-val {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}
.cstat-key {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Footer */
.footer {
  background: #141E17;
  padding: 48px clamp(24px, 5vw, 80px);
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-brand { margin-bottom: 24px; }
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}
.footer-meta {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
}
.footer-meta span {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .stat-stack { flex-direction: row; flex-wrap: wrap; gap: 24px; }
  .stat { flex: 1; min-width: 120px; }
  .diff-inner { grid-template-columns: 1fr; }
  .quote-block { margin-top: 0; }
  .step-row { grid-template-columns: 1fr; gap: 40px; }
  .market-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .market-grid { grid-template-columns: 1fr; }
  .closing-stats { gap: 32px; }
}