/* ── Your Design, Your World — Stylesheet ── */

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

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

:root {
  --plum:      #2c1650;
  --plum-2:    #160a2b;
  --plum-glow: #3d236e;
  --wine:      #7a2e74;
  --gold:      #d4a24e;
  --gold-deep: #9a6f1f;
  --gold-soft: #e6c483;
  --bg:        #f7f3ee;
  --bg-alt:    #efe6d8;
  --white:     #fffdfa;
  --text:      #2c1650;
  --text-soft: #5f4f74;
  --cream:     #f4ece1;
  --dim:       #cebbe0;
  --nav-h:     76px;
  --radius:    4px;
  --max:       1160px;
  --transition: 0.3s ease;
  --dark-grad: radial-gradient(120% 120% at 15% 0%, var(--plum-glow) 0%, var(--plum) 45%, var(--plum-2) 100%);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text-soft);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--wine); text-decoration: none; }
a:hover { color: var(--gold-deep); }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  color: var(--text);
  font-weight: 600;
}

/* ── Utilities ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--dark-grad); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--cream); }
.section--dark p { color: var(--dim); }

.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 2px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary   { background: var(--wine); color: var(--white); box-shadow: 0 8px 24px rgba(122,46,116,0.28); }
.btn--primary:hover { background: #8f3788; color: var(--white); }
.btn--gold      { background: var(--gold); color: var(--plum-2); box-shadow: 0 8px 24px rgba(212,162,78,0.32); }
.btn--gold:hover { background: var(--gold-soft); color: var(--plum-2); }
.btn--secondary { background: transparent; color: var(--plum); border: 1.5px solid var(--gold-deep); }
.btn--secondary:hover { border-color: var(--wine); color: var(--wine); }
.btn--outline-light { background: transparent; color: var(--cream); border: 1.5px solid rgba(244,236,225,0.35); }
.btn--outline-light:hover { border-color: var(--gold-soft); color: var(--gold-soft); }

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
}
.section--dark .section-label { color: var(--gold-soft); }

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--plum);
}
.section--dark .section-title { color: var(--cream); }
.section-title em { font-style: italic; color: var(--wine); }
.section--dark .section-title em { color: var(--gold-soft); }

.divider { width: 52px; height: 1.5px; background: var(--gold); margin: 0 0 40px; }
.divider--center { margin: 0 auto 40px; }

.fade-in { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── HEADER / NAV ── */
.site-header {
  position: sticky; top: 0; z-index: 100; height: var(--nav-h);
  background: rgba(247,243,238,0.94); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(44,22,80,0.08);
  display: flex; align-items: center;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { width: 40px; height: 40px; }
.nav-logo-text { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; color: var(--plum); letter-spacing: 0.01em; line-height: 1.1; }
.nav-logo-text span { display: block; font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); font-family: 'Montserrat', sans-serif; font-weight: 600; margin-top: 2px; }

.nav-links { display: flex; list-style: none; gap: 32px; align-items: center; }
.nav-links a { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-soft); transition: color var(--transition); }
.nav-links a:hover, .nav-links a.nav-active { color: var(--wine); }
.nav-cta { margin-left: 8px; padding: 10px 22px; font-size: 0.76rem; color: var(--white) !important; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--plum); }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--plum); margin: 4px 0; }

/* ── HERO ── */
.hero { padding: 90px 0 76px; overflow: hidden; background: var(--dark-grad); position: relative; }
.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.hero-eyebrow { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 20px; }
.hero-headline { font-size: clamp(2.6rem, 5.2vw, 4.2rem); font-weight: 600; line-height: 1.06; margin-bottom: 26px; color: var(--cream); }
.hero-headline em { font-style: italic; color: var(--gold-soft); font-weight: 500; }
.hero-subhead { font-size: 1.08rem; color: var(--dim); margin-bottom: 40px; max-width: 460px; line-height: 1.8; }
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 14px; }
.hero-note { font-size: 0.84rem; color: var(--dim); }
.hero-note a { color: var(--gold-soft); text-decoration: underline; }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-seal { width: min(340px, 82%); filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4)); }

/* ── TRUST STRIP ── */
.trust { background: var(--white); border-bottom: 1px solid rgba(44,22,80,0.06); }
.trust-inner { display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; padding: 40px 0; }
.trust-quote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.15rem; color: var(--plum); max-width: 40ch; line-height: 1.5; }
.trust-quote footer { margin-top: 12px; font-size: 0.76rem; font-style: normal; font-family: 'Montserrat', sans-serif; color: var(--gold-deep); letter-spacing: 0.08em; text-transform: uppercase; }
.trust-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-badge { font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--wine); border: 1px solid rgba(122,46,116,0.28); border-radius: 100px; padding: 7px 16px; white-space: nowrap; }

/* ── ABOUT ── */
.about-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; }
.about-visual { position: relative; }
.about-visual-bg { background: linear-gradient(160deg, var(--bg-alt) 0%, #e2d5c2 100%); border-radius: 6px; padding: 2.2rem; position: relative; }
.about-visual-bg::after { content:''; position:absolute; bottom:-14px; right:-14px; width:90px; height:90px; border-right:1.5px solid rgba(184,137,46,0.4); border-bottom:1.5px solid rgba(184,137,46,0.4); }
.about-visual img { width: 100%; border-radius: 3px; }
.about-credentials { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0; }
.credential { font-size: 0.85rem; color: var(--text-soft); display: flex; align-items: center; gap: 8px; }
.credential::before { content: '◇'; color: var(--gold); font-size: 0.7rem; flex-shrink: 0; }
.about-text p { margin-bottom: 20px; }
.about-text p:last-of-type { margin-bottom: 0; }

/* ── TOOLS GRID ── */
.tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 20px; }
.tool-card {
  background: var(--white); border-radius: 6px; padding: 34px 30px;
  border: 1px solid rgba(44,22,80,0.08); text-decoration: none; display: block;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative; overflow: hidden;
}
.tool-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(44,22,80,0.14); border-color: rgba(212,162,78,0.5); }
.tool-icon { font-size: 1.6rem; margin-bottom: 16px; display: block; }
.tool-card h3 { font-size: 1.3rem; margin-bottom: 8px; color: var(--plum); }
.tool-tag { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 10px; display: block; font-family: 'Montserrat', sans-serif; font-weight: 600; }
.tool-card p { font-size: 0.88rem; color: var(--text-soft); line-height: 1.7; margin-bottom: 18px; }
.tool-cta { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--wine); font-weight: 600; }
.tool-card:hover .tool-cta { color: var(--gold-deep); }

/* ── PROGRAM / MAGICAL JOURNEY BAND ── */
.program-band { background: var(--dark-grad); }
.program-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.program-weeks { display: flex; flex-direction: column; gap: 10px; }
.program-week { background: rgba(255,255,255,0.05); border: 1px solid rgba(212,162,78,0.2); border-radius: 4px; padding: 14px 18px; display: flex; gap: 14px; align-items: baseline; }
.program-week .n { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--gold-soft); font-weight: 600; min-width: 2ch; }
.program-week .t { font-size: 0.92rem; color: var(--cream); }

/* ── BOOKS ── */
.books-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 8px; }
.book-card { background: var(--white); border-radius: 6px; padding: 34px; border: 1px solid rgba(44,22,80,0.08); }
.book-series { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 12px; display: block; font-weight: 600; }
.book-card h3 { font-size: 1.55rem; margin-bottom: 6px; color: var(--plum); }
.book-subtitle { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.02rem; color: var(--text-soft); margin-bottom: 14px; }
.book-card p.book-desc { font-size: 0.9rem; color: var(--text-soft); line-height: 1.75; margin-bottom: 22px; }

/* ── COMMUNITY / TIERS ── */
.community-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.community-tiers { display: flex; flex-direction: column; gap: 12px; }
.tier { background: rgba(255,255,255,0.05); border-radius: 4px; padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; border-left: 2px solid transparent; transition: border-color var(--transition); }
.tier:hover { border-color: var(--gold); }
.tier-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--cream); }
.tier-desc { font-size: 0.82rem; color: var(--dim); margin-top: 2px; }
.tier-price { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; color: var(--gold-soft); white-space: nowrap; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 24px; margin-top: 12px; }
.testimonial-card { padding: 30px; border: 1px solid rgba(44,22,80,0.08); border-radius: 6px; background: var(--white); position: relative; }
.testimonial-card::before { content:'\201C'; font-family:'Cormorant Garamond',serif; font-size:3.2rem; color: rgba(212,162,78,0.35); line-height:1; position:absolute; top:14px; left:20px; }
.testimonial-card blockquote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1rem; color: var(--text-soft); line-height: 1.7; margin: 22px 0 18px; }
.testimonial-author strong { display: block; font-size: 0.82rem; letter-spacing: 0.04em; color: var(--plum); font-family: 'Montserrat', sans-serif; font-weight: 600; }
.testimonial-author span { font-size: 0.76rem; color: var(--gold-deep); }

/* ── CONTACT / SIGNATURE BAND ── */
.contact-band { text-align: center; }
.contact-band p.section-sub { max-width: 52ch; margin: 0 auto 32px; }
.contact-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.contact-email { display: inline-block; font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--gold-soft); border-bottom: 1px solid rgba(212,162,78,0.4); padding-bottom: 3px; margin-bottom: 28px; }
.contact-email:hover { border-color: var(--gold-soft); color: var(--gold-soft); }

/* ── PAGE HERO (subpages) ── */
.page-hero { padding: 148px 0 64px; background: var(--dark-grad); }
.page-eyebrow { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 14px; display:block; }
.page-title { font-size: clamp(2.3rem, 4.6vw, 3.6rem); color: var(--cream); font-weight: 600; line-height: 1.1; max-width: 22ch; }
.page-sub { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.15rem; color: var(--gold-soft); margin-top: 16px; max-width: 40ch; }

/* ── PILLARS (about) ── */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 8px; }
.pillar { background: var(--white); padding: 30px; border-radius: 6px; border-top: 2px solid var(--gold); }
.pillar-icon { font-size: 1.1rem; color: var(--gold); margin-bottom: 12px; }
.pillar h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--plum); }
.pillar p { font-size: 0.88rem; color: var(--text-soft); line-height: 1.75; }

/* ── CREDENTIALS GRID (about) ── */
.credentials-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 10px; }
.credential-item { display:flex; align-items:flex-start; gap:12px; padding:18px 20px; background: var(--white); border-radius: 4px; border: 1px solid rgba(44,22,80,0.06); }
.credential-diamond { color: var(--gold); font-size: 0.78rem; margin-top: 3px; flex-shrink:0; }
.credential-text strong { display:block; color: var(--plum); font-weight:600; margin-bottom:3px; font-family:'Cormorant Garamond',serif; font-size:1.02rem; }
.credential-text span { font-size: 0.85rem; color: var(--text-soft); line-height:1.5; }

/* ── FOOTER ── */
.site-footer { background: var(--plum-2); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 40px; }
.footer-brand-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand-logo img { width: 44px; height: 44px; }
.footer-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--cream); font-weight: 600; }
.footer-brand p { color: var(--dim); font-size: 0.88rem; line-height: 1.7; max-width: 36ch; }
.footer-brand p a { color: var(--gold-soft); }
.footer-col h4 { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 18px; font-family: 'Montserrat', sans-serif; font-weight: 600; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 0.86rem; color: var(--dim); }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom { border-top: 1px solid rgba(244,236,225,0.1); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.74rem; color: rgba(206,187,224,0.55); }
.footer-bottom .phrase { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--gold-soft); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-inner, .about-inner, .program-inner, .community-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; margin-bottom: 20px; }
  .hero-seal { width: 200px; }
  .tools-grid { grid-template-columns: repeat(2,1fr); }
  .books-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }
  .about-credentials { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--white); padding: 24px; box-shadow: 0 12px 30px rgba(44,22,80,0.15);
    border-bottom: 1px solid rgba(44,22,80,0.08);
  }
  .nav-toggle { display: block; }
  .trust-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .tools-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
}
