@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,500;0,9..144,700;1,9..144,400&display=swap');

:root {
  --bg: #faf7f2;
  --bg-warm: #f3ede4;
  --bg-deep: #2c2418;
  --fg: #2c2418;
  --fg-muted: #6b5e4f;
  --fg-light: #9a8d7e;
  --accent: #7b9e6b;
  --accent-warm: #c4956a;
  --accent-soft: #d4c5a9;
  --accent-bloom: #e8a0bf;
  --white: #fffcf7;
  --radius: 16px;
  --radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 24px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,158,107,0.15) 0%, transparent 70%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,160,191,0.12) 0%, transparent 70%);
  z-index: 0;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
}

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

.hero .lede {
  font-size: 1.2rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.box-preview {
  position: relative;
  width: 340px;
  height: 380px;
}

.box-card {
  position: absolute;
  width: 260px;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 20px 60px rgba(44,36,24,0.08);
}

.box-card-1 {
  background: var(--white);
  top: 0;
  left: 0;
  transform: rotate(-3deg);
  z-index: 2;
}

.box-card-2 {
  background: var(--accent);
  color: var(--white);
  bottom: 0;
  right: 0;
  transform: rotate(2deg);
  z-index: 1;
}

.box-card-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.box-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.box-card p {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.5;
}

/* Tracks Section */
.tracks {
  padding: 120px 24px;
  background: var(--bg-deep);
  color: var(--white);
}

.tracks-inner {
  max-width: 1100px;
  margin: 0 auto;
}

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

.tracks h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 64px;
  max-width: 600px;
}

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

.track-card {
  background: rgba(255,252,247,0.06);
  border: 1px solid rgba(255,252,247,0.08);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.track-card:hover {
  transform: translateY(-4px);
  background: rgba(255,252,247,0.1);
}

.track-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.track-icon.mind {
  background: rgba(232,160,191,0.2);
}

.track-icon.body {
  background: rgba(123,158,107,0.2);
}

.track-icon.holistic {
  background: rgba(196,149,106,0.2);
}

.track-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--white);
}

.track-card p {
  font-size: 0.95rem;
  color: rgba(255,252,247,0.6);
  line-height: 1.7;
}

.track-items {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.track-tag {
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255,252,247,0.15);
  color: rgba(255,252,247,0.5);
}

/* How it Works */
.how-it-works {
  padding: 120px 24px;
  background: var(--bg);
}

.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.how-it-works h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 64px;
  text-align: center;
}

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

.step {
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-warm);
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 24px;
}

.step h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

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

/* Closing */
.closing {
  padding: 120px 24px;
  background: var(--accent);
  color: var(--white);
  text-align: center;
}

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

.closing h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 20px;
}

.closing p {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.7;
}

/* Footer */
footer {
  padding: 40px 24px;
  background: var(--bg-deep);
  text-align: center;
}

footer p {
  font-size: 0.85rem;
  color: rgba(255,252,247,0.35);
}

footer .brand {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  color: rgba(255,252,247,0.6);
  font-size: 1rem;
  margin-bottom: 8px;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero .lede {
    max-width: 100%;
  }
  .hero-visual {
    display: none;
  }
  .tracks-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .tracks h2, .how-it-works h2 {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 16px;
    min-height: auto;
  }
  .tracks, .how-it-works, .closing {
    padding: 80px 16px;
  }
}