/* ======================================================================
   ZENMUNIS — Site styles
   Loads on top of /css/tokens.css
   ====================================================================== */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  overflow-x: hidden;
}

/* Add Cinzel Decorative for the brand wordmark */
@import url("https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&display=swap");

img { display: block; max-width: 100%; }

.app {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 1400px 800px at 50% -10%, rgba(58, 40, 16, 0.55) 0%, transparent 60%),
    radial-gradient(ellipse 900px 600px at 50% 18%, rgba(201, 168, 76, 0.06) 0%, transparent 70%),
    var(--black);
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}

/* ----------------------------------------------------------------------
   TRUST BAR
   ---------------------------------------------------------------------- */
.trust-bar {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  padding: 11px 24px;
  background: var(--dark);
  border-bottom: 1px solid var(--gold-faint);
  position: relative;
  z-index: 60;
}
.trust-bar__avatars {
  display: flex;
}
.trust-bar__avatars span {
  width: 22px; height: 22px; border-radius: 50%;
  border: 0.5px solid var(--gold-deep);
  margin-left: -8px;
}
.trust-bar__avatars span:first-child { margin-left: 0; }
.trust-bar__avatars span:nth-child(1){ background: radial-gradient(circle at 35% 30%, #6a4818, #1a0d04 60%, #050301); }
.trust-bar__avatars span:nth-child(2){ background: radial-gradient(circle at 35% 30%, #8a6420, #2a1810 60%, #0a0500); }
.trust-bar__avatars span:nth-child(3){ background: radial-gradient(circle at 35% 30%, #5a3e10, #1a0d04 60%, #050301); }
.trust-bar__stars {
  color: var(--gold); font-family: var(--font-label);
  font-size: 10px; letter-spacing: 2px;
}
.trust-bar__text {
  font-family: var(--font-label); font-size: 10px;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--cream-muted);
}
@media (max-width: 600px) {
  .trust-bar__text { font-size: 9px; letter-spacing: 0.2em; }
  .trust-bar__avatars span:nth-child(3){ display: none; }
}

/* ----------------------------------------------------------------------
   HEADER / NAV
   ---------------------------------------------------------------------- */
.zh {
  position: sticky; top: 0; z-index: 50;
  background: rgba(5, 3, 1, 0.85);
  backdrop-filter: none;
  transition: background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}
.zh.is-scrolled {
  background: rgba(5, 3, 1, 0.96);
  box-shadow: 0 1px 0 var(--gold-faint);
}
.zh__nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 56px);
  border-bottom: 0.5px solid var(--gold-faint);
}
.zh__brand { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.zh__name {
  font-family: "Cinzel Decorative", var(--font-display);
  font-weight: 400;
  font-size: 20px;
  color: var(--gold-light);
  letter-spacing: 0.16em;
  font-style: normal;
}
.zh__links { display: flex; gap: 36px; }
.zh__links a {
  font-family: var(--font-label); font-size: 10.5px;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--cream-dim);
  position: relative;
  padding: 4px 0;
}
.zh__links a::after {
  content: ""; position: absolute; left: 50%; right: 50%; bottom: 0;
  height: 1px; background: var(--gold);
  transition: left var(--dur-base) var(--ease-out), right var(--dur-base) var(--ease-out);
}
.zh__links a:hover { color: var(--gold-light); }
.zh__links a:hover::after { left: 0; right: 0; }

.zh__cta {
  font-family: var(--font-label); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  padding: 10px 18px;
  border: 1px solid var(--gold-deep);
  background: transparent;
  cursor: pointer;
  transition: color var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}
.zh__cta:hover { background: var(--gold); color: #0a0500; border-color: var(--gold); }

.zh__menu {
  display: none;
  background: transparent; border: none;
  width: 32px; height: 32px;
  flex-direction: column; justify-content: center; gap: 5px;
  cursor: pointer; padding: 0;
}
.zh__menu span { display: block; width: 22px; height: 1px; background: var(--gold); margin: 0 auto; }

@media (max-width: 900px) {
  .zh__links { display: none; }
  .zh__cta { display: none; }
  .zh__menu { display: flex; }
}

/* Mobile drawer */
.zh__drawer {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  animation: fadeIn .2s ease;
}
.zh__drawer-nav {
  position: absolute; top: 0; right: 0;
  width: min(320px, 85vw); height: 100%;
  background: #0d0800;
  border-left: 1px solid var(--gold-deep);
  padding: 80px 32px 40px;
  display: flex; flex-direction: column; gap: 8px;
  animation: slideIn .25s var(--ease-out);
}
.zh__drawer-nav a {
  font-family: var(--font-label);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--stone-light);
  padding: 14px 0;
  border-bottom: 1px solid rgba(180,140,60,0.12);
  text-decoration: none;
  transition: color .2s;
}
.zh__drawer-nav a:hover { color: var(--gold); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }

/* ----------------------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------------------- */
.zbtn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 17px 38px;
  font-family: var(--font-label); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  background: var(--gold); color: #0a0500;
  border: none; cursor: pointer;
  transition: color .35s var(--ease-out), transform .35s var(--ease-out);
}
.zbtn::before {
  content: ""; position: absolute; inset: 0;
  background: var(--gold-light);
  transform: translateX(-101%);
  transition: transform .4s var(--ease-out);
  z-index: 0;
}
.zbtn:hover::before { transform: translateX(0); }
.zbtn > * { position: relative; z-index: 1; }
.zbtn--full { width: 100%; }
.zbtn--ghost {
  background: transparent; color: var(--gold);
  border: 1px solid var(--gold-deep);
}
.zbtn--ghost::before { background: var(--gold); }
.zbtn--ghost:hover { color: #0a0500; border-color: var(--gold); }
.zbtn--lg { padding: 20px 48px; font-size: 11.5px; }

/* ----------------------------------------------------------------------
   DIVIDER WITH DIAMOND
   ---------------------------------------------------------------------- */
.zdivider {
  display: flex; align-items: center; gap: 12px;
  width: 120px; margin: 18px auto;
}
.zdivider span {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-deep) 50%, transparent 100%);
}
.diamond {
  width: 6px; height: 6px;
  background: var(--gold); transform: rotate(45deg);
  flex: 0 0 auto;
}

/* ----------------------------------------------------------------------
   PRICING
   ---------------------------------------------------------------------- */
.pricing {
  display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap;
  padding-bottom: 18px; border-bottom: 0.5px solid var(--gold-faint);
}
.pricing__was { font-size: 18px; color: var(--cream-dim); text-decoration: line-through; }
.pricing__now {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 56px; color: var(--gold-light); line-height: 1;
}
.pricing__badge {
  font-family: var(--font-label); font-size: 9.5px;
  letter-spacing: 0.22em; text-transform: uppercase;
  background: var(--gold); color: #0a0500; padding: 5px 12px;
  margin-left: auto;
  border-radius: 999px;
}

/* ----------------------------------------------------------------------
   HERO
   ---------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(40px, 6vw, 88px) clamp(20px, 5vw, 56px) clamp(48px, 6vw, 80px);
  overflow: hidden;
}
.hero__candles {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(232, 201, 122, 0.10), transparent 24%),
    radial-gradient(circle at 88% 22%, rgba(232, 201, 122, 0.08), transparent 26%),
    radial-gradient(circle at 50% 100%, rgba(201, 168, 76, 0.08), transparent 50%);
  animation: candleFlicker 6s ease-in-out infinite;
}
@keyframes candleFlicker {
  0%, 100% { opacity: 0.95; }
  35% { opacity: 1; }
  60% { opacity: 0.85; }
  80% { opacity: 1; }
}

.hero__top {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  position: relative; z-index: 2;
}
.hero__overline { color: var(--gold-deep); }

.hero__grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  margin-top: 56px;
  max-width: 1240px;
  margin-inline: auto;
}
.hero__copy { max-width: 580px; }
.hero__title {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(46px, 6.2vw, 86px);
  line-height: 1.02;
  color: var(--gold-light);
  margin: 22px 0 28px;
  letter-spacing: -0.005em;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
  position: relative;
}
.hero__sub {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(17px, 1.4vw, 21px); line-height: 1.6;
  color: var(--cream-muted);
  margin: 0 0 36px; max-width: 480px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero__trust-line {
  margin-top: 28px;
  font-family: var(--font-label); font-size: 9.5px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream-dim);
}

/* Hero portrait stack */
.hero__portrait {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--dark);
  border: 0.5px solid var(--gold-faint);
  overflow: hidden;
  max-width: 520px;
  justify-self: center;
  width: 100%;
}
.hero__portrait::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5,3,1,0.65) 100%);
  z-index: 2;
  pointer-events: none;
}
.hero__aura {
  position: absolute; inset: -10%;
  background: radial-gradient(circle at 50% 45%, rgba(201,168,76,0.22) 0%, transparent 55%);
  animation: aura 4s ease-in-out infinite;
  z-index: 1;
}
@keyframes aura {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.04); }
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  transform: scale(1.55);
  transform-origin: 50% 28%;
  opacity: 0.95;
  position: relative; z-index: 0;
}
.hero__video {
  object-position: 50% 50%;
  transform: scale(1);
  transform-origin: 50% 50%;
}
.hero__portrait:has(.hero__video) { aspect-ratio: 16 / 10; }
.hero__caption {
  position: absolute;
  left: 28px; bottom: 24px;
  z-index: 3;
}
.hero__caption-label {
  font-family: var(--font-label); font-size: 9px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 8px;
}
.hero__caption-stage {
  position: relative;
  width: 320px; max-width: 60vw;
  height: 64px;
}
.hero__caption-title {
  position: absolute; inset: 0;
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 22px; line-height: 1.2;
  color: var(--cream);
  opacity: 0;
  animation: heroCaptionPhrase 52.5s linear infinite;
}
@keyframes heroCaptionPhrase {
  0%      { opacity: 0; transform: translateY(8px); }
  1%      { opacity: 1; transform: translateY(0); }
  6.66%   { opacity: 1; transform: translateY(0); }
  7.66%   { opacity: 0; transform: translateY(-8px); }
  100%    { opacity: 0; transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__caption-title { animation: none; opacity: 1; }
  .hero__caption-title:not(:first-child) { display: none; }
}

/* ----------------------------------------------------------------------
   STATS / MARQUEE STRIP
   ---------------------------------------------------------------------- */
.strip {
  background: var(--dark);
  border-block: 1px solid var(--gold-faint);
  padding: 24px 0;
  overflow: hidden;
  position: relative;
}
.strip::before,
.strip::after {
  content: "";
  position: absolute; top: 0; bottom: 0; width: 120px;
  pointer-events: none; z-index: 2;
}
.strip::before { left: 0;  background: linear-gradient(90deg, var(--dark), transparent); }
.strip::after  { right: 0; background: linear-gradient(-90deg, var(--dark), transparent); }
.strip__viewport {
  display: flex;
  width: max-content;
  animation: stripScroll 70s linear infinite;
}
.strip__track {
  display: flex; align-items: center;
  gap: clamp(40px, 6vw, 80px);
  padding-right: clamp(40px, 6vw, 80px);
  flex-shrink: 0;
}
.strip__item {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-label); font-size: 10.5px;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--cream-dim);
  white-space: nowrap;
}
.strip__item .diamond { width: 5px; height: 5px; }
.strip:hover .strip__viewport { animation-play-state: paused; }
@keyframes stripScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .strip__viewport { animation: none; }
}

/* ----------------------------------------------------------------------
   SECTION HEAD
   ---------------------------------------------------------------------- */
.section {
  padding: clamp(72px, 9vw, 140px) clamp(20px, 5vw, 56px);
  position: relative;
}
.section--dark { background: var(--dark); }
.section__head {
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  margin-bottom: clamp(48px, 6vw, 80px);
  max-width: 720px; margin-inline: auto;
}
.section__title {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(36px, 4.6vw, 64px);
  color: var(--gold-light);
  margin: 14px 0 18px;
  line-height: 1.1;
}
.section__lead {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(17px, 1.3vw, 20px);
  color: var(--cream-muted);
  line-height: 1.55;
  margin: 0;
}

/* ----------------------------------------------------------------------
   ABOUT THE TEACHER
   ---------------------------------------------------------------------- */
.about {
  position: relative;
  padding: clamp(80px, 10vw, 160px) clamp(20px, 5vw, 56px);
}
.about__grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  max-width: 1240px; margin-inline: auto;
}
.about__portrait {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--dark-2);
  border: 0.5px solid var(--gold-faint);
  overflow: hidden;
  max-width: 460px;
}
.about__portrait::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 30%, rgba(5,3,1,0.3) 100%);
}
.about__portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  transform: scale(1.55);
  transform-origin: 50% 28%;
  opacity: 0.92;
}
.about__signature {
  position: absolute;
  left: -12px; bottom: -28px;
  z-index: 4;
  background: var(--black);
  border: 1px solid var(--gold-dim);
  padding: 18px 22px;
  max-width: 240px;
}
.about__signature-edge {
  position: absolute; inset: 0 0 auto 0; height: 1px;
  background: var(--grad-gold);
}
.about__signature-name {
  font-family: var(--font-display); font-style: italic;
  font-size: 22px; color: var(--gold-light);
  display: block; line-height: 1;
}
.about__signature-role {
  font-family: var(--font-label); font-size: 9px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-deep);
  display: block; margin-top: 8px;
}

.about__copy { max-width: 540px; }
.about__copy h2 {
  margin: 0 0 36px;
  line-height: 1.08;
}
.about__copy p {
  font-family: var(--font-body); font-size: 17px;
  line-height: 1.85; color: var(--cream-muted);
  margin: 0 0 22px;
}
.about__copy p:last-of-type { margin-bottom: 0; }
.about__copy p strong { color: var(--cream); font-weight: 500; }
.about__traditions {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 0.5px solid var(--gold-faint);
}
.about__tradition {
  display: flex; flex-direction: column; gap: 6px;
}
.about__tradition .label { color: var(--gold-deep); }
.about__tradition span:last-child {
  font-family: var(--font-display); font-style: italic;
  font-size: 18px; color: var(--cream);
}

/* ----------------------------------------------------------------------
   BOOKS — Featured
   ---------------------------------------------------------------------- */
.books { padding: clamp(80px, 9vw, 140px) 0; }
.books__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1240px; margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}
.book {
  position: relative;
  background: var(--dark-3);
  border: 1px solid var(--gold-dim);
  padding: 36px 32px 32px;
  display: flex; flex-direction: column; gap: 22px;
  transition: transform var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.book:hover {
  transform: translateY(-4px);
  border-color: var(--gold-deep);
  box-shadow: var(--shadow-lift);
}
.book--featured .book__edge {
  position: absolute; inset: 0 0 auto 0; height: 1px;
  background: var(--grad-gold);
}
.book__cover {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--dark);
  overflow: hidden;
  border: 0.5px solid var(--gold-faint);
}
.book__cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.book:hover .book__cover img { transform: scale(1.04); }
.book__cover-gloss {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(232,201,122,0.0) 30%,
    rgba(232,201,122,0.08) 50%,
    rgba(232,201,122,0.0) 70%);
  pointer-events: none;
}
.book__label { color: var(--gold-deep); }
.book__title {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 28px; line-height: 1.15;
  color: var(--gold-light);
  margin: 0;
}
.book__desc {
  font-family: var(--font-body); font-size: 15px;
  line-height: 1.65; color: var(--cream-muted);
  margin: 0;
}
.book__meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 18px;
  border-top: 0.5px solid var(--gold-faint);
}
.book__price {
  font-family: var(--font-display); font-style: italic;
  font-size: 32px; color: var(--gold-light); line-height: 1;
}
.book__price-was {
  font-size: 14px; color: var(--cream-dim);
  text-decoration: line-through;
  margin-left: 10px;
}
.book__cta {
  font-family: var(--font-label); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 8px;
  transition: color var(--dur-base) var(--ease-out);
}
.book__cta:hover { color: var(--gold-light); }
.book__cta-arrow {
  display: inline-block;
  transition: transform var(--dur-base) var(--ease-out);
}
.book__cta:hover .book__cta-arrow { transform: translateX(4px); }

.book__bundle-flag {
  position: absolute; top: -1px; right: -1px;
  background: var(--gold);
  color: #0a0500;
  font-family: var(--font-label); font-size: 9px;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 8px 14px;
  z-index: 2;
}

/* ----------------------------------------------------------------------
   COURSES
   ---------------------------------------------------------------------- */
.courses__list {
  max-width: 1100px; margin-inline: auto;
  display: flex; flex-direction: column;
}
.course {
  display: grid; grid-template-columns: 1fr 1.6fr 0.6fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: 36px 0;
  border-top: 0.5px solid var(--gold-faint);
  transition: padding var(--dur-base) var(--ease-out);
  cursor: pointer;
  position: relative;
}
.course:last-child { border-bottom: 0.5px solid var(--gold-faint); }
.course::before {
  content: ""; position: absolute;
  left: 0; top: 0; height: 1px; width: 0;
  background: var(--grad-gold);
  transition: width .55s var(--ease-out);
}
.course:hover::before { width: 100%; }
.course__num {
  font-family: var(--font-display); font-style: italic;
  font-size: 32px; color: var(--gold-deep);
  line-height: 1;
}
.course__title {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(24px, 2.6vw, 36px);
  color: var(--gold-light);
  margin: 0 0 8px;
  line-height: 1.15;
}
.course__desc {
  font-family: var(--font-body); font-size: 15px;
  line-height: 1.65; color: var(--cream-muted);
  margin: 0;
  max-width: 560px;
}
.course__meta {
  display: flex; flex-direction: column; gap: 10px;
  text-align: right;
  align-items: flex-end;
}
.course__meta .label { color: var(--gold-deep); }
.course__meta-price {
  font-family: var(--font-display); font-style: italic;
  font-size: 26px; color: var(--gold-light);
  line-height: 1;
}
.course__arrow {
  font-family: var(--font-display); font-size: 18px;
  color: var(--gold);
  transition: transform var(--dur-base) var(--ease-out);
}
.course:hover .course__arrow { transform: translateX(6px); }

/* ----------------------------------------------------------------------
   JOURNEY (Transformation timeline)
   ---------------------------------------------------------------------- */
.journey { background: var(--dark); }

.journey__body {
  max-width: 1400px; margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.journey__image-wrap {
  position: sticky; top: 120px;
  border: 0.5px solid var(--gold-faint);
  overflow: hidden;
}
.journey__image {
  width: 100%; height: auto;
  display: block;
  filter: sepia(10%) brightness(0.92);
  transition: filter .6s ease;
}
.journey__image-wrap:hover .journey__image { filter: sepia(0%) brightness(1); }

.journey__rail {
  position: relative;
}
.journey__rail::before {
  content: ""; position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg,
    transparent 0%,
    var(--gold-faint) 8%,
    var(--gold-dim) 50%,
    var(--gold-faint) 92%,
    transparent 100%);
  transform: translateX(-0.5px);
}
.journey__row {
  display: grid; grid-template-columns: 1fr 80px 1fr;
  gap: 24px;
  align-items: center;
  padding: 48px 0;
  position: relative;
}
.journey__node {
  width: 14px; height: 14px;
  background: var(--gold);
  transform: rotate(45deg);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px var(--dark), 0 0 0 7px var(--gold-deep), 0 0 24px rgba(201,168,76,0.4);
}
.journey__num {
  position: absolute;
  font-family: var(--font-display); font-style: italic;
  font-size: 22px; color: var(--gold-deep);
  z-index: 3;
  background: var(--dark); padding: 0 6px;
}
.journey__row:nth-child(odd) .journey__num { left: calc(50% + 32px); }
.journey__row:nth-child(even) .journey__num { right: calc(50% + 32px); }

.journey__card {
  background: var(--dark-3);
  border: 1px solid var(--gold-dim);
  padding: 28px 32px;
  position: relative;
}
.journey__card-edge {
  position: absolute; inset: 0 0 auto 0; height: 1px;
  background: var(--grad-gold);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out);
}
.journey__row:hover .journey__card-edge { opacity: 1; }
.journey__card .label { color: var(--gold-deep); margin-bottom: 12px; display: block; }
.journey__card h3 {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 26px; color: var(--gold-light);
  margin: 0 0 12px; line-height: 1.2;
}
.journey__card p {
  font-family: var(--font-body); font-size: 15px;
  line-height: 1.7; color: var(--cream-muted);
  margin: 0;
}

.journey__row:nth-child(odd) .journey__card { grid-column: 1; text-align: right; }
.journey__row:nth-child(odd) .journey__card-side { grid-column: 3; }
.journey__row:nth-child(even) .journey__card-side { grid-column: 1; }
.journey__row:nth-child(even) .journey__card { grid-column: 3; }
.journey__row > .journey__node-wrap {
  grid-column: 2;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}

/* ----------------------------------------------------------------------
   QUOTE SLAB (cinematic large quote)
   ---------------------------------------------------------------------- */
.quote-slab {
  position: relative;
  padding: clamp(96px, 12vw, 180px) clamp(20px, 5vw, 56px);
  text-align: center;
  background:
    radial-gradient(ellipse 800px 400px at 50% 50%, rgba(201,168,76,0.08), transparent 70%),
    var(--black);
  overflow: hidden;
}
.quote-slab__candle {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 20px 4px rgba(232,201,122,0.4),
              0 0 40px 8px rgba(201,168,76,0.2);
  animation: candleGlow 3s ease-in-out infinite;
}
.quote-slab__candle--1 { top: 20%; left: 15%; }
.quote-slab__candle--2 { top: 30%; right: 18%; animation-delay: 0.7s; }
.quote-slab__candle--3 { bottom: 25%; left: 22%; animation-delay: 1.3s; }
.quote-slab__candle--4 { bottom: 30%; right: 14%; animation-delay: 0.4s; }
@keyframes candleGlow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}
.quote-slab__text {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(30px, 4.4vw, 60px);
  line-height: 1.25;
  color: var(--gold-light);
  max-width: 1000px; margin: 0 auto;
  letter-spacing: -0.005em;
  position: relative;
  z-index: 2;
}
.quote-slab__attr {
  font-family: var(--font-label); font-size: 10px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 36px; display: block;
  position: relative; z-index: 2;
}

/* ----------------------------------------------------------------------
   TESTIMONIALS
   ---------------------------------------------------------------------- */
.testimonials__grid {
  max-width: 1200px; margin-inline: auto;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.tcard {
  display: flex; flex-direction: column; gap: 18px;
  background: var(--dark-3);
  border: 1px solid var(--gold-dim);
  padding: 32px 36px;
  position: relative;
  transition: border-color var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
}
.tcard:hover { border-color: var(--gold-deep); transform: translateY(-3px); }
.tcard__stars {
  color: var(--gold);
  font-size: 11px; letter-spacing: 3px;
}
.tcard__quote {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 19px; line-height: 1.6;
  color: var(--cream);
  margin: 0;
  flex-grow: 1;
  text-wrap: pretty;
}
.tcard__quote::before { content: "“"; color: var(--gold-deep); margin-right: 4px; }
.tcard__quote::after { content: "”"; color: var(--gold-deep); margin-left: 2px; }
.tcard__author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 18px; border-top: 0.5px solid var(--gold-faint);
}
.tcard__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #5a3e10, #1a0d04 60%, #050301);
  border: 0.5px solid var(--gold-deep);
  flex: 0 0 auto;
}
.tcard__author-text { display: flex; flex-direction: column; gap: 2px; }
.tcard__name {
  font-family: var(--font-display); font-style: italic;
  font-size: 16px; color: var(--gold-light);
}
.tcard__loc {
  font-family: var(--font-label); font-size: 9px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream-dim);
}

/* ----------------------------------------------------------------------
   FAQ
   ---------------------------------------------------------------------- */
.faq__list { max-width: 880px; margin-inline: auto; }
.faq__item {
  border-top: 0.5px solid var(--gold-faint);
  position: relative;
}
.faq__item:last-child { border-bottom: 0.5px solid var(--gold-faint); }
.faq__btn {
  width: 100%;
  background: transparent;
  border: none;
  padding: 28px 0;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(19px, 1.7vw, 23px);
  color: var(--cream);
  transition: color var(--dur-base) var(--ease-out);
  gap: 24px;
}
.faq__btn:hover { color: var(--gold-light); }
.faq__icon {
  flex: 0 0 auto;
  width: 24px; height: 24px;
  position: relative;
  transition: transform var(--dur-base) var(--ease-out);
}
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute;
  left: 50%; top: 50%;
  background: var(--gold);
  transition: transform var(--dur-base) var(--ease-out);
}
.faq__icon::before { width: 14px; height: 1px; transform: translate(-50%, -50%); }
.faq__icon::after { width: 1px; height: 14px; transform: translate(-50%, -50%); }
.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease-out);
}
.faq__answer-inner {
  padding: 0 0 32px;
  font-family: var(--font-body); font-size: 16px;
  line-height: 1.85; color: var(--cream-muted);
  max-width: 720px;
}

/* ----------------------------------------------------------------------
   NEWSLETTER
   ---------------------------------------------------------------------- */
.newsletter {
  background:
    radial-gradient(ellipse 600px 300px at 50% 50%, rgba(201,168,76,0.06), transparent 70%),
    var(--dark);
  text-align: center;
  padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 56px);
}
.newsletter__inner { max-width: 600px; margin-inline: auto; }
.newsletter__title {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(32px, 4vw, 48px); color: var(--gold-light);
  margin: 14px 0 16px; line-height: 1.15;
}
.newsletter__lead {
  font-family: var(--font-display); font-style: italic;
  font-size: 18px; color: var(--cream-muted);
  margin-bottom: 36px;
}
.newsletter__form {
  display: flex; gap: 0;
  border: 1px solid var(--gold-deep);
  background: var(--black);
}
.newsletter__form:focus-within { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.12); }
.newsletter__input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 18px 22px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--cream);
  outline: none;
}
.newsletter__input::placeholder {
  font-family: var(--font-body); font-style: italic;
  color: var(--cream-dim);
}
.newsletter__submit {
  background: var(--gold); color: #0a0500;
  border: none;
  padding: 0 32px;
  font-family: var(--font-label); font-size: 10.5px;
  letter-spacing: 0.22em; text-transform: uppercase;
  cursor: pointer;
  transition: background var(--dur-base) var(--ease-out);
}
.newsletter__submit:hover { background: var(--gold-light); }
.newsletter__note {
  margin-top: 18px;
  font-family: var(--font-label); font-size: 9px;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--cream-dim);
}

/* ----------------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------------- */
.zfooter {
  background: var(--black);
  border-top: 1px solid var(--gold-faint);
  padding: clamp(72px, 8vw, 120px) clamp(20px, 5vw, 56px) 36px;
}
.zfooter__grid {
  display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 48px;
  max-width: 1240px; margin-inline: auto;
}
.zfooter__brand { display: flex; flex-direction: column; gap: 14px; }
.zfooter__name {
  font-family: "Cinzel Decorative", var(--font-display);
  font-size: 26px;
  color: var(--gold-light);
  letter-spacing: 0.14em;
  margin-top: 6px;
}
.zfooter__tag { color: var(--gold-deep); }
.zfooter__brand p {
  font-family: var(--font-body); font-size: 14px; line-height: 1.7;
  color: var(--cream-dim);
  margin-top: 16px;
  max-width: 320px;
}
.zfooter__col { }
.zfooter__col ul { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-direction: column; gap: 12px; }
.zfooter__col a {
  font-family: var(--font-body); font-size: 14px;
  color: var(--cream-muted);
}
.zfooter__col a:hover { color: var(--gold-light); }
.zfooter__coltitle { color: var(--gold); }

.zfooter__bottom {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 0.5px solid var(--gold-faint);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  max-width: 1240px; margin-inline: auto;
}
.zfooter__quote {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--gold-light);
}
.zfooter__copy {
  font-family: var(--font-label); font-size: 9.5px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream-dim); text-align: center;
}

/* ----------------------------------------------------------------------
   REVEAL ANIMATIONS
   ---------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.is-on { opacity: 1; transform: translateY(0); }

.reveal--stagger > * {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal--stagger.is-on > * { opacity: 1; transform: translateY(0); }
.reveal--stagger.is-on > *:nth-child(1) { transition-delay: 0s; }
.reveal--stagger.is-on > *:nth-child(2) { transition-delay: 0.12s; }
.reveal--stagger.is-on > *:nth-child(3) { transition-delay: 0.24s; }
.reveal--stagger.is-on > *:nth-child(4) { transition-delay: 0.36s; }
.reveal--stagger.is-on > *:nth-child(5) { transition-delay: 0.48s; }
.reveal--stagger.is-on > *:nth-child(6) { transition-delay: 0.60s; }

/* ----------------------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------------------- */
@media (max-width: 1000px) {
  .books__grid { grid-template-columns: 1fr 1fr; }
  .books__grid > .book:last-child { grid-column: 1 / -1; max-width: 560px; margin-inline: auto; }
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { max-width: 640px; margin-inline: auto; text-align: center; }
  .hero__sub { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__portrait { max-width: 480px; margin: 0 auto; }

  .about__grid { grid-template-columns: 1fr; }
  .about__copy { max-width: 640px; margin-inline: auto; }
  .about__portrait { max-width: 420px; margin: 0 auto; }

  .course { grid-template-columns: 60px 1fr; gap: 18px; padding: 28px 0; }
  .course__num { font-size: 24px; }
  .course__meta { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 0.5px solid var(--gold-faint); }

  .journey__body { grid-template-columns: 1fr; }
  .journey__image-wrap { position: static; max-width: 480px; margin-inline: auto; }

  .journey__rail::before { left: 28px; }
  .journey__row { grid-template-columns: 56px 1fr; padding: 28px 0; }
  .journey__row > .journey__node-wrap { grid-column: 1; }
  .journey__row:nth-child(odd) .journey__card,
  .journey__row:nth-child(even) .journey__card { grid-column: 2; text-align: left; }
  .journey__row:nth-child(odd) .journey__card-side,
  .journey__row:nth-child(even) .journey__card-side { display: none; }
  .journey__row:nth-child(odd) .journey__num,
  .journey__row:nth-child(even) .journey__num { display: none; }

  .testimonials__grid { grid-template-columns: 1fr; }

  .zfooter__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .zfooter__brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .hero__title { font-size: clamp(40px, 11vw, 56px); }
  .books__grid { grid-template-columns: 1fr; }
  .books__grid > .book:last-child { grid-column: 1; }
  .newsletter__form { flex-direction: column; gap: 1px; }
  .newsletter__submit { padding: 18px; }
  .zfooter__grid { grid-template-columns: 1fr; }
  .zbtn { width: 100%; }
  .hero__actions .zbtn { flex: 1; }
}
