@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,700;1,400&display=swap');

:root {
  --cream: #F9F6F0;
  --cream-dark: #F0EBE0;
  --sage: #7A9E7E;
  --sage-light: #A8C5AC;
  --sage-dark: #4A7050;
  --forest: #2C4A30;
  --gold: #C9A84C;
  --gold-light: #E8CC88;
  --charcoal: #2A2A2A;
  --warm-gray: #6B6B6B;
  --light-gray: #E8E4DC;
  --white: #FFFFFF;
  --font-display: 'Cormorant Garamond', serif;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-soft: 0 4px 32px rgba(44, 74, 48, 0.08);
  --shadow-medium: 0 8px 48px rgba(44, 74, 48, 0.12);
  --radius: 4px;
  --radius-lg: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
p { font-size: 1.05rem; color: var(--warm-gray); max-width: 65ch; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 5%;
  background: rgba(249,246,240,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(122,158,126,0.15);
  transition: var(--transition);
}
.nav-logo {
  display: flex; flex-direction: column;
  font-family: var(--font-display);
}
.nav-logo-main { font-size: 1.35rem; font-weight: 600; color: var(--forest); letter-spacing: .02em; }
.nav-logo-sub { font-size: .7rem; font-weight: 400; letter-spacing: .18em; text-transform: uppercase; color: var(--sage); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { font-size: .88rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--charcoal); transition: var(--transition); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px; background: var(--sage); transition: var(--transition); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--forest); color: var(--cream) !important;
  padding: .55rem 1.4rem; border-radius: 2px;
  font-size: .82rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--sage-dark) !important; }
.nav-cta::after { display: none !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 1.5px; background: var(--charcoal); transition: var(--transition); }
.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--cream); z-index: 99; padding: 6rem 5% 3rem; flex-direction: column; gap: 1.5rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-display); font-size: 2rem; color: var(--forest); }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 8rem 5% 5rem;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 40%, rgba(168,197,172,0.2) 100%);
  z-index: 0;
}
.hero-texture {
  position: absolute; inset: 0; z-index: 0; opacity: .04;
  background-image: radial-gradient(circle, var(--forest) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-content { position: relative; z-index: 1; max-width: 780px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .8rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  color: var(--sage-dark); margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--sage); }
.hero h1 { color: var(--forest); margin-bottom: 1rem; }
.hero h1 em { font-style: italic; color: var(--sage-dark); }
.hero-sub { font-size: 1.2rem; color: var(--warm-gray); margin-bottom: 2.5rem; max-width: 55ch; line-height: 1.8; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--forest); color: var(--cream);
  padding: 1rem 2.2rem; border-radius: 2px;
  font-size: .88rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  transition: var(--transition); border: 1px solid var(--forest); cursor: pointer;
}
.btn-primary:hover { background: var(--sage-dark); border-color: var(--sage-dark); transform: translateY(-1px); }
.btn-secondary {
  background: transparent; color: var(--forest);
  padding: 1rem 2.2rem; border-radius: 2px;
  font-size: .88rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  border: 1px solid var(--sage); transition: var(--transition); cursor: pointer;
}
.btn-secondary:hover { background: var(--sage); color: var(--white); }
.hero-badge {
  position: absolute; right: 8%; top: 50%; transform: translateY(-50%);
  width: 160px; height: 160px; border-radius: 50%;
  background: var(--forest); color: var(--cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 1rem;
  animation: slowspin 20s linear infinite;
}
.hero-badge-text { font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; line-height: 1.6; }
.hero-badge-icon { font-size: 1.8rem; margin-bottom: .3rem; }
@keyframes slowspin { from { transform: translateY(-50%) rotate(0deg); } to { transform: translateY(-50%) rotate(360deg); } }

/* ── SECTIONS ── */
section { padding: 6rem 5%; }
.section-label {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .78rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: var(--sage-dark); margin-bottom: 1rem;
}
.section-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--sage); }
.section-title { color: var(--forest); margin-bottom: 1rem; }
.section-intro { font-size: 1.1rem; color: var(--warm-gray); margin-bottom: 3rem; max-width: 60ch; }
.section-center { text-align: center; }
.section-center .section-label { justify-content: center; }
.section-center p { margin-inline: auto; }

/* ── DIVIDER ── */
.divider { display: flex; align-items: center; gap: 1rem; margin: 1.5rem 0; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--light-gray); }
.divider span { font-size: 1rem; color: var(--sage); }

/* ── CARDS ── */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow-soft);
  border: 1px solid rgba(122,158,126,0.12);
  transition: var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-medium); }
.card-tag {
  display: inline-block; font-size: .72rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .3rem .8rem; border-radius: 2px;
  background: rgba(122,158,126,0.12); color: var(--sage-dark);
  margin-bottom: 1rem;
}
.card h3 { color: var(--forest); margin-bottom: .6rem; }
.card p { font-size: .95rem; }

/* ── GRID LAYOUTS ── */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; }

/* ── STAT BAR ── */
.stat-bar { background: var(--forest); padding: 3rem 5%; }
.stat-bar-inner { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 2rem; max-width: 900px; margin: 0 auto; text-align: center; }
.stat-item .num { font-family: var(--font-display); font-size: 3rem; color: var(--gold-light); }
.stat-item .label { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(249,246,240,.6); margin-top: .25rem; }

/* ── TESTIMONIALS ── */
.testimonial { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; border-left: 3px solid var(--sage); box-shadow: var(--shadow-soft); }
.testimonial blockquote { font-family: var(--font-display); font-size: 1.2rem; color: var(--forest); font-style: italic; margin-bottom: 1rem; line-height: 1.6; }
.testimonial cite { font-size: .85rem; color: var(--warm-gray); font-style: normal; }

/* ── TEAM ── */
.team-card { text-align: center; }
.team-avatar {
  width: 120px; height: 120px; border-radius: 50%;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--sage-light), var(--forest));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 2.5rem; color: var(--cream);
  border: 3px solid var(--cream-dark);
}
.team-name { font-family: var(--font-display); font-size: 1.6rem; color: var(--forest); }
.team-role { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--sage-dark); margin: .3rem 0 .75rem; }
.team-bio { font-size: .92rem; color: var(--warm-gray); }

/* ── PRICING ── */
.pricing-card { text-align: center; }
.pricing-card.featured { border: 2px solid var(--sage); position: relative; }
.pricing-card.featured::before { content: 'Most Popular'; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--sage); color: var(--white); font-size: .72rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; padding: .25rem .9rem; border-radius: 2px; }
.price-amount { font-family: var(--font-display); font-size: 3.5rem; color: var(--forest); line-height: 1; }
.price-period { font-size: .85rem; color: var(--warm-gray); }
.price-features { list-style: none; margin: 1.5rem 0; text-align: left; display: flex; flex-direction: column; gap: .6rem; }
.price-features li { font-size: .92rem; color: var(--warm-gray); display: flex; gap: .5rem; align-items: flex-start; }
.price-features li::before { content: '✦'; color: var(--sage); font-size: .7rem; margin-top: .35rem; flex-shrink: 0; }

/* ── PODCAST ── */
.episode-card { display: grid; grid-template-columns: 64px 1fr; gap: 1.25rem; align-items: start; }
.episode-num { font-family: var(--font-display); font-size: 2.5rem; color: var(--sage-light); font-weight: 300; line-height: 1; }
.episode-title { font-family: var(--font-display); font-size: 1.3rem; color: var(--forest); margin-bottom: .35rem; }
.episode-desc { font-size: .9rem; color: var(--warm-gray); }
.episode-meta { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--sage-dark); margin-top: .5rem; }

/* ── SHOP ── */
.shop-card { overflow: hidden; }
.shop-img {
  width: 100%; height: 200px; border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(135deg, var(--cream-dark), var(--sage-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; margin: -2rem -2rem 1.5rem; width: calc(100% + 4rem);
}
.shop-price { font-family: var(--font-display); font-size: 1.5rem; color: var(--forest); margin-top: .5rem; }

/* ── FOOTER ── */
footer {
  background: var(--forest); color: var(--cream);
  padding: 4rem 5% 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo-main { font-family: var(--font-display); font-size: 1.5rem; color: var(--cream); }
.footer-brand .logo-sub { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sage-light); margin-bottom: 1rem; }
.footer-brand p { font-size: .9rem; color: rgba(249,246,240,.6); max-width: 28ch; }
.footer-col h4 { font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sage-light); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { font-size: .9rem; color: rgba(249,246,240,.7); transition: var(--transition); }
.footer-col a:hover { color: var(--cream); }
.footer-bottom { border-top: 1px solid rgba(249,246,240,.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .82rem; color: rgba(249,246,240,.4); max-width: none; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 10rem 5% 5rem; background: var(--forest);
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(249,246,240,.04) 1px, transparent 1px); background-size: 28px 28px; }
.page-hero h1 { color: var(--cream); position: relative; z-index: 1; }
.page-hero p { color: rgba(249,246,240,.7); margin: 1rem auto 0; position: relative; z-index: 1; font-size: 1.15rem; max-width: 55ch; }
.page-hero .section-label { color: var(--sage-light); justify-content: center; position: relative; z-index: 1; }
.page-hero .section-label::before { background: var(--sage-light); }

/* ── HIGHLIGHT BOX ── */
.highlight-box { background: rgba(122,158,126,0.1); border: 1px solid rgba(122,158,126,0.25); border-radius: var(--radius-lg); padding: 2rem; }

/* ── UTILS ── */
.text-gold { color: var(--gold); }
.text-sage { color: var(--sage-dark); }
.text-forest { color: var(--forest); }
.bg-cream-dark { background: var(--cream-dark); }
.bg-forest { background: var(--forest); }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; }
.full-width-btn { width: 100%; text-align: center; justify-content: center; }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-badge { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 4rem 5%; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; }
}
