:root {
  --bg: #F7F3ED;
  --fg: #1C3D2E;
  --accent: #B87333;
  --accent-light: #D4955A;
  --muted: #8A9E8C;
  --surface: #EDE8DF;
  --surface-dark: #1A352A;
  --text-light: #E8E0D5;
  --text-muted-light: #A8B8A9;
}

*, *::before, *::after { 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: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

/* HERO */
.hero {
  background: var(--surface-dark);
  color: var(--text-light);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #F7F3ED;
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent-light);
}

.hero-sub {
  font-size: 19px;
  line-height: 1.65;
  color: var(--text-muted-light);
  max-width: 440px;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.stat-block {
  padding: 32px 0;
}

.stat-block + .stat-block {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 6px;
}

.stat-label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 4px;
}

.stat-footnote {
  display: block;
  font-size: 13px;
  color: var(--text-muted-light);
  font-style: italic;
}

/* HOW IT WORKS */
.howitworks {
  padding: 100px 0;
  background: var(--bg);
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.howitworks h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 64px;
  max-width: 560px;
}

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

.step {
  position: relative;
}

.step-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 64px;
  font-weight: 900;
  color: rgba(28, 61, 46, 0.1);
  line-height: 1;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  color: #5A6E60;
  line-height: 1.65;
}

/* FEATURES */
.features {
  padding: 100px 0;
  background: var(--surface);
}

.features h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 56px;
  line-height: 1.25;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--fg);
  border: 2px solid var(--fg);
}

.feature-card {
  background: var(--surface);
  padding: 40px 36px;
  transition: background 0.2s;
}

.feature-card:hover {
  background: var(--bg);
}

.feature-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: #5A6E60;
  line-height: 1.65;
}

/* MANIFESTO */
.manifesto {
  background: var(--fg);
  color: var(--text-light);
  padding: 100px 0;
}

.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-light);
  max-width: 820px;
  margin-bottom: 48px;
}

.manifesto-divider {
  width: 80px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 48px;
}

.manifesto-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.m-stat strong {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 8px;
}

.m-stat span {
  font-size: 14px;
  color: var(--text-muted-light);
  line-height: 1.6;
}

/* FOOTER */
footer {
  background: var(--surface-dark);
  color: var(--text-muted-light);
  padding: 60px 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}

.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-light);
  display: block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted-light);
  max-width: 340px;
  line-height: 1.65;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted-light);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-stats { display: flex; flex-direction: row; gap: 32px; }
  .stat-block { flex: 1; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .manifesto-stats { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { flex-direction: column; }
}

@media (max-width: 600px) {
  .container { padding: 0 24px; }
  .hero-content { padding: 0 24px; }
  .manifesto-inner { padding: 0 24px; }
  .footer-inner { padding: 0 24px; }
  .feature-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; }
  .hero h1 { font-size: 44px; }
  .stat-number { font-size: 36px; }
}