:root {
  --bg: #F5EFE6;
  --surface: #FDFAF4;
  --sage: #7C9A82;
  --sage-dark: #5A7260;
  --forest: #1E2E1E;
  --sand: #E8DDD0;
  --text: #1C1C1C;
  --text-muted: #6B6B5F;
  --border: rgba(124, 154, 130, 0.3);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', 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: 20px 40px;
  background: rgba(245, 239, 230, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--forest);
  letter-spacing: 0.01em;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -180px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124,154,130,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124,154,130,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--forest);
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 460px;
}

/* STAT GRID */
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--surface);
}
.stat {
  padding: 32px 28px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--sage-dark);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  font-weight: 400;
}

/* FEATURES */
.features {
  padding: 80px 40px;
  background: var(--surface);
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.feature-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  transition: transform 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-2px);
}
.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(124,154,130,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-dark);
  margin-bottom: 16px;
}
.feature-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--forest);
  margin-bottom: 10px;
  font-weight: 400;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 40px;
  background: var(--forest);
  text-align: center;
}
.manifesto-inner {
  max-width: 680px;
  margin: 0 auto;
}
.manifesto blockquote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #F5EFE6;
  line-height: 1.2;
  margin-bottom: 32px;
  font-style: normal;
}
.manifesto p {
  font-size: 1rem;
  color: rgba(245,239,230,0.7);
  line-height: 1.7;
}

/* CLOSING */
.closing {
  padding: 100px 40px;
  text-align: center;
}
.closing-inner {
  max-width: 680px;
  margin: 0 auto;
}
.closing h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 24px;
}
.closing p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* FOOTER */
.footer {
  padding: 32px 40px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer p {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 120px 24px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-sub { max-width: 100%; }
  .features { padding: 60px 24px; }
  .features-inner { grid-template-columns: 1fr; }
  .manifesto { padding: 70px 24px; }
  .closing { padding: 70px 24px; }
  .footer { padding: 24px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 24px 20px; }
  .stat-num { font-size: 1.6rem; }
}