:root {
  --forest: #2C4A3E;
  --forest-light: #3D6B5A;
  --earth: #8B7355;
  --earth-warm: #A6896A;
  --sand: #E8DFD1;
  --cream: #F7F3ED;
  --ivory: #FDFBF7;
  --bark: #5C4A3A;
  --text: #3A3A3A;
  --text-light: #6B6B6B;
  --accent-warm: #C4956A;
  --accent-sage: #9BAF9F;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Jost', sans-serif;
  color: var(--text);
  background: var(--ivory);
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 100px 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- NAVIGATION ---- */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.4s ease;
  background: transparent;
}

nav.scrolled {
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(44, 74, 62, 0.08);
}

nav .nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav .logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--forest);
  text-decoration: none;
}

nav .cta-nav {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--forest);
  text-decoration: none;
  padding: 8px 22px;
  border: 1px solid var(--forest);
  border-radius: 2px;
  transition: all 0.3s ease;
}

nav .cta-nav:hover {
  background: var(--forest);
  color: var(--ivory);
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: linear-gradient(175deg, var(--ivory) 0%, var(--sand) 50%, var(--cream) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155, 175, 159, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 149, 106, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 32px;
}

.hero-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--earth-warm);
  margin-bottom: 32px;
  font-weight: 400;
  font-style: italic;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 300;
  color: var(--forest);
  line-height: 1.3;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
  opacity: 0;
  animation: fadeUp 1s ease 0.6s forwards;
}

.hero-sub {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.9;
  max-width: 520px;
  margin: 0 auto 50px;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}

.hero-cta {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--ivory);
  background: var(--forest);
  text-decoration: none;
  padding: 16px 42px;
  border-radius: 2px;
  transition: all 0.4s ease;
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
}

.hero-cta:hover {
  background: var(--forest-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(44, 74, 62, 0.2);
}

.hero-format {
  margin-top: 24px;
  font-size: 0.78rem;
  color: var(--earth-warm);
  letter-spacing: 0.06em;
  opacity: 0;
  animation: fadeUp 1s ease 1.4s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- DIVIDER ---- */
.divider {
  text-align: center;
  padding: 60px 0;
}

.divider-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--earth-warm), transparent);
  margin: 0 auto;
}

/* ---- RESONANCE ---- */
.resonance {
  background: var(--ivory);
  padding: 100px 0 80px;
}

.resonance .lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--forest);
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.6;
}

.resonance-items {
  max-width: 620px;
  margin: 0 auto;
}

.resonance-item {
  padding: 22px 0;
  border-bottom: 1px solid rgba(139, 115, 85, 0.12);
  font-family: 'Libre Baskerville', serif;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.9;
  position: relative;
  padding-left: 28px;
}

.resonance-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 32px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-sage);
  opacity: 0.6;
}

.resonance-close {
  text-align: center;
  margin-top: 60px;
  font-family: 'Libre Baskerville', serif;
  font-size: 1.02rem;
  font-weight: 400;
  color: var(--forest);
  line-height: 2;
  font-style: italic;
}

/* ---- REFRAME ---- */
.reframe {
  background: var(--forest);
  color: var(--sand);
  padding: 100px 0;
  text-align: center;
}

.reframe p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2.2;
  max-width: 560px;
  margin: 0 auto;
}

.reframe .highlight {
  color: var(--accent-warm);
  font-weight: 500;
}

/* ---- ABOUT PROGRAM ---- */
.about-program {
  padding: 120px 0 100px;
  background: var(--cream);
}

.about-program .section-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--earth-warm);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 400;
}

.about-program h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--forest);
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 0.02em;
}

.program-desc {
  max-width: 620px;
  margin: 0 auto;
  font-family: 'Libre Baskerville', serif;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 2.1;
  color: var(--text);
}

.program-desc p {
  margin-bottom: 28px;
}

.program-desc .zh {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--earth);
}

/* ---- JOURNEY MAP ---- */
.journey {
  padding: 100px 0;
  background: var(--ivory);
}

.journey h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--forest);
  text-align: center;
  margin-bottom: 16px;
}

.journey .subtitle {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 70px;
  font-weight: 300;
}

.journey-phases {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.journey-phases::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom,
      var(--accent-sage) 0%,
      var(--earth-warm) 50%,
      var(--forest) 100%);
  opacity: 0.4;
}

.phase {
  display: flex;
  gap: 36px;
  margin-bottom: 48px;
  align-items: flex-start;
}

.phase-marker {
  flex-shrink: 0;
  width: 49px;
  height: 49px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.phase-marker.awakening {
  background: rgba(155, 175, 159, 0.2);
  color: var(--forest);
  border: 1px solid rgba(155, 175, 159, 0.4);
}

.phase-marker.commit {
  background: rgba(166, 137, 106, 0.15);
  color: var(--bark);
  border: 1px solid rgba(166, 137, 106, 0.35);
}

.phase-marker.practice {
  background: rgba(196, 149, 106, 0.15);
  color: var(--bark);
  border: 1px solid rgba(196, 149, 106, 0.3);
}

.phase-marker.expand {
  background: rgba(44, 74, 62, 0.1);
  color: var(--forest);
  border: 1px solid rgba(44, 74, 62, 0.25);
}

.phase-marker.give {
  background: rgba(44, 74, 62, 0.18);
  color: var(--forest);
  border: 1px solid rgba(44, 74, 62, 0.35);
}

.phase-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 4px;
}

.phase-content .phase-zh {
  font-size: 0.82rem;
  color: var(--earth-warm);
  margin-bottom: 8px;
  font-weight: 300;
  letter-spacing: 0.04em;
}

.phase-content p {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.85;
}

/* ---- INCLUDED ---- */
.included {
  padding: 100px 0;
  background: var(--cream);
}

.included h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--forest);
  text-align: center;
  margin-bottom: 60px;
}

.included-grid {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
}

.included-item {
  padding: 28px 0;
}

.included-item h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.02em;
}

.included-item h4::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--accent-sage);
  flex-shrink: 0;
}

.included-item p {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.85;
  padding-left: 30px;
}

/* ---- FIT ---- */
.fit {
  padding: 100px 0;
  background: var(--ivory);
}

.fit h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--forest);
  text-align: center;
  margin-bottom: 60px;
}

.fit-columns {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.fit-col h3 {
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid;
}

.fit-col.yes h3 {
  color: var(--forest);
  border-color: var(--accent-sage);
}

.fit-col.no h3 {
  color: var(--earth);
  border-color: var(--sand);
}

.fit-col li {
  list-style: none;
  font-family: 'Libre Baskerville', serif;
  font-size: 0.86rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 16px;
  padding-left: 20px;
  position: relative;
}

.fit-col.yes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent-sage);
}

.fit-col.no li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--sand);
}

/* ---- PRICING ---- */
.pricing {
  padding: 120px 0;
  background: linear-gradient(170deg, var(--cream) 0%, var(--sand) 100%);
  text-align: center;
}

.pricing .section-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--earth-warm);
  margin-bottom: 16px;
}

.pricing h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 20px;
}

.pricing .pricing-note {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto 60px;
  line-height: 2;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 680px;
  margin: 0 auto 50px;
}

.pricing-card {
  background: var(--ivory);
  border-radius: 4px;
  padding: 44px 36px;
  text-align: center;
  border: 1px solid rgba(139, 115, 85, 0.12);
  position: relative;
}

.pricing-card.founding {
  border-color: var(--forest);
  border-width: 1.5px;
}

.pricing-card.founding::after {
  content: 'Founding Partner';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--forest);
  color: var(--ivory);
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 2px;
  white-space: nowrap;
}

.pricing-card .card-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  font-weight: 300;
}

.pricing-card .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 4px;
}

.pricing-card .price-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 8px;
  font-weight: 300;
}

.pricing-card .price-alt {
  font-size: 0.82rem;
  color: var(--earth-warm);
  margin-bottom: 24px;
  font-weight: 400;
}

.pricing-card .card-detail {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
}

.pricing-extra {
  max-width: 520px;
  margin: 0 auto;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 2;
}

.pricing-extra .safe {
  margin-top: 24px;
  padding: 24px 28px;
  background: rgba(155, 175, 159, 0.1);
  border-radius: 4px;
  border-left: 2px solid var(--accent-sage);
  text-align: left;
  font-family: 'Libre Baskerville', serif;
  font-size: 0.86rem;
  line-height: 1.9;
  color: var(--text);
}

.pricing-extra .safe strong {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ---- COACH ---- */
.coach {
  padding: 100px 0;
  background: var(--ivory);
}

.coach-inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.coach .section-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--earth-warm);
  margin-bottom: 20px;
}

.coach h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 40px;
}

.coach-text {
  text-align: left;
  font-family: 'Libre Baskerville', serif;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--text);
  line-height: 2.1;
}

.coach-text p {
  margin-bottom: 24px;
}

/* ---- FINAL CTA ---- */
.final-cta {
  padding: 120px 0;
  background: var(--forest);
  text-align: center;
  color: var(--sand);
}

.final-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--sand);
  margin-bottom: 20px;
  line-height: 1.6;
}

.final-cta p {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(232, 223, 209, 0.7);
  max-width: 460px;
  margin: 0 auto 48px;
  line-height: 2;
}

.final-cta .cta-button {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--forest);
  background: var(--sand);
  text-decoration: none;
  padding: 16px 48px;
  border-radius: 2px;
  transition: all 0.4s ease;
}

.final-cta .cta-button:hover {
  background: var(--ivory);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.final-cta .note {
  margin-top: 20px;
  font-family: 'Jost', sans-serif;
  font-size: 0.76rem;
  color: rgba(232, 223, 209, 0.5);
  letter-spacing: 0.04em;
  font-weight: 300;
}

    /* ---- FOOTER ---- */
    footer {
      background: #243830;
      padding: 72px 0 32px;
      font-family: 'Jost', sans-serif;
    }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 40px;
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 60px;
      margin-bottom: 60px;
    }

    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
      font-weight: 400;
      letter-spacing: 0.12em;
      color: rgba(232, 223, 209, 0.8);
      margin-bottom: 10px;
    }

    .footer-tagline {
      font-size: 0.72rem;
      color: rgba(232, 223, 209, 0.35);
      letter-spacing: 0.06em;
      font-weight: 300;
    }

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

    .footer-col {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-col-label {
      font-size: 0.68rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(232, 223, 209, 0.35);
      font-weight: 400;
      margin-bottom: 4px;
    }

    .footer-link {
      font-size: 0.8rem;
      color: rgba(232, 223, 209, 0.55);
      text-decoration: none;
      font-weight: 300;
      transition: color 0.2s ease;
      letter-spacing: 0.02em;
    }

    .footer-link:hover {
      color: rgba(232, 223, 209, 0.9);
    }

    .footer-bottom {
      max-width: 1100px;
      margin: 0 auto;
      padding: 24px 40px 0;
      border-top: 1px solid rgba(232, 223, 209, 0.08);
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.72rem;
      color: rgba(232, 223, 209, 0.25);
      letter-spacing: 0.04em;
      font-weight: 300;
    }

    .footer-dot {
      opacity: 0.4;
    }

    .footer-bottom-link {
      color: rgba(232, 223, 209, 0.35);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .footer-bottom-link:hover {
      color: rgba(232, 223, 209, 0.7);
    }

    @media (max-width: 768px) {
      .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 24px;
      }
      .footer-links {
        grid-template-columns: repeat(2, 1fr);
      }
      .footer-bottom {
        padding: 24px 24px 0;
        flex-wrap: wrap;
        gap: 8px;
      }
    }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .container {
    padding: 0 24px;
  }

  .hero {
    min-height: 90vh;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .included-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .fit-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .phase {
    gap: 24px;
  }

  .journey-phases::before {
    left: 24px;
  }

  nav .nav-inner {
    padding: 0 24px;
  }
}