:root {
  --plum: #311E33;
  --gold: #EEBD4A;
  --ivory: #F3E8D0;
  --charcoal: #171418;
  --midnight-plum: #1C111D;
  --royal-purple: #4A2A58;
  --midnight-navy: #16233C;
  --emerald: #25594B;
  --burgundy: #5A2234;
  --taupe: #A89A87;
  --cream: #FAF6EE;
  --white: #FFFDF9;
  --ink: #241A25;
  --muted: #756C75;
  --border: rgba(49, 30, 51, .14);
  --shadow: 0 28px 70px rgba(28, 17, 29, .14);
  --shadow-deep: 0 32px 80px rgba(0, 0, 0, .34);
  --serif: "Cormorant Garamond", Cormorant, Georgia, serif;
  --sans: Montserrat, Inter, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--gold); color: var(--midnight-plum); }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--midnight-plum);
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

.page-progress {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
}
.page-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #fff1a8);
  box-shadow: 0 0 16px rgba(238, 189, 74, .65);
}

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section-dark { color: var(--white); background: var(--midnight-plum); }
.section-light { background: var(--white); }
.section-cream { background: var(--cream); }

.site-header {
  position: sticky;
  z-index: 900;
  top: 0;
  color: var(--white);
  background: rgba(28, 17, 29, .9);
  border-bottom: 1px solid rgba(238, 189, 74, .18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.header-inner {
  width: min(1240px, calc(100% - 32px));
  min-height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: .11em;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  white-space: nowrap;
}
.brand img {
  width: 54px;
  height: 54px;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .35));
}
.brand small { display: block; margin-top: -8px; color: var(--gold); font-family: var(--sans); font-size: 7px; letter-spacing: .5em; text-align: center; }
.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav a {
  color: rgba(255, 253, 249, .8);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease, transform .2s ease;
}
.site-nav a:hover { color: var(--gold); }
.site-nav .nav-cta {
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(238, 189, 74, .75);
  border-radius: 999px;
  color: var(--midnight-plum);
  background: var(--gold);
  box-shadow: 0 10px 24px rgba(238, 189, 74, .18);
}
.site-nav .nav-cta:hover { color: var(--midnight-plum); transform: translateY(-2px); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span { width: 26px; height: 2px; margin: 5px 0; display: block; background: var(--gold); transition: transform .2s ease, opacity .2s ease; }

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 36%, rgba(238, 189, 74, .14), transparent 23%),
    radial-gradient(circle at 18% 82%, rgba(74, 42, 88, .36), transparent 30%),
    linear-gradient(135deg, #130b14 0%, var(--midnight-plum) 46%, #351c39 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .17;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero-grid { position: relative; z-index: 2; min-height: 720px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 70px; padding-block: 90px 110px; }
.hero-copy { max-width: 690px; }
.hero-form-panel { width: 100%; min-width: 0; display: grid; place-items: center; }
.hero-form-panel #guide-form { margin: 0 auto; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow-dark { color: #986a0b; }
h1, h2, h3 { margin-top: 0; font-family: var(--serif); line-height: .98; text-wrap: balance; }
h1 { margin-bottom: 26px; font-size: clamp(48px, 6.3vw, 82px); letter-spacing: -.045em; }
h2 { margin-bottom: 24px; color: var(--plum); font-size: clamp(42px, 5vw, 66px); letter-spacing: -.035em; }
.section-dark h2 { color: var(--white); }
h1 em, h2 em { color: var(--gold); font-weight: 600; }
h3 { margin-bottom: 8px; font-size: 28px; }
.hero-lede { max-width: 650px; margin: 0 0 34px; color: rgba(255, 253, 249, .74); font-size: 17px; line-height: 1.8; }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
.button {
  min-height: 54px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .055em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-3px); }
.button:focus-visible, .text-link:focus-visible, .site-nav a:focus-visible, .social-link:focus-visible, .lesson-return-link:focus-visible { outline: 3px solid rgba(238, 189, 74, .55); outline-offset: 4px; }
.button-gold { color: var(--midnight-plum); background: linear-gradient(135deg, #fbe39c, var(--gold) 55%, #d99a22); box-shadow: 0 16px 40px rgba(238, 189, 74, .22); }
.button-gold:hover { box-shadow: 0 20px 48px rgba(238, 189, 74, .34); }
.button-plum { color: var(--white); background: linear-gradient(135deg, var(--royal-purple), var(--plum)); box-shadow: 0 16px 38px rgba(49, 30, 51, .2); }
.button-plum:hover { box-shadow: 0 20px 45px rgba(49, 30, 51, .3); }
.button-large { min-height: 62px; padding-inline: 34px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--plum); font-size: 12px; font-weight: 700; text-decoration: none; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.text-link-light { color: rgba(255, 253, 249, .85); }
.trust-row { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px; }
.trust-row span { padding: 7px 12px; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; color: rgba(255,255,255,.62); font-size: 10px; font-weight: 600; letter-spacing: .04em; }

.hero-visual { display: grid; place-items: center; }
.logo-stage { position: relative; width: min(500px, 100%); aspect-ratio: 1; display: grid; place-items: center; }
.logo-stage::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238, 189, 74, .18), transparent 66%);
  filter: blur(10px);
}
.logo-stage > img { position: relative; z-index: 3; width: 88%; aspect-ratio: 1; object-fit: contain; filter: drop-shadow(0 42px 46px rgba(0,0,0,.5)); animation: float 6s ease-in-out infinite; }
.orbit { position: absolute; border: 1px solid rgba(238, 189, 74, .22); border-radius: 50%; }
.orbit-one { inset: 4%; animation: spin 28s linear infinite; }
.orbit-two { inset: 15%; border-style: dashed; animation: spinReverse 20s linear infinite; }
.orbit::before { content: ""; position: absolute; top: 50%; left: -4px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 22px var(--gold); }
.proof-card {
  position: absolute;
  z-index: 5;
  min-width: 220px;
  padding: 14px 17px;
  border: 1px solid rgba(238, 189, 74, .32);
  border-radius: 14px;
  background: rgba(28, 17, 29, .78);
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(14px);
}
.proof-card strong, .proof-card span { display: block; }
.proof-card strong { color: var(--ivory); font-family: var(--serif); font-size: 19px; }
.proof-card span { color: rgba(255,255,255,.57); font-size: 9px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.proof-card-one { top: 15%; left: -1%; }
.proof-card-two { right: -4%; bottom: 13%; }
.hero-glow { position: absolute; width: 440px; height: 440px; border-radius: 50%; filter: blur(90px); opacity: .13; }
.hero-glow-one { top: -140px; right: -100px; background: var(--gold); }
.hero-glow-two { left: -180px; bottom: -160px; background: var(--royal-purple); }
.hero-divider { position: absolute; right: -5%; bottom: -90px; left: -5%; height: 160px; border-radius: 50% 50% 0 0; background: #F3E8D0; transform: rotate(-2deg); }

.story { padding: 125px 0 115px; }
.story-grid { display: grid; grid-template-columns: .93fr 1.07fr; align-items: center; gap: 86px; }
.story-panel p:not(.eyebrow) { max-width: 590px; margin-bottom: 30px; color: var(--muted); }
.chron-signup {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 78px;
  background:
    radial-gradient(circle at 12% 20%, rgba(238,189,74,.14), transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(74,42,88,.1), transparent 30%),
    var(--white);
}
.chron-signup::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(980px, 78%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(238,189,74,.8), transparent);
}
.chron-signup .story-grid { position: relative; z-index: 1; }
.chron-signup .benefit-stack::before {
  background: linear-gradient(135deg, rgba(238,189,74,.22), rgba(74,42,88,.12));
}
.benefit-stack { position: relative; display: grid; gap: 18px; }
.benefit-stack::before { content: ""; position: absolute; z-index: 0; inset: 12% 8% -4% 14%; border-radius: 32px; background: linear-gradient(135deg, rgba(238,189,74,.17), rgba(74,42,88,.09)); transform: rotate(3deg); }
.benefit-card { position: relative; z-index: 1; padding: 26px 28px; display: grid; grid-template-columns: 60px 1fr; gap: 18px; align-items: start; border: 1px solid var(--border); border-radius: 22px; background: rgba(255,253,249,.94); box-shadow: 0 18px 50px rgba(49,30,51,.08); }
.benefit-card:nth-child(2) { margin-left: 36px; }
.benefit-number { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; color: var(--plum); background: linear-gradient(135deg, #f9e5a0, var(--gold)); font-family: var(--serif); font-size: 20px; font-weight: 700; }
.benefit-card h3 { margin: 0 0 6px; color: var(--plum); font-size: 26px; }
.benefit-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.cta-guides { padding: 115px 0; }
.guides-grid { display: grid; grid-template-columns: .88fr 1.12fr; align-items: start; gap: 80px; }
.guides-copy { margin-top: 8px; }
.guides-copy h2 { max-width: 500px; margin: 0 0 28px; color: var(--white); font-size: 42px; line-height: 1.15; }
.guides-copy p { max-width: 560px; margin: 0 0 20px; color: rgba(255,255,255,.78); font-size: 15px; line-height: 1.8; }
.guides-copy p:last-of-type { margin-bottom: 32px; }
.guides-cards { display: grid; gap: 22px; }
.guide-card { padding: 32px; border: 1px solid rgba(238,189,74,.18); border-radius: 20px; background: rgba(255,255,255,.05); backdrop-filter: blur(8px); box-shadow: 0 8px 32px rgba(0,0,0,.12); transition: transform .25s ease, background .25s ease, border-color .25s ease; }
.guide-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.08); border-color: rgba(238,189,74,.28); }
.guide-card h3 { margin: 0 0 14px; color: var(--ivory); font-size: 21px; line-height: 1.3; }

.watch { padding: 105px 0 115px; }
.section-heading { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.video-card { overflow: hidden; border: 1px solid rgba(49,30,51,.12); border-radius: 26px; background: var(--white); box-shadow: 0 22px 60px rgba(28,17,29,.09); transition: transform .25s ease, box-shadow .25s ease; }
.video-card:hover { transform: translateY(-8px); box-shadow: 0 28px 68px rgba(28,17,29,.14); }
.video-preview { position: relative; min-height: 245px; padding: 22px; display: grid; place-items: center; overflow: hidden; color: var(--white); text-decoration: none; }
.video-preview::before, .video-preview::after { content: ""; position: absolute; inset: 0; }
.video-preview::before { background: linear-gradient(160deg, rgba(0,0,0,.05), rgba(0,0,0,.65)); }
.video-preview::after { opacity: .34; background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 32px 32px; transform: perspective(500px) rotateX(55deg) scale(1.7); transform-origin: bottom; }
.video-preview-one { background: radial-gradient(circle at 70% 25%, rgba(238,189,74,.48), transparent 24%), linear-gradient(135deg, var(--midnight-navy), var(--plum)); }
.video-preview-two { background: radial-gradient(circle at 30% 30%, rgba(238,189,74,.45), transparent 22%), linear-gradient(135deg, var(--emerald), #142e28); }
.video-preview-three { background: radial-gradient(circle at 72% 30%, rgba(238,189,74,.44), transparent 22%), linear-gradient(135deg, var(--burgundy), var(--midnight-plum)); }
.video-kicker, .video-duration { position: absolute; z-index: 2; top: 18px; font-size: 9px; font-weight: 700; letter-spacing: .15em; }
.video-kicker { left: 20px; color: var(--gold); }
.video-duration { right: 20px; padding: 4px 8px; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; color: rgba(255,255,255,.7); }
.play-button { position: relative; z-index: 2; width: 68px; height: 68px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; color: var(--midnight-plum); background: var(--gold); box-shadow: 0 16px 36px rgba(0,0,0,.24); transition: transform .2s ease; }
.video-preview:hover .play-button { transform: scale(1.08); }
.video-copy { padding: 26px 26px 28px; }
.video-copy h3 { color: var(--plum); font-size: 27px; line-height: 1.05; }
.video-copy p { min-height: 48px; margin: 0 0 16px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.video-copy a { color: #8d620a; font-size: 11px; font-weight: 700; text-decoration: none; text-transform: uppercase; }
.center-cta { margin-top: 48px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 25px; }

.discussion { position: relative; overflow: hidden; padding: 120px 0; background: linear-gradient(135deg, var(--midnight-navy), var(--midnight-plum) 60%, #351b38); }
.discussion-pattern { position: absolute; inset: 0; opacity: .22; background: radial-gradient(circle at 15% 30%, rgba(37,89,75,.75), transparent 25%), radial-gradient(circle at 85% 70%, rgba(238,189,74,.3), transparent 20%); }
.discussion-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 80px; }
.discussion-copy p:not(.eyebrow) { max-width: 660px; margin-bottom: 30px; color: rgba(255,255,255,.68); }
.discussion-card { padding: 38px; border: 1px solid rgba(238,189,74,.26); border-radius: 28px; background: rgba(255,255,255,.055); box-shadow: var(--shadow-deep); backdrop-filter: blur(14px); }
.discussion-card h3 { color: var(--ivory); font-size: 34px; }
.discussion-card ul { margin: 24px 0 28px; padding: 0; list-style: none; }
.discussion-card li { position: relative; margin: 14px 0; padding-left: 27px; color: rgba(255,255,255,.72); font-size: 13px; }
.discussion-card li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.discussion-icon { width: 48px; height: 48px; margin-bottom: 18px; display: grid; place-items: center; border-radius: 50%; color: var(--midnight-plum); background: var(--gold); }

.shop { padding: 120px 0; overflow: hidden; }
.shop-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; }
.shop-copy p:not(.eyebrow) { max-width: 570px; margin-bottom: 30px; color: var(--muted); }
.shop-art { position: relative; min-height: 500px; display: grid; place-items: center; }
.gold-disc { position: absolute; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle at 34% 30%, #fff0ad, var(--gold) 38%, #af6f08 100%); box-shadow: 0 34px 70px rgba(238,189,74,.28); }
.merch-card { position: absolute; z-index: 2; width: 290px; height: 370px; padding: 26px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 28px; box-shadow: 0 34px 70px rgba(28,17,29,.26); }
.merch-card-front { transform: rotate(5deg) translate(44px, 12px); color: var(--gold); background: linear-gradient(160deg, var(--plum), var(--midnight-plum)); border: 1px solid rgba(238,189,74,.42); }
.merch-card-front img { width: 190px; aspect-ratio: 1; object-fit: contain; }
.merch-card-front span { margin-top: -8px; font-family: var(--serif); font-size: 26px; font-weight: 700; letter-spacing: .12em; }
.merch-card-back { z-index: 1; transform: rotate(-9deg) translate(-85px, -18px); color: var(--ivory); background: linear-gradient(145deg, var(--burgundy), var(--midnight-plum)); border: 1px solid rgba(255,255,255,.15); }
.merch-card-back span { font-family: var(--serif); font-size: 42px; font-weight: 700; line-height: .92; text-align: center; }

.final-cta { position: relative; overflow: hidden; padding: 120px 0 130px; background: radial-gradient(circle at 50% 100%, rgba(74,42,88,.56), transparent 43%), linear-gradient(180deg, var(--midnight-plum), #100811); }
.final-halo { position: absolute; top: -340px; left: 50%; width: 760px; height: 760px; border: 1px solid rgba(238,189,74,.18); border-radius: 50%; transform: translateX(-50%); box-shadow: inset 0 0 90px rgba(238,189,74,.07); }
.final-inner { position: relative; max-width: 900px; text-align: center; }
.final-inner > img { width: 90px; height: 90px; margin: 0 auto 24px; aspect-ratio: 1; object-fit: contain; border-radius: 50%; filter: drop-shadow(0 16px 25px rgba(0,0,0,.4)); }
.final-inner > p:not(.eyebrow) { max-width: 680px; margin: 0 auto 32px; color: rgba(255,255,255,.7); }
.final-inner .microcopy { margin-top: 15px; display: block; color: rgba(255,255,255,.43); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

.site-footer { padding: 60px 20px 26px; color: var(--plum); background: var(--cream); text-align: center; border-top: 1px solid rgba(49,30,51,.1); }
.lesson-return { display:flex; justify-content:center; margin:0 0 28px; }
.lesson-return-link {
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  min-height:48px; padding:0 22px; border:1px solid rgba(238,189,74,.65);
  border-radius:999px; color:#311e33; background:#fffdf9;
  font-family:var(--sans); font-size:11px; font-weight:700;
  letter-spacing:.06em; text-decoration:none; text-transform:uppercase;
  transition:transform .2s ease,background .2s ease,border-color .2s ease,box-shadow .2s ease;
}
.lesson-return-link span { color:#a8730d; font-size:17px; transition:transform .2s ease; }
.lesson-return-link:hover { transform:translateY(-2px); border-color:#eebd4a; background:#f7d983; box-shadow:0 12px 28px rgba(49,30,51,.12); }
.lesson-return-link:hover span { transform:translateX(-4px); }
.footer-brand { margin-bottom: 24px; display: flex; align-items: center; justify-content: center; gap: 14px; }
.footer-brand img { width: 76px; height: 76px; aspect-ratio: 1; object-fit: contain; border-radius: 50%; }
.footer-brand strong, .footer-brand span { display: block; text-align: left; }
.footer-brand strong { font-family: var(--serif); font-size: 21px; letter-spacing: .12em; }
.footer-brand span { color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.social-intro { margin: 0 0 16px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.social-links { max-width: 930px; margin: 0 auto; display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }
.social-link { min-height: 40px; padding: 0 14px; display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(49,30,51,.13); border-radius: 999px; color: var(--plum); background: rgba(255,255,255,.56); font-size: 10px; font-weight: 700; text-decoration: none; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.social-link:hover { transform: translateY(-2px); border-color: var(--gold); background: var(--white); }
.social-link > span:first-child { color: #9d6b08; font-size: 14px; }
.reading-journey-link { width: fit-content; margin: 22px auto 0; display: block; color: var(--plum); font-size: 11px; font-weight: 700; line-height: 1.5; text-align: center; text-decoration-color: rgba(157,107,8,.5); text-underline-offset: 4px; transition: color .2s ease, text-decoration-color .2s ease; }
.reading-journey-link:hover { color: #9d6b08; text-decoration-color: #9d6b08; }
.footer-bottom { margin-top: 34px; padding-top: 22px; display: flex; justify-content: center; flex-wrap: wrap; gap: 10px 26px; border-top: 1px solid rgba(49,30,51,.09); color: var(--muted); font-size: 10px; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--plum); font-weight: 700; text-decoration: none; }
.footer-bottom a:hover { color: #9d6b08; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinReverse { to { transform: rotate(-360deg); } }

@media (max-width: 1050px) {
  .site-nav { gap: 15px; }
  .site-nav a { font-size: 9px; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .proof-card { min-width: 190px; }
  .story-grid, .discussion-grid, .shop-grid { gap: 50px; }
  .guides-grid { gap: 50px; }
  .video-copy h3 { font-size: 24px; }
}

@media (max-width: 860px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 78px;
    right: 16px;
    left: 16px;
    padding: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    border: 1px solid rgba(238,189,74,.22);
    border-radius: 20px;
    background: rgba(28,17,29,.98);
    box-shadow: var(--shadow-deep);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 10px 12px; font-size: 11px; }
  .site-nav .nav-cta { justify-content: center; margin-top: 6px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 80px; text-align: center; }
  .hero-copy { margin-inline: auto; }
  .hero-lede { margin-inline: auto; }
  .button-row, .trust-row { justify-content: center; }
  .hero-visual { margin-top: -15px; }
  .logo-stage { width: min(480px, 92vw); }
  .proof-card-one { left: 2%; }
  .proof-card-two { right: 1%; }
  .story-grid, .discussion-grid, .shop-grid { grid-template-columns: 1fr; }
  .story-grid { gap: 60px; }
  .guides-grid { grid-template-columns: 1fr; gap: 52px; }
  .guides-copy h2 { max-width: 680px; }
  .video-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .video-preview { min-height: 290px; }
  .discussion-copy { text-align: center; }
  .discussion-copy p { margin-inline: auto; }
  .shop-grid { gap: 20px; }
  .shop-copy { text-align: center; }
  .shop-copy p { margin-inline: auto; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 28px, 1180px); }
  .header-inner { width: calc(100% - 22px); min-height: 70px; }
  .brand { font-size: 17px; }
  .brand img { width: 48px; height: 48px; }
  .site-nav { top: 70px; }
  h1 { font-size: clamp(45px, 14vw, 64px); }
  h2 { font-size: clamp(39px, 12vw, 56px); }
  .hero-grid { padding-block: 65px 120px; }
  .hero-lede { font-size: 15px; }
  .button { width: 100%; padding-inline: 18px; }
  .button-row .text-link { justify-content: center; width: 100%; }
  .trust-row { gap: 7px; }
  .trust-row span { font-size: 8px; }
  .logo-stage { margin-top: 10px; }
  .proof-card { position: relative; top: auto; right: auto; bottom: auto; left: auto; min-width: 0; width: 90%; margin-top: 8px; }
  .proof-card-one { position: absolute; top: 5%; left: 5%; width: 65%; }
  .proof-card-two { position: absolute; right: 4%; bottom: 2%; width: 74%; }
  .hero-divider { bottom: -105px; }
  .story, .watch, .discussion, .shop, .final-cta { padding-block: 90px; }
  .story-panel { text-align: center; }
  .benefit-card, .benefit-card:nth-child(2) { margin-left: 0; grid-template-columns: 48px 1fr; padding: 22px 18px; }
  .benefit-number { width: 44px; height: 44px; font-size: 17px; }
  .video-preview { min-height: 230px; }
  .center-cta .text-link { justify-content: center; width: 100%; }
  .discussion-card { padding: 28px 24px; }
  .shop-art { min-height: 400px; transform: scale(.82); }
  .gold-disc { width: 330px; height: 330px; }
  .merch-card { width: 250px; height: 330px; }
  .merch-card-back { transform: rotate(-9deg) translate(-55px, -18px); }
  .merch-card-front { transform: rotate(5deg) translate(35px, 8px); }
  .footer-brand { flex-direction: column; }
  .footer-brand strong, .footer-brand span { text-align: center; }
  .social-link { flex: 1 1 120px; justify-content: center; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Featured YouTube thumbnails: mqdefault.jpg is a lightweight 320x180 (16:9) image. */
.video-preview {
  aspect-ratio: 16 / 9;
  min-height: 0;
  padding: 0;
  background: var(--midnight-plum);
}
.video-thumbnail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform .35s ease, filter .35s ease;
}
.video-preview:hover .video-thumbnail { transform: scale(1.055); filter: saturate(1.05) contrast(1.03); }
.video-preview::before { z-index: 1; background: linear-gradient(180deg, rgba(16,8,17,.08), rgba(16,8,17,.68)); }
.video-preview::after { z-index: 1; opacity: .16; }
.video-preview .video-kicker,
.video-preview .play-button,
.video-preview .video-duration { z-index: 2; }
.video-preview .video-kicker { top: 18px; left: 18px; }
.video-preview .video-duration { right: 18px; bottom: 16px; }

/* =========================================================
   Homepage revision: header, bare Omnisend host, programs art
   ========================================================= */

/* Stable premium header: full-width, aligned wordmark, and reliable mobile menu. */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-top: 2px solid rgba(238, 189, 74, .92);
  border-bottom: 1px solid rgba(238, 189, 74, .2);
  background: rgba(25, 14, 27, .96);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .22);
}
.header-inner {
  width: min(1280px, calc(100% - 36px));
  min-height: 86px;
  gap: 26px;
}
.brand {
  min-width: max-content;
  gap: 13px;
  line-height: 1;
}
.brand img {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 0;
}
.brand-wordmark { display: grid; justify-items: center; gap: 3px; }
.brand-wordmark strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 22px;
  line-height: .9;
  letter-spacing: .13em;
}
.brand-wordmark small {
  margin: 0;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 7px;
  line-height: 1;
  letter-spacing: .58em;
  padding-left: .58em;
}
.site-nav { gap: clamp(9px, 1.1vw, 14px); }
.site-nav a { white-space: nowrap; font-size: 9.5px; }
.site-nav .nav-cta { min-height: 46px; padding-inline: 16px; }

/* Program-first showcase. Bible Decoded remains visibly on top. */
.program-showcase {
  position: relative;
  min-height: 690px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.program-card {
  position: absolute;
  display: block;
  overflow: hidden;
  border-radius: 26px;
  text-decoration: none;
  box-shadow: 0 32px 72px rgba(28, 17, 29, .25);
  transition: transform .28s ease, box-shadow .28s ease;
}
.program-card:hover { box-shadow: 0 40px 90px rgba(28, 17, 29, .33); }
.program-card img { width: 100%; height: 100%; object-fit: cover; }
.program-card-primary {
  z-index: 4;
  top: 0;
  left: 8%;
  width: min(390px, 68%);
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(238, 189, 74, .65);
  background: var(--midnight-plum);
  transform: rotate(-2.5deg);
}
.program-card-primary:hover { transform: rotate(-1deg) translateY(-7px); }
.program-card-secondary {
  z-index: 3;
  right: 1%;
  bottom: 0;
  width: min(340px, 59%);
  aspect-ratio: 1;
  border: 1px solid rgba(49, 30, 51, .16);
  background: linear-gradient(145deg, #0d070e, var(--plum));
  transform: rotate(4deg);
}
.program-card-secondary:hover { transform: rotate(2deg) translateY(-7px); }
.program-badge {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 15px;
  padding: 7px 10px;
  border: 1px solid rgba(238, 189, 74, .55);
  border-radius: 999px;
  color: var(--midnight-plum);
  background: rgba(247, 217, 131, .94);
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.program-showcase .gold-disc {
  z-index: 1;
  width: 430px;
  height: 430px;
  opacity: .7;
  background: radial-gradient(circle, #fff2b2 0%, var(--gold) 38%, rgba(238,189,74,.08) 68%, transparent 69%);
  filter: blur(.2px);
}
.shop-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }
.shop-copy strong { color: var(--plum); }

/* Omnisend already draws its own form window. This host adds no second card. */
#guide-form { scroll-margin-top: 110px; }
.omnisend-form-host {
  width: min(780px, 100%);
  min-height: 0;
  height: auto;
  margin: 38px auto 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  color: inherit;
  background: transparent;
  box-shadow: none;
  text-align: left;
}
.omnisend-form-host:focus-visible {
  outline: 3px solid rgba(238, 189, 74, .62);
  outline-offset: 8px;
  border-radius: 8px;
}
.omnisend-form-host > #omnisend-embedded-v2-69965e87faf307608c8f562a {
  width: 100%;
  min-height: 0;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.omnisend-form-host noscript { display: block; padding: 18px; color: var(--ivory); text-align: center; }

@media (max-width: 1100px) {
  .header-inner { width: min(100% - 26px, 1280px); }
  .brand-wordmark strong { font-size: 19px; }
  .site-nav { gap: 14px; }
  .site-nav a { font-size: 9px; letter-spacing: .05em; }
}

@media (max-width: 860px) {
  .header-inner { min-height: 76px; }
  .brand img { flex-basis: 56px; width: 56px; height: 56px; }
  .site-nav { top: 76px; }
  .program-showcase { min-height: 760px; }
  .program-card-primary { left: 8%; width: min(410px, 72%); }
  .program-card-secondary { right: 6%; width: min(330px, 58%); }
  .shop-actions { justify-content: center; }
}

@media (max-width: 600px) {
  .header-inner { width: calc(100% - 20px); min-height: 72px; }
  .brand { gap: 9px; }
  .brand img { flex-basis: 50px; width: 50px; height: 50px; }
  .brand-wordmark strong { font-size: 16px; letter-spacing: .1em; }
  .brand-wordmark small { font-size: 6px; }
  .site-nav { top: 72px; }
  .program-showcase {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .program-card { position: relative; inset: auto; transform: none; }
  .program-card-primary { order: 1; width: min(100%, 390px); }
  .program-card-secondary { order: 2; width: min(88%, 330px); margin-left: auto; }
  .program-card-primary:hover, .program-card-secondary:hover { transform: translateY(-5px); }
  .program-showcase .gold-disc { display: none; }
  .shop-actions { gap: 16px; }
  .shop-actions .text-link { width: 100%; justify-content: center; }
  .omnisend-form-host { width: 100%; margin-top: 28px; }
}

/* =========================================================
   Compact Omnisend embed
   Keeps the form readable without stretching its containers.
   ========================================================= */

#guide-form {
  width: min(100%, 680px);
  height: auto !important;
  min-height: 0 !important;
  margin: 32px auto 0;
  padding: 0;
  scroll-margin-top: 110px;
}

.omnisend-form-host,
.omnisend-form-wrapper {
  width: 100%;
  max-width: 680px;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

#omnisend-embedded-v2-69965e87faf307608c8f562a {
  display: block !important;
  width: 100% !important;
  max-width: 680px !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  margin: 0 auto !important;
  padding: 0 !important;
  border: 0 !important;
  color: #311e33 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

/* Omnisend sometimes injects fixed or minimum heights into nested wrappers. */
#omnisend-embedded-v2-69965e87faf307608c8f562a > div,
#omnisend-embedded-v2-69965e87faf307608c8f562a > div > div,
#omnisend-embedded-v2-69965e87faf307608c8f562a > div > div > div,
#omnisend-embedded-v2-69965e87faf307608c8f562a form,
#omnisend-embedded-v2-69965e87faf307608c8f562a form > div {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
}

#omnisend-embedded-v2-69965e87faf307608c8f562a [style*="min-height"] {
  min-height: 0 !important;
}

#omnisend-embedded-v2-69965e87faf307608c8f562a [style*="height: 100%"],
#omnisend-embedded-v2-69965e87faf307608c8f562a [style*="height:100%"] {
  height: auto !important;
}

/* Keep consent, privacy, and field text visible on the light form. */
#omnisend-embedded-v2-69965e87faf307608c8f562a p,
#omnisend-embedded-v2-69965e87faf307608c8f562a label,
#omnisend-embedded-v2-69965e87faf307608c8f562a span,
#omnisend-embedded-v2-69965e87faf307608c8f562a small,
#omnisend-embedded-v2-69965e87faf307608c8f562a a {
  color: #311e33 !important;
  opacity: 1 !important;
}

#omnisend-embedded-v2-69965e87faf307608c8f562a input,
#omnisend-embedded-v2-69965e87faf307608c8f562a textarea,
#omnisend-embedded-v2-69965e87faf307608c8f562a select {
  color: #171418 !important;
}

#omnisend-embedded-v2-69965e87faf307608c8f562a input::placeholder,
#omnisend-embedded-v2-69965e87faf307608c8f562a textarea::placeholder {
  color: #726873 !important;
  opacity: 1 !important;
}

/* Prevent the final CTA layout from stretching the embedded form. */
.final-inner {
  height: auto;
  min-height: 0;
}

@media (max-width: 600px) {
  #guide-form,
  .omnisend-form-host,
  .omnisend-form-wrapper,
  #omnisend-embedded-v2-69965e87faf307608c8f562a {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Omnisend spacing isolation:
   Landing-page paragraph spacing applies only to direct children of .final-inner.
   Omnisend keeps the spacing defined by its own form stylesheet. */
.omnisend-form-host #omnisend-embedded-v2-69965e87faf307608c8f562a p {
  max-width: none;
}

/* =========================================================
   Readability
   Larger body text, clearer actions, and comfortable spacing.
   ========================================================= */

body {
  font-size: 18px;
}

main p:not(.eyebrow),
main li {
  font-size: clamp(1.125rem, 1.08rem + .22vw, 1.25rem);
  line-height: 1.75;
}

.hero-lede,
.discussion-copy > p,
.shop-copy > p,
.story-panel > p:not(.eyebrow),
.final-inner > p:not(.eyebrow) {
  max-width: 62ch;
}

.button,
.text-link,
.video-copy > a {
  font-size: .95rem;
  line-height: 1.35;
}

.hero-form-panel {
  align-self: center;
}

.form-intro {
  width: min(680px, 100%);
  margin: 0 auto 18px;
  padding: 0 8px;
  color: var(--white);
  text-align: left;
}

.form-intro strong,
.form-intro span {
  display: block;
}

.form-intro strong {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 600;
  line-height: 1.15;
}

.form-intro span {
  margin-top: 8px;
  color: rgba(255, 253, 249, .78);
  font-size: 1rem;
  line-height: 1.55;
}

@media (max-width: 760px) {
  body {
    font-size: 17px;
  }

  main p:not(.eyebrow),
  main li {
    font-size: 1.125rem;
    line-height: 1.72;
  }

  .hero-grid {
    gap: 44px;
  }

  .form-intro {
    text-align: center;
  }

  .button {
    width: 100%;
    min-height: 58px;
    padding-inline: 22px;
    text-align: center;
  }
}

/* =========================================================
   Utility pages: privacy, confirmation, and not-found
   ========================================================= */

.privacy-page,
.subpage {
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 18%, rgba(238, 189, 74, .09), transparent 24%),
    var(--cream);
}

.privacy-hero {
  padding: 92px 0 72px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 10%, rgba(238, 189, 74, .15), transparent 28%),
    linear-gradient(135deg, var(--midnight-plum), var(--plum));
}

.privacy-hero-inner {
  max-width: 900px;
}

.privacy-hero h1 {
  margin-bottom: 20px;
}

.privacy-hero p:not(.eyebrow) {
  max-width: 65ch;
  color: rgba(255, 253, 249, .88);
}

.privacy-updated {
  font-weight: 700;
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(230px, 290px) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  padding-block: 64px 90px;
}

.privacy-toc {
  position: sticky;
  top: 112px;
  max-height: calc(100dvh - 135px);
  overflow-y: auto;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 253, 249, .9);
  box-shadow: 0 18px 48px rgba(49, 30, 51, .08);
}

.privacy-toc-title {
  margin: 0 0 12px;
  color: var(--plum);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
}

.privacy-toc nav {
  display: grid;
  gap: 5px;
}

.privacy-toc a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 7px 9px;
  border-radius: 9px;
  color: var(--tjm-readable-muted, #5f5660);
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
}

.privacy-toc a:hover {
  color: var(--plum);
  background: rgba(238, 189, 74, .13);
}

.legal-document {
  min-width: 0;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.legal-intro {
  margin-bottom: 42px;
  padding: 24px;
  border-left: 5px solid var(--gold);
  border-radius: 0 16px 16px 0;
  background: #f8f0df;
}

.legal-section {
  padding-top: 38px;
  border-top: 1px solid var(--border);
}

.legal-section + .legal-section {
  margin-top: 38px;
}

.legal-section h2 {
  margin-bottom: 22px;
  color: var(--plum);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
}

.legal-section h3,
.legal-section h4 {
  margin: 30px 0 10px;
  color: var(--plum);
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1.2;
}

.legal-list {
  padding-left: 1.35em;
}

.subpage .section {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 54px 0;
}

.thank-you-card {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(30px, 6vw, 68px);
  border: 1px solid rgba(238, 189, 74, .3);
  border-radius: 30px;
  background: rgba(255, 253, 249, .96);
  box-shadow: var(--shadow);
  text-align: center;
}

.thank-you-card > p:not(.eyebrow) {
  margin-inline: auto;
}

.thank-you-card h1 {
  margin-bottom: 22px;
  color: var(--plum);
}

.final-mark {
  width: 92px;
  height: 92px;
  margin: 0 auto 22px;
}

.final-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.next-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
  text-align: left;
}

.next-steps article {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--cream);
}

.next-steps article > span {
  color: #946407;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
}

.next-steps h2 {
  margin: 14px 0 8px;
  font-size: 1.8rem;
}

.next-steps p {
  margin: 0;
}

/* Landing-page section contrast and simplified single-column stories. */
.story-single .story-grid {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.story-single .story-panel {
  text-align: center;
}

.story-single .story-panel > p:not(.eyebrow) {
  margin-inline: auto;
}

.discussion.section-light {
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 24%, rgba(238, 189, 74, .16), transparent 27%),
    radial-gradient(circle at 88% 76%, rgba(74, 42, 88, .10), transparent 28%),
    var(--white);
}

.discussion.section-light .discussion-pattern {
  opacity: .36;
  background:
    radial-gradient(circle at 12% 28%, rgba(238, 189, 74, .28), transparent 24%),
    radial-gradient(circle at 88% 72%, rgba(74, 42, 88, .16), transparent 22%);
}

.discussion.section-light h2,
.discussion.section-light .discussion-card h3 {
  color: var(--plum);
}

.discussion.section-light .discussion-copy p:not(.eyebrow),
.discussion.section-light .discussion-card li {
  color: var(--muted);
}

.discussion.section-light .discussion-card {
  border-color: rgba(238, 189, 74, .42);
  background: rgba(255, 253, 249, .92);
  box-shadow: var(--shadow);
}

.discussion.section-light .text-link {
  color: var(--plum);
}

.watch.section-dark {
  background:
    radial-gradient(circle at 15% 22%, rgba(74, 42, 88, .52), transparent 30%),
    radial-gradient(circle at 88% 76%, rgba(238, 189, 74, .12), transparent 24%),
    linear-gradient(150deg, var(--midnight-plum), #130b15 68%, #261228);
}

.chron-signup.section-dark {
  background:
    radial-gradient(circle at 12% 20%, rgba(238, 189, 74, .15), transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(74, 42, 88, .54), transparent 30%),
    linear-gradient(145deg, var(--midnight-plum), #120a14 64%, #2b172f);
}

.chron-signup.section-dark .story-panel > p:not(.eyebrow) {
  color: rgba(255, 255, 255, .78);
}

@media (max-width: 860px) {
  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-toc {
    position: relative;
    top: auto;
    max-height: 330px;
  }
}

@media (max-width: 700px) {
  .privacy-hero {
    padding: 64px 0 54px;
  }

  .privacy-layout {
    gap: 24px;
    padding-block: 28px 60px;
  }

  .legal-document,
  .thank-you-card {
    padding: 26px 20px;
    border-radius: 22px;
  }

  .next-steps {
    grid-template-columns: 1fr;
  }
}
