:root {
  --bg: #FAF7F2;
  --fg: #1a1a1a;
  --accent: #4a7c59;
  --accent-warm: #c8956c;
  --muted: #6b6b5f;
  --border: #e2ddd5;
  --card-bg: #ffffff;
}

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

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: 500;
  line-height: 1.15;
}

em { font-style: italic; }

/* Navigation */
.nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  padding: 80px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 580px;
}
.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-title em { color: var(--accent); }
.hero-lede {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--fg);
}
.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}
.orb-1 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, #4a7c59 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.orb-2 {
  width: 160px; height: 160px;
  background: radial-gradient(circle, #c8956c 0%, transparent 70%);
  top: 20%; right: 15%;
}
.orb-3 {
  width: 120px; height: 120px;
  background: radial-gradient(circle, #d4b896 0%, transparent 70%);
  bottom: 15%; left: 20%;
}
.orb-ring {
  position: absolute;
  width: 240px; height: 240px;
  border: 1px solid rgba(74, 124, 89, 0.25);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.orb-ring::after {
  content: '';
  position: absolute;
  width: 180px; height: 180px;
  border: 1px solid rgba(200, 149, 108, 0.2);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

/* Why Section */
.why {
  background: #f4f0e8;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 48px;
}
.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 24px;
}
.section-title em { color: var(--accent-warm); }
.why-body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.why-right { display: flex; flex-direction: column; gap: 20px; }
.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.why-card-icon {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.why-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fg);
}
.why-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Streams Section */
.streams {
  padding: 96px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.streams-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 16px;
  font-weight: 500;
}
.streams-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stream-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stream-card-1 { border-top: 3px solid var(--accent); }
.stream-card-2 { border-top: 3px solid var(--accent-warm); }
.stream-card-3 { border-top: 3px solid #b8966e; }
.stream-icon {
  color: var(--fg);
  opacity: 0.7;
}
.stream-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
}
.stream-card > p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}
.stream-tags {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}
.stream-tags li {
  font-size: 0.78rem;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
}
.stream-tags li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}
.stream-card-2 .stream-tags li::before { background: var(--accent-warm); }
.stream-card-3 .stream-tags li::before { background: #b8966e; }
.stream-signal {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.signal-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Manifesto */
.manifesto {
  background: var(--fg);
  color: #faf7f2;
  padding: 96px 48px;
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  font-style: italic;
  color: #faf7f2;
  line-height: 1.4;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}
.manifesto-body p {
  font-size: 0.95rem;
  color: rgba(250, 247, 242, 0.65);
  line-height: 1.8;
  margin-bottom: 20px;
}
.manifesto-pillars {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.55);
}
.pillar-icon {
  display: flex;
  align-items: center;
  color: var(--accent-warm);
}

/* Closing */
.closing {
  padding: 96px 48px;
  background: var(--bg);
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.closing-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.closing-title em { color: var(--accent); }
.closing-body {
  font-size: 1rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 56px;
  line-height: 1.7;
}
.closing-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 16px;
  height: 80px;
}
.layer {
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(1px);
}
.layer-1 { width: 80px; height: 80px; background: var(--accent); }
.layer-2 { width: 60px; height: 60px; background: var(--accent-warm); }
.layer-3 { width: 40px; height: 40px; background: #b8966e; }

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1rem;
  display: block;
  margin-bottom: 8px;
}
.footer-brand p {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 320px;
  line-height: 1.6;
}
.footer-note {
  font-size: 0.75rem;
  color: var(--muted);
  font-style: italic;
}

/* Responsive */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 40px;
  }
  .hero-visual { display: none; }
  .hero-title { font-size: 2.6rem; }
  .why { padding: 64px 24px; }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .streams { padding: 64px 24px; }
  .streams-grid { grid-template-columns: 1fr; }
  .manifesto { padding: 64px 24px; }
  .closing { padding: 64px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .manifesto-pillars { gap: 16px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .stat-num { font-size: 1.2rem; }
  .why-card { padding: 20px; }
  .stream-card { padding: 24px 20px; }
}