:root {
  --bg: #faf6f1;
  --bg-warm: #f3ece3;
  --bg-deep: #2c1810;
  --fg: #2c1810;
  --fg-muted: #6b5a4e;
  --fg-light: #9a8a7c;
  --accent: #c67b5c;
  --accent-soft: #e8c4b0;
  --accent-glow: #d4956f;
  --sage: #8a9a7b;
  --sage-soft: #c5d4b8;
  --cream: #fff8f0;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 20% 80%, var(--accent-soft) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 20%, var(--sage-soft) 0%, transparent 70%),
    linear-gradient(160deg, var(--cream) 0%, var(--bg) 50%, var(--bg-warm) 100%);
  z-index: 0;
}

.hero-accent {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sage-soft) 0%, transparent 70%);
  opacity: 0.3;
  z-index: 0;
}

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

.hero-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--accent-soft);
  border-radius: 100px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 2rem;
}

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

.hero .lede {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--fg-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ─── Pillars ─── */
.pillars {
  padding: 8rem 2rem;
  background: var(--cream);
}

.pillars-header {
  max-width: 700px;
  margin: 0 auto 5rem;
  text-align: center;
}

.pillars-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.pillars-header p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.8;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 1000px;
  margin: 0 auto;
  background: var(--accent-soft);
  border-radius: 16px;
  overflow: hidden;
}

.pillar {
  background: var(--cream);
  padding: 3rem 2.5rem;
  transition: background 0.3s ease;
}

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

.pillar-number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--fg);
}

.pillar p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* Subtle left borders for visual rhythm */
.pillar-nutrition { border-left: 3px solid var(--accent); }
.pillar-strength { border-left: 3px solid var(--sage); }
.pillar-mind { border-left: 3px solid var(--accent-glow); }
.pillar-nature { border-left: 3px solid var(--sage-soft); }

/* ─── Story ─── */
.story {
  padding: 8rem 2rem;
  background: var(--bg-deep);
  color: var(--cream);
}

.story-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 1.5rem;
}

.story-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 2rem;
  color: var(--cream);
}

.story-text p {
  font-size: 1rem;
  color: rgba(255,248,240,0.75);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.story-stats {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--accent);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent-soft);
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,248,240,0.6);
  letter-spacing: 0.02em;
}

/* ─── Closing ─── */
.closing {
  padding: 8rem 2rem;
  background: 
    radial-gradient(ellipse 70% 50% at 50% 50%, var(--accent-soft) 0%, transparent 70%),
    var(--bg);
  text-align: center;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--fg);
}

.closing p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.closing-whisper {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem !important;
  color: var(--accent) !important;
  margin-top: 2rem !important;
}

/* ─── Footer ─── */
.site-footer {
  padding: 3rem 2rem;
  background: var(--bg-deep);
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,248,240,0.45);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ─── Mobile ─── */
@media (max-width: 768px) {
  .hero {
    min-height: 85vh;
    padding: 4rem 1.5rem;
  }
  
  .pillars-grid {
    grid-template-columns: 1fr;
    border-radius: 12px;
  }
  
  .pillar {
    padding: 2.5rem 2rem;
  }
  
  .story-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .story-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  
  .stat {
    flex: 1;
    min-width: 120px;
  }
  
  .pillars, .story, .closing {
    padding: 5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .story-stats {
    flex-direction: column;
  }
  
  .stat {
    min-width: auto;
  }
}