:root {
  --bg-deep: #0c0a09;
  --bg-section: #1a1714;
  --bg-card: #231f1a;
  --bg-featured: #2a1f0f;
  --gold: #c9a84c;
  --gold-light: #e8d48b;
  --gold-dim: #8a7234;
  --cream: #f5f0e8;
  --cream-muted: #b8b0a2;
  --burgundy: #6b2737;
  --burgundy-light: #8a3a4c;
  --text-primary: #f5f0e8;
  --text-secondary: #b8b0a2;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 80px 24px;
  background: linear-gradient(160deg, #0c0a09 0%, #1a1208 40%, #0c0a09 100%);
}

.hero-inner {
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-tag {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 32px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-lede {
  font-size: 20px;
  line-height: 1.7;
  color: var(--cream-muted);
  max-width: 600px;
  margin: 0 auto;
}

.hero-accent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* PROBLEM */
.problem {
  padding: 120px 24px;
  background: var(--bg-section);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.problem-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: center;
}

.problem-stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  color: var(--burgundy-light);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-top: 12px;
}

.problem-text h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 20px;
}

.problem-text p {
  font-size: 18px;
  color: var(--cream-muted);
  line-height: 1.8;
}

/* STREAMS */
.streams {
  padding: 120px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.streams-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--cream);
  text-align: center;
  margin-bottom: 64px;
}

.streams-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stream-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.3s, transform 0.3s;
}

.stream-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-2px);
}

.stream-featured {
  background: var(--bg-featured);
  border-color: rgba(201, 168, 76, 0.2);
}

.stream-range {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
}

.stream-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
}

.stream-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--cream-muted);
}

/* APPROACH */
.approach {
  padding: 120px 24px;
  background: var(--bg-section);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.approach-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.approach h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 64px;
}

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

.approach-block {
  position: relative;
}

.approach-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.15);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.approach-block h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.approach-block p {
  font-size: 16px;
  color: var(--cream-muted);
  line-height: 1.7;
}

/* CLOSING */
.closing {
  padding: 140px 24px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-deep) 0%, #1a1208 50%, var(--bg-deep) 100%);
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 28px;
}

.closing h2 em {
  font-style: italic;
  color: var(--gold);
}

.closing p {
  font-size: 18px;
  color: var(--cream-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.closing-accent {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--gold-dim);
  margin-top: 32px;
}

/* FOOTER */
.site-footer {
  padding: 40px 24px;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
}

.footer-divider {
  width: 1px;
  height: 16px;
  background: rgba(201, 168, 76, 0.2);
}

.footer-tagline {
  font-size: 14px;
  color: var(--cream-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .streams-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .approach-blocks {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .problem-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }
  .hero {
    min-height: 90vh;
    padding: 60px 20px;
  }
  .hero-tag {
    font-size: 12px;
    letter-spacing: 2px;
  }
  .hero-lede {
    font-size: 17px;
  }
  .streams-grid {
    grid-template-columns: 1fr;
  }
  .streams {
    padding: 80px 20px;
  }
  .problem {
    padding: 80px 20px;
  }
  .approach {
    padding: 80px 20px;
  }
  .closing {
    padding: 100px 20px;
  }
  .stat-number {
    font-size: 48px;
  }
}