/* ═══════════════════════════════════════════════════════════
   THE MASTER CODEX — LUXURY PRELAUNCH DESIGN SYSTEM
   ═══════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  /* Palette */
  --void:          #020711;
  --midnight:      #061325;
  --deep-cobalt:   #092a57;
  --cobalt-light:  #165fba;
  --cobalt-glow:   rgba(22, 95, 186, 0.35);
  --champagne:     #d9b66f;
  --antique-gold:  #b88a3b;
  --luminous-gold: #f2d690;
  --gold-glow:     rgba(217, 182, 111, 0.38);
  --ivory:         #f5f0e6;
  --silver:        #c5cfdd;
  --muted:         #96a4b8;
  --dim:           rgba(197, 207, 221, 0.48);

  /* Border lines */
  --border-gold:    rgba(217, 182, 111, 0.22);
  --border-cobalt:  rgba(22, 95, 186, 0.28);
  --border-subtle:  rgba(197, 207, 221, 0.1);

  /* Typography */
  --display: "Cinzel", "Palatino Linotype", Georgia, serif;
  --serif:   "Cormorant Garamond", Georgia, serif;
  --sans:    "Montserrat", system-ui, Arial, sans-serif;

  /* Fluid type scale */
  --text-xxs:  clamp(0.6rem,  1vw,   0.7rem);
  --text-xs:   clamp(0.7rem,  1.2vw, 0.78rem);
  --text-sm:   clamp(0.8rem,  1.4vw, 0.9rem);
  --text-base: clamp(0.9rem,  1.7vw, 1.05rem);
  --text-lg:   clamp(1rem,    2.2vw, 1.2rem);
  --text-xl:   clamp(1.15rem, 2.8vw, 1.45rem);
  --text-2xl:  clamp(1.4rem,  3.5vw, 2rem);
  --text-3xl:  clamp(1.9rem,  4.5vw, 2.8rem);
  --text-4xl:  clamp(2.4rem,  5.5vw, 3.6rem);
  --text-hero: clamp(3rem,    7vw,   5.5rem);

  /* Spacing */
  --sp-1: 0.5rem;   --sp-2: 1rem;   --sp-3: 1.5rem;
  --sp-4: 2rem;     --sp-5: 2.5rem; --sp-6: 3rem;
  --sp-8: 4rem;     --sp-10: 5rem;  --sp-12: 6rem;
  --sp-16: 8rem;    --sp-20: 10rem;

  /* Section padding */
  --section-py: clamp(4rem, 9vw, 8rem);

  /* Container */
  --container:  1280px;
  --container-wide: 1440px;
  --gutter: clamp(1.5rem, 5vw, 4rem);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io:  cubic-bezier(0.45, 0, 0.55, 1);
  --dur-fast: 180ms;
  --dur-base: 380ms;
  --dur-slow: 650ms;
  --dur-reveal: 1000ms;

  /* Shadows */
  --shadow-gold:  0 0 35px rgba(217,182,111,0.18), 0 0 70px rgba(217,182,111,0.07);
  --shadow-cobalt: 0 0 35px rgba(22,95,186,0.25), 0 0 70px rgba(22,95,186,0.1);
  --shadow-card:  0 4px 25px rgba(0,0,0,0.65), 0 14px 55px rgba(0,0,0,0.4);
  --shadow-deep:  0 24px 90px rgba(0,0,0,0.85), 0 8px 32px rgba(0,0,0,0.55);

  /* Legacy aliases for register.html / thankyou.html compatibility */
  --black:        #030507;
  --obsidian:     #070b0f;
  --panel:        rgba(4, 10, 14, 0.78);
  --panel-strong: rgba(5, 9, 13, 0.94);
  --gold:         #c89632;
  --gold-soft:    #edcf82;
  --gold-dark:    #785016;
  --cream:        #f0e5cf;
  --cobalt:       #174f9a;
  --line:         rgba(200, 150, 50, 0.42);
}

/* ─── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }
[hidden] { display: none !important; }

/* ─── BASE ───────────────────────────────────────────────────── */
body {
  min-height: 100vh;
  color: var(--ivory);
  background: var(--void);
  font-family: var(--sans);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Deep space body atmosphere */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse at 18% 22%, rgba(22,95,186,0.22) 0%, transparent 38%),
    radial-gradient(ellipse at 82% 18%, rgba(22,95,186,0.18) 0%, transparent 35%),
    radial-gradient(ellipse at 50% 60%, rgba(9,42,87,0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(2,7,17,0.8) 0%, transparent 60%),
    linear-gradient(180deg, #020a18 0%, #020711 40%, #030c1a 100%);
  pointer-events: none;
}

/* Starfield canvas */
.starfield {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.65;
}

/* ─── TYPOGRAPHY UTILITIES ───────────────────────────────────── */
.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: var(--text-xxs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--champagne);
  margin-bottom: var(--sp-3);
}

.section__title {
  font-family: var(--display);
  font-size: var(--text-4xl);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ivory);
  line-height: 1.08;
  margin-bottom: var(--sp-3);
}

.section__subtitle {
  font-family: var(--serif);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--silver);
  line-height: 1.55;
  max-width: 58ch;
  margin-bottom: var(--sp-8);
}

/* ─── LAYOUT UTILITIES ───────────────────────────────────────── */
.section__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

/* Gold divider ornament */
.gold-divider {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin: var(--sp-5) auto;
  max-width: 280px;
}
.gold-divider::before,
.gold-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
  opacity: 0.45;
}
.gold-divider__gem {
  width: 6px; height: 6px;
  background: var(--champagne);
  rotate: 45deg;
  opacity: 0.7;
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn-primary,
.btn-gold,
.btn-outline,
.btn-ghost,
.btn-nav,
.gold-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  white-space: nowrap;
  transition: all var(--dur-base) var(--ease-out);
  padding: 0.85em 2em;
  cursor: pointer;
  text-decoration: none;
}

/* Filled gold */
.btn-primary,
.btn-gold,
.gold-button {
  background: linear-gradient(135deg, var(--luminous-gold) 0%, var(--champagne) 45%, var(--antique-gold) 100%);
  color: #100c05;
  border: 1px solid transparent;
  box-shadow: 0 2px 20px rgba(217,182,111,0.25), 0 0 0 0 rgba(217,182,111,0);
  position: relative;
  overflow: hidden;
}
.btn-primary::after,
.btn-gold::after,
.gold-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.22) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease-out);
}
.btn-primary:hover::after,
.btn-gold:hover::after,
.gold-button:hover::after { transform: translateX(100%); }
.btn-primary:hover,
.btn-gold:hover,
.gold-button:hover {
  box-shadow: 0 4px 30px rgba(217,182,111,0.45), 0 0 0 1px rgba(242,214,144,0.4);
  transform: translateY(-1px);
}

/* Outline gold */
.btn-outline {
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--champagne);
}
.btn-outline:hover {
  background: rgba(217,182,111,0.08);
  border-color: var(--champagne);
  color: var(--luminous-gold);
  box-shadow: 0 0 20px rgba(217,182,111,0.12);
  transform: translateY(-1px);
}

/* Ghost */
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(197,207,221,0.2);
  color: var(--silver);
}
.btn-ghost:hover {
  border-color: rgba(197,207,221,0.45);
  color: var(--ivory);
}

/* Nav CTA */
.btn-nav {
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--champagne);
  padding: 0.6em 1.4em;
  font-size: 0.65rem;
}
.btn-nav:hover {
  background: var(--champagne);
  color: #100c05;
}

/* Block width */
.btn-block { width: 100%; justify-content: center; }

/* XL size */
.btn-xl { padding: 1em 2.8em; font-size: var(--text-sm); }

/* ─── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-3) var(--gutter);
  background: transparent;
  transition: background var(--dur-slow) var(--ease-io),
              border-color var(--dur-slow) var(--ease-io),
              backdrop-filter var(--dur-slow) var(--ease-io);
  border-bottom: 1px solid transparent;
}

.nav--scrolled {
  background: rgba(2, 9, 20, 0.88);
  border-bottom-color: var(--border-gold);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav__brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__brand-name {
  font-family: var(--display);
  font-size: clamp(0.78rem, 1.55vw, 1.22rem);
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--luminous-gold);
  line-height: 1.1;
}
.nav__brand-name small {
  display: block;
  font: inherit;
  font-size: 0.52em;
  letter-spacing: 0.38em;
}
.nav__brand-sub {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-top: 3px;
  opacity: 0.75;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2.5vw, 2rem);
  margin: 0 auto;
}
.nav__links a {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--silver);
  text-decoration: none;
  transition: color var(--dur-fast);
  white-space: nowrap;
}
.nav__links a:hover { color: var(--champagne); }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav__toggle span {
  display: block;
  height: 1px;
  background: var(--champagne);
  transition: transform var(--dur-base), opacity var(--dur-base);
  transform-origin: center;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-drawer {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: rgba(2, 7, 17, 0.97);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  transform: translateY(-100%);
  transition: transform var(--dur-slow) var(--ease-out);
  pointer-events: none;
}
.nav-drawer--open {
  transform: translateY(0);
  pointer-events: all;
}
.nav-drawer nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}
.nav-drawer nav a {
  font-family: var(--display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--dur-fast);
}
.nav-drawer nav a:hover { color: var(--champagne); }
.nav-drawer .btn-gold { margin-top: var(--sp-3); }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 90px;
}

/* Background atmosphere layers */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__bg-base {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 78% 44%, rgba(22,95,186,0.27) 0%, transparent 43%),
    radial-gradient(ellipse at 14% 80%, rgba(9,42,87,0.48) 0%, transparent 42%),
    linear-gradient(90deg, #01050c 0%, #020917 48%, #03132d 100%);
}
.hero__bg-bloom-cobalt {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 55%;
  background: radial-gradient(ellipse at 60% 50%, rgba(22,95,186,0.28) 0%, transparent 60%);
  mix-blend-mode: screen;
}
.hero__bg-bloom-gold {
  position: absolute;
  right: 5%; top: 20%;
  width: 45%; height: 60%;
  background: radial-gradient(ellipse at 55% 45%, rgba(217,182,111,0.16) 0%, transparent 55%);
  mix-blend-mode: screen;
}
.hero__bg-geometry {
  position: absolute; inset: 0;
  background-image: url('./assets/images/sacred-geometry-bg.jpg');
  background-size: 72% auto;
  background-position: left center;
  background-repeat: no-repeat;
  opacity: 0.07;
  mix-blend-mode: luminosity;
  animation: heroGeometryShimmer 18s ease-in-out infinite alternate;
}
.hero__particles {
  position: absolute;
  inset: -12%;
  opacity: 0.52;
  background-image:
    radial-gradient(circle, rgba(242,214,144,0.95) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(217,182,111,0.62) 0 0.8px, transparent 1.3px);
  background-size: 96px 96px, 139px 139px;
  background-position: 12px 18px, 64px 42px;
  animation: heroParticleDrift 30s linear infinite;
}
.hero__bg-grain {
  position: absolute; inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* Hero two-column layout */
.hero__layout {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: center;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 7rem var(--gutter) 2.5rem;
  gap: clamp(2rem, 4vw, 5rem);
  width: 100%;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  --hero-copy-x: 0px;
  --hero-copy-y: 0px;
  transform: translate3d(var(--hero-copy-x), var(--hero-copy-y), 0);
  transition: transform 850ms var(--ease-out);
}
.hero__content .eyebrow { margin-bottom: var(--sp-4); }

.hero__title {
  width: 100%;
  max-width: 100%;
  text-align: center;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  line-height: 0.75;
  margin-bottom: var(--sp-4);
  color: var(--ivory);
}
.hero__title-pre {
  display: block;
  width: 100%;
  max-width: 100%;
  font-size: clamp(2.5rem, 4vw, 4.1rem);
  letter-spacing: 0.08em;
  color: var(--champagne);
  font-weight: 400;
  text-align: center;
  margin-bottom: 0.12em;
}
.hero__title-main {
  display: block;
  width: 100%;
  max-width: 100%;
  text-align: center;
  font-size: clamp(5.8rem, 10.3vw, 10.6rem);
  line-height: 0.72;
  letter-spacing: 0;
  color: var(--luminous-gold);
  text-shadow:
    0 0 60px rgba(217,182,111,0.45),
    0 0 120px rgba(217,182,111,0.2);
}

.hero__pillars {
  font-family: var(--sans);
  font-size: var(--text-xxs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--champagne);
  line-height: 1.6;
  margin-bottom: var(--sp-3);
  opacity: 0.85;
  white-space: nowrap;
}
.hero__pillars span {
  padding: 0 0.6em;
}

.hero__tagline {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.65rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.35;
  margin-bottom: var(--sp-5);
  max-width: 20ch;
  text-align: center;
  align-self: center;
}

.hero__body {
  font-size: var(--text-base);
  color: var(--silver);
  line-height: 1.7;
  max-width: 48ch;
  margin-bottom: var(--sp-6);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-2);
}

/* Hero visual (right column) */
.hero__visual {
  position: relative;
  width: calc(100% + var(--gutter));
  height: 100%;
  min-height: 0;
  margin-right: calc(var(--gutter) * -1);
  aspect-ratio: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  border-radius: 0;
  --hero-portal-x: 0px;
  --hero-portal-y: 0px;
  transform: translate3d(var(--hero-portal-x), var(--hero-portal-y), 0);
  transition: transform 1000ms var(--ease-out);
}

.hero__temple-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -8%;
  width: 108%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 0;
  opacity: 1;
  border-radius: 0;
  animation: heroPortalBreath 13s ease-in-out infinite alternate;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.42) 9%, #000 22%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.42) 9%, #000 22%, #000 100%);
}

.hero__light-column {
  position: absolute;
  top: -4%; bottom: 2%;
  left: 59%; transform: translateX(-50%);
  width: 18%;
  background: linear-gradient(180deg,
    rgba(89,162,255,0.08) 0%,
    rgba(105,180,255,0.42) 25%,
    rgba(238,248,255,0.78) 54%,
    rgba(255,237,176,0.58) 76%,
    rgba(255,224,139,0.24) 100%);
  filter: blur(24px);
  mix-blend-mode: screen;
  animation: lightPulse 6s ease-in-out infinite alternate;
}
@keyframes lightPulse {
  from { opacity: 0.6; transform: translateX(-50%) scaleX(1); }
  to   { opacity: 1;   transform: translateX(-50%) scaleX(1.2); }
}

.hero__orb {
  position: absolute;
  top: 51%; left: 59%;
  transform: translate(-50%, -50%);
  width: 52%;
  aspect-ratio: 1;
  background: radial-gradient(circle,
    rgba(255,249,218,0.82) 0%,
    rgba(242,214,144,0.54) 22%,
    rgba(48,126,236,0.4) 46%,
    transparent 70%);
  filter: blur(24px);
  mix-blend-mode: screen;
  animation: orbFloat 8s ease-in-out infinite;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%       { transform: translate(-50%, -55%) scale(1.1); }
}

.hero__geo-ring {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  animation: geoRotate 90s linear infinite;
  opacity: 0.7;
}
.hero__geometry-shimmer {
  position: absolute;
  z-index: 2;
  inset: 4% 0 12% 17%;
  background: radial-gradient(circle at 59% 45%, rgba(255,248,215,0.38), transparent 49%);
  filter: blur(12px);
  mix-blend-mode: screen;
  animation: heroGeometryShimmer 8s ease-in-out infinite alternate;
}
.hero__floor-ring {
  position: absolute;
  z-index: 3;
  left: 59%;
  bottom: 3%;
  width: 61%;
  height: 18%;
  transform: translateX(-50%);
  border: 1px solid rgba(242,214,144,0.52);
  border-radius: 50%;
  box-shadow:
    0 0 18px rgba(242,214,144,0.38),
    0 0 44px rgba(22,95,186,0.34),
    inset 0 0 20px rgba(242,214,144,0.2);
  animation: heroFloorRing 6.5s ease-in-out infinite alternate;
}
@keyframes geoRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Hero metadata strip */
.hero__meta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--border-gold);
  margin-top: var(--sp-6);
  padding: var(--sp-3) var(--gutter);
  background: rgba(2,9,20,0.4);
}

.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 0.6em;
  padding: var(--sp-2) var(--sp-5);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  border-right: 1px solid var(--border-subtle);
}
.hero__meta-item:last-child { border-right: none; }
.hero__meta-item svg { color: var(--champagne); flex-shrink: 0; }

@keyframes heroPortalBreath {
  from { transform: scale(1); filter: brightness(0.96) saturate(0.98); }
  to { transform: scale(1.018); filter: brightness(1.05) saturate(1.06); }
}

@keyframes heroGeometryShimmer {
  from { opacity: 0.42; filter: brightness(0.9); }
  to { opacity: 0.82; filter: brightness(1.18); }
}

@keyframes heroParticleDrift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(34px, -48px, 0); }
}

@keyframes heroFloorRing {
  from { opacity: 0.45; transform: translateX(-50%) scale(0.97); }
  to { opacity: 0.92; transform: translateX(-50%) scale(1.03); }
}

@media (min-width: 1025px) {
  .hero {
    min-height: 0;
    height: clamp(760px, 56.28vw, 960px);
    padding-top: 0;
  }
  .hero__meta { display: none; }

  /* ── Full-viewport cinematic hero background ── */
  .hero__layout {
    position: relative;
    z-index: 1;
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__content {
    position: relative;
    z-index: 2;
    align-items: center;
    max-width: 640px;
    margin: 0 auto;
  }
  .hero__ctas {
    justify-content: center;
  }
  .hero__visual {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    margin-left: -50vw;
    margin-right: 0;
    z-index: 0;
    pointer-events: none;
  }
  .hero__temple-img {
    left: 0;
    width: 100%;
    object-position: center center;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .hero__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(90deg, rgba(2,7,17,0.86) 0%, rgba(2,7,17,0.55) 30%, rgba(2,7,17,0.18) 55%, rgba(2,7,17,0.4) 100%),
      linear-gradient(180deg, rgba(2,7,17,0.25) 0%, transparent 30%, transparent 70%, rgba(2,7,17,0.45) 100%);
    pointer-events: none;
  }
}

/* ─── SECTION: TWO PATHWAYS ──────────────────────────────────── */
.pathways {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(22,95,186,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(9,42,87,0.2) 0%, transparent 45%);
}

.pathways .section__inner { text-align: center; }
.pathways .section__subtitle { margin-left: auto; margin-right: auto; }

.pathways__grid {
  display: grid;
  grid-template-columns: 390px 468px;
  justify-content: center;
  gap: var(--sp-5);
  max-width: 960px;
  margin: 0 auto var(--sp-8);
}

/* Pathway card wrapper */
.pathway-card {
  position: relative;
}
.pathway-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: linear-gradient(135deg, var(--luminous-gold), var(--champagne));
  color: #100c05;
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.4em 1.4em;
  white-space: nowrap;
}

/* Cinematic card frame */
.pathway-card__frame {
  position: relative;
  background: linear-gradient(180deg,
    rgba(9,25,48,0.97) 0%,
    rgba(6,19,37,0.99) 100%);
  border: 1px solid var(--border-gold);
  overflow: hidden;
  transition: transform var(--dur-slow) var(--ease-out),
              box-shadow var(--dur-slow) var(--ease-out);
  box-shadow: var(--shadow-card);
}
.pathway-card__frame:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}
.pathway-card--premium .pathway-card__frame {
  border-color: rgba(217,182,111,0.45);
  box-shadow: var(--shadow-card), 0 0 40px rgba(217,182,111,0.1);
}
.pathway-card--premium .pathway-card__frame:hover {
  box-shadow: var(--shadow-card), 0 0 60px rgba(217,182,111,0.25);
}

/* Animated gold edge sweep */
.pathway-card__frame::after {
  content: "";
  position: absolute;
  top: 0; left: -100%; right: 100%; bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(217,182,111,0.08), transparent);
  transition: left var(--dur-slow) var(--ease-out), right var(--dur-slow) var(--ease-out);
  pointer-events: none;
}
.pathway-card__frame:hover::after { left: 0; right: 0; }

/* Sacred geometry corner treatments */
.pathway-card__corner {
  position: absolute;
  width: 20px; height: 20px;
  z-index: 2;
  pointer-events: none;
}
.pathway-card__corner::before,
.pathway-card__corner::after {
  content: "";
  position: absolute;
  background: var(--champagne);
  opacity: 0.6;
}
.pathway-card__corner--tl { top: 8px; left: 8px; }
.pathway-card__corner--tr { top: 8px; right: 8px; }
.pathway-card__corner--bl { bottom: 8px; left: 8px; }
.pathway-card__corner--br { bottom: 8px; right: 8px; }

.pathway-card__corner--tl::before { top: 0; left: 0; width: 100%; height: 1px; }
.pathway-card__corner--tl::after  { top: 0; left: 0; width: 1px; height: 100%; }
.pathway-card__corner--tr::before { top: 0; right: 0; width: 100%; height: 1px; }
.pathway-card__corner--tr::after  { top: 0; right: 0; width: 1px; height: 100%; }
.pathway-card__corner--bl::before { bottom: 0; left: 0; width: 100%; height: 1px; }
.pathway-card__corner--bl::after  { bottom: 0; left: 0; width: 1px; height: 100%; }
.pathway-card__corner--br::before { bottom: 0; right: 0; width: 100%; height: 1px; }
.pathway-card__corner--br::after  { bottom: 0; right: 0; width: 1px; height: 100%; }

/* Card visual area — atmospheric environment */
.pathway-card__visual {
  position: relative;
  height: 220px;
  overflow: hidden;
}

/* Healing Portal: cobalt depths + gold apex */
.pathway-card__visual--portal {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(217,182,111,0.28) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 50%, rgba(22,95,186,0.5) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 110%, rgba(22,95,186,0.35) 0%, transparent 45%),
    url('./images/final-webp/healing-portal.webp') center / cover no-repeat,
    #061325;
}

/* Portal arch in CSS */
.portal-arch {
  position: absolute;
  width: 44%;
  top: 0;
  left: 50%; transform: translateX(-50%);
  bottom: 0;
  border: 1px solid rgba(217,182,111,0.35);
  border-bottom: none;
  border-radius: 50% 50% 0 0 / 80px 80px 0 0;
}
.portal-arch::after {
  content: "";
  position: absolute;
  inset: 8px 8px -1px 8px;
  border: 1px solid rgba(217,182,111,0.18);
  border-bottom: none;
  border-radius: 50% 50% 0 0 / 70px 70px 0 0;
}
.portal-glow {
  position: absolute;
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80%; height: 80%;
  background: radial-gradient(ellipse at 50% 60%,
    rgba(217,182,111,0.35) 0%,
    rgba(22,95,186,0.28) 35%,
    transparent 65%);
  filter: blur(18px);
  animation: portalPulse 5s ease-in-out infinite alternate;
}
@keyframes portalPulse {
  from { opacity: 0.7; transform: translate(-50%, -50%) scale(0.95); }
  to   { opacity: 1;   transform: translate(-50%, -50%) scale(1.05); }
}

/* Seven Temples: warm gold columns */
.pathway-card__visual--temples {
  background:
    radial-gradient(ellipse at 50% 110%, rgba(217,182,111,0.45) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(9,42,87,0.7) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(22,95,186,0.2) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 80%, rgba(22,95,186,0.2) 0%, transparent 40%),
    url('./images/final-webp/seven-temples.webp') center / cover no-repeat,
    #061325;
}

.temple-columns {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5%;
  height: 88%;
  padding: 0 12%;
}
.temple-columns span {
  flex: 1;
  max-width: 14%;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg,
    rgba(242,214,144,0.55) 0%,
    rgba(217,182,111,0.35) 40%,
    rgba(184,138,59,0.55) 100%);
  box-shadow: 0 0 12px rgba(217,182,111,0.2),
              inset 0 0 8px rgba(217,182,111,0.1);
  animation: columnGlow 4s ease-in-out infinite alternate;
}
.temple-columns span:nth-child(1) { height: 55%; animation-delay: 0s; }
.temple-columns span:nth-child(2) { height: 68%; animation-delay: 0.3s; }
.temple-columns span:nth-child(3) { height: 82%; animation-delay: 0.6s; }
.temple-columns span:nth-child(4) { height: 68%; animation-delay: 0.9s; }
.temple-columns span:nth-child(5) { height: 55%; animation-delay: 1.2s; }
@keyframes columnGlow {
  from { opacity: 0.65; }
  to   { opacity: 1; box-shadow: 0 0 20px rgba(217,182,111,0.3); }
}

.temple-glow {
  position: absolute;
  bottom: -10%; left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 60%;
  background: radial-gradient(ellipse at 50% 90%,
    rgba(217,182,111,0.4) 0%,
    transparent 60%);
  filter: blur(22px);
}

/* Card body */
.pathway-card__body {
  padding: var(--sp-6) var(--sp-5) var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.pathway-card__name {
  font-family: var(--display);
  font-size: var(--text-2xl);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ivory);
  line-height: 1.1;
  text-align: center;
}

.pathway-card__price {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--luminous-gold);
  text-align: center;
  letter-spacing: -0.01em;
  text-shadow: 0 0 30px rgba(217,182,111,0.3);
}

.pathway-card__desc {
  font-family: var(--serif);
  font-size: var(--text-lg);
  color: var(--silver);
  text-align: center;
  line-height: 1.55;
  max-width: 36ch;
  margin: 0 auto;
}

.pathways__unity {
  font-family: var(--serif);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--muted);
  text-align: center;
  max-width: 52ch;
  margin: 0 auto;
}

/* ─── SECTION: SEVEN TEMPLES ─────────────────────────────────── */
.temples-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(22,95,186,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(9,42,87,0.2) 0%, transparent 50%),
    url('./images/final-webp/seven-symbols.webp') center / min(72vw, 980px) auto no-repeat,
    var(--void);
}
.temples-section .section__inner { text-align: center; }
.temples-section__eyebrow {
  margin-top: calc(var(--sp-1) * -1);
  margin-bottom: var(--sp-4);
}

.temples__arc {
  position: relative;
  height: 40px;
  margin-bottom: var(--sp-8);
}
.temples__arc::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 900px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--champagne) 25%,
    var(--champagne) 75%,
    transparent 100%);
  opacity: 0.22;
}

.temples__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
}

/* Arched temple card */
.temple-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-2) var(--sp-4);
  position: relative;
  z-index: 1;
  isolation: isolate;
  background: rgba(6,19,37,0.82);
  border: 1px solid var(--border-gold);
  border-radius: 200px 200px 8px 8px;
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base);
  cursor: pointer;
}
.temple-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(22,95,186,0.18) 0%, transparent 55%);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--dur-base);
}
.temple-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217,182,111,0.45);
  box-shadow: 0 0 30px rgba(217,182,111,0.15), 0 8px 30px rgba(0,0,0,0.5);
}
.temple-card:hover::before { opacity: 1; }

.temple-card__icon {
  position: relative;
  z-index: 1;
  width: clamp(48px, 4.2vw, 60px);
  height: clamp(48px, 4.2vw, 60px);
  flex-shrink: 0;
}
.temple-card__icon svg {
  width: 100%; height: 100%;
  transition: filter var(--dur-base);
}
.temple-card:hover .temple-card__icon svg {
  filter: drop-shadow(0 0 6px rgba(217,182,111,0.5));
}

.temple-card__number {
  position: relative; z-index: 1;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--champagne);
  opacity: 0.7;
}

.temple-card__name {
  position: relative; z-index: 1;
  font-family: var(--display);
  font-size: clamp(0.6rem, 1.2vw, 0.78rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ivory);
  text-align: center;
  line-height: 1.2;
}

.temple-card__sub {
  position: relative; z-index: 1;
  font-family: var(--serif);
  font-size: 0.68rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.3;
  font-style: italic;
}

.temples__unity {
  font-family: var(--serif);
  font-size: var(--text-base);
  font-style: italic;
  color: var(--muted);
  text-align: center;
  margin-top: var(--sp-5);
}

/* ─── Seven Temples: focus + active card states ───────────────── */
.temple-card:focus-visible {
  outline: 2px solid rgba(217, 182, 111, 0.65);
  outline-offset: 3px;
}
.temple-card--active {
  transform: translateY(-6px) !important;
  border-color: rgba(217, 182, 111, 0.55) !important;
  box-shadow:
    0 0 26px rgba(217, 182, 111, 0.2),
    0 10px 32px rgba(0, 0, 0, 0.55) !important;
}
.temple-card--active::before { opacity: 1; }
.temple-card--active .temple-card__icon svg {
  filter: drop-shadow(0 0 8px rgba(217, 182, 111, 0.55));
}

/* ─── Seven Temples: floating info panel ──────────────────────── */
#temple-panel {
  position: fixed;
  z-index: 900;
  width: min(300px, calc(100vw - 24px));
  background: rgba(4, 12, 28, 0.94);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid rgba(217, 182, 111, 0.36);
  border-radius: 10px;
  padding: 1.4rem 1.5rem 1.5rem;
  box-shadow:
    0 0 36px rgba(217, 182, 111, 0.07),
    0 16px 48px rgba(0, 0, 0, 0.72);
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 240ms var(--ease-out),
    transform 240ms var(--ease-out);
  overflow: hidden;
  /* Starts off-screen; JS sets left/top before revealing */
  left: -9999px;
  top: -9999px;
}
#temple-panel.tp-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media (prefers-reduced-motion: reduce) {
  #temple-panel {
    transition: opacity 140ms linear;
    transform: translateY(0) !important;
  }
}

/* Gold bloom behind header area */
.tp-bloom {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 80px;
  background: radial-gradient(ellipse at 50% 0%, rgba(217, 182, 111, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.tp-num {
  position: relative;
  font-family: var(--sans);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: rgba(217, 182, 111, 0.58);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.tp-title {
  position: relative;
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #f5f0e6;
  margin: 0 0 0.35rem;
  line-height: 1.2;
}

/* Thin gold rule between title and subtitle */
.tp-sep {
  position: relative;
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(217, 182, 111, 0.38);
  margin-bottom: 0.5rem;
}

.tp-sub {
  position: relative;
  font-family: var(--serif);
  font-size: 0.84rem;
  font-style: italic;
  color: rgba(217, 182, 111, 0.82);
  margin: 0 0 0.8rem;
  line-height: 1.35;
}

.tp-desc {
  position: relative;
  font-family: var(--sans);
  font-size: 0.75rem;
  color: rgba(150, 164, 184, 0.88);
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
}

/* ─── SECTION: TRANSFORMATION ────────────────────────────────── */
.transformation {
  position: relative;
  overflow: hidden;
}
.transformation::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(22,95,186,0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 50%, rgba(9,42,87,0.2) 0%, transparent 45%),
    radial-gradient(ellipse at 100% 50%, rgba(9,42,87,0.2) 0%, transparent 45%);
  pointer-events: none;
}
.transformation .section__inner { text-align: center; }
.transformation .section__subtitle { margin: 0 auto var(--sp-10); }

/* Three phases */
.transformation__phases {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto var(--sp-12);
}

.transformation__phase {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-3);
  padding: 0 var(--sp-3);
}

.transformation__phase-number {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: var(--text-sm);
  color: var(--champagne);
  background: rgba(6,19,37,0.8);
  box-shadow: 0 0 20px rgba(217,182,111,0.1);
  flex-shrink: 0;
}

.transformation__phase-line {
  width: 1px; height: 32px;
  background: linear-gradient(180deg, var(--champagne) 0%, transparent 100%);
  opacity: 0.25;
}

.transformation__phase h3 {
  font-family: var(--display);
  font-size: var(--text-xl);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--luminous-gold);
}

.transformation__phase p {
  font-family: var(--serif);
  font-size: var(--text-base);
  color: var(--silver);
  line-height: 1.65;
  max-width: 26ch;
  margin: 0 auto;
}

.transformation__connector {
  align-self: center;
  width: clamp(20px, 3vw, 40px);
  height: 1px;
  background: linear-gradient(90deg, var(--champagne) 0%, rgba(217,182,111,0.3) 100%);
  opacity: 0.3;
  margin-top: -60px;
}

/* ─── Journey pillars: interactive states ─────────────────────── */
.transformation__phase {
  cursor: pointer;
  transition: transform var(--dur-base) var(--ease-out);
}
.transformation__phase:focus-visible {
  outline: 2px solid rgba(217, 182, 111, 0.65);
  outline-offset: 4px;
  border-radius: 4px;
}
.transformation__phase--active {
  transform: translateY(-4px);
}
.transformation__phase--active .transformation__phase-number {
  border-color: rgba(217, 182, 111, 0.6);
  box-shadow: 0 0 22px rgba(217, 182, 111, 0.22), 0 0 6px rgba(217, 182, 111, 0.15);
}

/* Journey pillar panel — same visual language as #temple-panel,
   slightly wider to suit the macro-stage copy */
#journey-panel {
  position: fixed;
  z-index: 900;
  width: min(340px, calc(100vw - 24px));
  background: rgba(4, 12, 28, 0.94);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid rgba(217, 182, 111, 0.36);
  border-radius: 10px;
  padding: 1.5rem 1.6rem 1.6rem;
  box-shadow:
    0 0 36px rgba(217, 182, 111, 0.07),
    0 16px 48px rgba(0, 0, 0, 0.72);
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 240ms var(--ease-out),
    transform 240ms var(--ease-out);
  overflow: hidden;
  left: -9999px;
  top: -9999px;
}
#journey-panel.tp-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media (prefers-reduced-motion: reduce) {
  #journey-panel {
    transition: opacity 140ms linear;
    transform: translateY(0) !important;
  }
}

/* Journey includes grid */
.includes__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--sp-3);
  text-align: center;
  padding-top: var(--sp-8);
  border-top: 1px solid var(--border-subtle);
}

.includes__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-2);
  border: 1px solid var(--border-subtle);
  background: rgba(6,19,37,0.4);
  transition: border-color var(--dur-base), background var(--dur-base);
}
.includes__item:hover {
  border-color: var(--border-gold);
  background: rgba(9,42,87,0.3);
}

.includes__icon {
  width: 60px; height: 60px;
}
.includes__icon svg { width: 100%; height: 100%; }

.includes__item h4 {
  font-family: var(--display);
  font-size: clamp(0.6rem, 1.1vw, 0.75rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--champagne);
  line-height: 1.2;
}

.includes__item p {
  font-family: var(--serif);
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
}

.includes__item .includes__subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.8rem;
  color: var(--luminous-gold);
  margin-top: -0.25rem;
  line-height: 1.3;
}

/* ─── SECTION: GUIDE ─────────────────────────────────────────── */
.guide-section {
  background:
    radial-gradient(ellipse at 80% 50%, rgba(22,95,186,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 50%, rgba(9,42,87,0.2) 0%, transparent 50%);
  padding-top: clamp(5rem, 10vw, 9rem);
  padding-bottom: clamp(5rem, 10vw, 9rem);
}

.guide-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas:
    "left    portrait"
    "recog   recog";
  column-gap: clamp(3rem, 5vw, 5rem);
  row-gap: 0;
  align-items: start;
}

/* Left column flex wrapper — stacks title, intro and PM panel tightly */
.guide-section__left {
  grid-area: left;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.guide-section__title {
  margin: 0;
  font-family: var(--display);
  font-size: var(--text-3xl);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--luminous-gold);
  max-width: 22ch;
}

.guide-section__title span {
  white-space: nowrap;
}

.guide-section__intro {
  max-width: 48ch;
  color: var(--ivory);
  font-family: var(--sans);
  font-size: var(--text-base);
  line-height: 1.65;
}

/* Recognition list — full-width row below the two-column composition */
.recognition {
  grid-area: recog;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding-top: clamp(3.5rem, 6vw, 4.5rem);
}
.recognition .eyebrow {
  color: var(--champagne);
  max-width: 34rem;
  font-size: var(--text-xxs);
  line-height: 1.6;
  margin-bottom: 0;
}

.recognition-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
}

.recognition-list__item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  min-height: 4.25rem;
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--border-subtle);
  font-family: var(--serif);
  font-size: var(--text-lg);
  color: var(--silver);
  line-height: 1.35;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
.recognition-list__item:first-child { border-top: 1px solid var(--border-subtle); }
.recognition-list__item:hover {
  color: var(--ivory);
  border-bottom-color: var(--border-gold);
}

.recognition-list__marker {
  color: var(--champagne);
  font-size: 0.65rem;
  margin-top: 0;
  flex-shrink: 0;
  transition: text-shadow var(--dur-fast);
}
.recognition-list__item:hover .recognition-list__marker {
  text-shadow: 0 0 8px var(--gold-glow);
}

/* Guide portrait — right column, aligned to top of grid area */
.guide-portrait {
  grid-area: portrait;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}
.guide-portrait .eyebrow { color: var(--champagne); }

.guide-portrait__frame {
  position: relative;
  width: 89%;
  max-width: none;
  aspect-ratio: 4 / 5;
  margin: 0 auto var(--sp-2);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  border: 1px solid var(--border-gold);
}

.guide-portrait__halo {
  position: absolute;
  inset: -30%;
  background: radial-gradient(ellipse at 50% 40%,
    rgba(22,95,186,0.35) 0%,
    transparent 55%);
  filter: blur(30px);
  z-index: 0;
  animation: haloBreath 7s ease-in-out infinite alternate;
}
@keyframes haloBreath {
  from { opacity: 0.6; transform: scale(0.95); }
  to   { opacity: 1;   transform: scale(1.05); }
}

.guide-portrait__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 3% center;
  display: block;
}

.guide-portrait__inner-glow {
  position: absolute;
  inset: 0; z-index: 2;
  background: linear-gradient(180deg,
    rgba(9,42,87,0.2) 0%,
    transparent 35%,
    rgba(2,7,17,0.25) 100%);
  pointer-events: none;
}

.guide-portrait__name {
  font-family: var(--display);
  font-size: var(--text-3xl);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--luminous-gold);
  line-height: 1.05;
}

.guide-portrait__details {
  width: 100%;
  margin-top: clamp(1.75rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  text-align: center;
}

.guide-portrait__title {
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--champagne);
  line-height: 2.15;
  opacity: 0.9;
  max-width: 54ch;
}

/* ── Mindvalley authority line ── */
.guide-portrait__mindvalley {
  width: 100%;
  font-family: var(--sans);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory);
  text-align: center;
  white-space: nowrap;
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
}

/* ── Academy CTA ── */
.guide-portrait__cta {
  align-self: center;
  margin-bottom: 1.5rem;
  padding: 0.75em 1.85em;
  font-size: 0.68rem;
}

@media (max-width: 480px) {
  .guide-portrait__mindvalley {
    white-space: normal;
    line-height: 1.5;
  }
}

.guide-portrait__bio {
  font-family: var(--sans);
  font-size: var(--text-base);
  color: var(--ivory);
  line-height: 1.65;
  max-width: 49ch;
  margin-top: var(--sp-1);
}

.guide-portrait__authority {
  font-family: var(--sans);
  font-size: var(--text-sm);
  font-style: normal;
  color: var(--muted);
  line-height: 1.8;
  max-width: 47ch;
  border-left: 1px solid var(--border-gold);
  padding: 0.45rem 0 0.45rem var(--sp-3);
  margin-top: var(--sp-1);
  text-align: left;
  align-self: center;
}

/* ─── SECTION: SISTERHOOD ────────────────────────────────────── */
.sisterhood {
  position: relative;
  padding: var(--section-py) 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(9,42,87,0.55) 0%, transparent 65%),
    radial-gradient(ellipse at 50% 0%, rgba(22,95,186,0.25) 0%, transparent 45%),
    linear-gradient(180deg, rgba(6,19,37,0.72) 0%, rgba(2,7,17,0.78) 100%),
    url('./images/final-webp/women-circle.webp') center / cover no-repeat,
    var(--midnight);
}

/* Atmospheric golden rings */
.sisterhood__visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.sisterhood__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(217,182,111,0.12);
  animation: ringRotate 40s linear infinite;
}
.sisterhood__ring--outer { width: 700px; height: 700px; animation-duration: 60s; }
.sisterhood__ring--mid   { width: 500px; height: 500px; animation-duration: 45s; animation-direction: reverse; }
.sisterhood__ring--inner { width: 320px; height: 320px; animation-duration: 30s; }
@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.sisterhood__glow {
  position: absolute;
  width: 60%; height: 60%;
  background: radial-gradient(ellipse,
    rgba(22,95,186,0.18) 0%,
    rgba(217,182,111,0.08) 40%,
    transparent 70%);
  filter: blur(40px);
}

.sisterhood__content {
  position: relative; z-index: 1;
  max-width: 640px;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}

.sisterhood__content h2 {
  font-family: var(--display);
  font-size: var(--text-3xl);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ivory);
  line-height: 1.1;
  text-shadow: 0 0 40px rgba(22,95,186,0.3);
}

.sisterhood__body {
  font-family: var(--serif);
  font-size: var(--text-xl);
  color: var(--silver);
  line-height: 1.6;
  max-width: 46ch;
}

/* Trust strip */
.sisterhood__trust {
  position: relative; z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin-top: var(--sp-10);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  width: 100%;
}

.sisterhood__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-4) var(--sp-8);
  border-right: 1px solid var(--border-subtle);
}
.sisterhood__trust-item:last-child { border-right: none; }

.sisterhood__trust-label {
  font-family: var(--display);
  font-size: clamp(0.65rem, 1.3vw, 0.8rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--champagne);
}

.sisterhood__trust-sub {
  font-family: var(--serif);
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--muted);
}

/* ─── SECTION: PROGRAM CLARITY ───────────────────────────────── */
/* Now used standalone above the registration form on register.html — tighter
   padding than a full-page section so it doesn't read as an oversized, pasted block. */
.program {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(22,95,186,0.1) 0%, transparent 50%);
  padding: 0 0 clamp(2rem, 5vw, 3rem);
}
.program .section__inner { text-align: center; }

.program__grid {
  display: grid;
  grid-template-columns: minmax(0, 1060px);
  justify-content: center;
  gap: var(--sp-5);
  max-width: 1060px;
  margin: 0 auto;
  text-align: left;
}

/* ─── Healing Portal investment card: broader, single column ─── */
.program__card--healing-portal {
  width: 100%;
  max-width: 860px;
  margin-inline: auto;
}

/* Single-column inclusion list (two-column desktop treatment removed) */
.program__list--two-col {
  display: grid;
  grid-template-columns: 1fr;
}

@media (max-width: 768px) {
  .program__card--healing-portal {
    width: calc(100% - 32px);
    max-width: 520px;
  }
}

.program__card {
  background: rgba(6,19,37,0.7);
  border: 1px solid var(--border-gold);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.program__card--premium {
  border-color: rgba(217,182,111,0.45);
  background: rgba(9,25,50,0.8);
  box-shadow: 0 0 40px rgba(217,182,111,0.06);
}

.program__card-header {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--border-gold);
}

.program__card-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--luminous-gold), var(--champagne));
  color: #100c05;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.35em 1em;
  align-self: flex-start;
  margin-bottom: var(--sp-1);
}

.program__card h3 {
  font-family: var(--display);
  font-size: var(--text-2xl);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ivory);
}

.program__card-price {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--luminous-gold);
  font-weight: 400;
}

.program__card-type {
  font-family: var(--sans);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--champagne);
  opacity: 0.75;
}

.program__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  flex: 1;
}
.program__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8em;
  font-family: var(--serif);
  font-size: var(--text-lg);
  color: var(--silver);
  line-height: 1.45;
}
.program__list li::before {
  content: "✦";
  color: var(--champagne);
  font-size: 0.55rem;
  flex-shrink: 0;
  margin-top: 0.45em;
  opacity: 0.7;
}

.program__card-note {
  font-family: var(--sans);
  font-size: var(--text-xxs);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
}

/* ─── SECTION: FAQ ───────────────────────────────────────────── */
.faq {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(9,42,87,0.15) 0%, transparent 60%);
}

.faq__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.faq__inner .section__title { text-align: center; }

.faq__accordion {
  text-align: left;
  margin-top: var(--sp-8);
  border-top: 1px solid var(--border-gold);
}

.faq__item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-4) 0;
  font-family: var(--serif);
  font-size: var(--text-xl);
  color: var(--ivory);
  text-align: left;
  transition: color var(--dur-fast);
  background: none;
  border: none;
  cursor: pointer;
}
.faq__question:hover { color: var(--luminous-gold); }
.faq__question[aria-expanded="true"] { color: var(--champagne); }

.faq__icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  stroke: currentColor;
  transition: transform var(--dur-base) var(--ease-out);
}
.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  overflow: hidden;
}
.faq__answer p {
  padding: 0 0 var(--sp-5);
  font-family: var(--serif);
  font-size: var(--text-lg);
  color: var(--silver);
  line-height: 1.7;
  max-width: 68ch;
}
.faq__answer p + p { margin-top: var(--sp-2); }
.faq__answer strong { color: var(--champagne); }

/* ─── SECTION: FINAL CTA ─────────────────────────────────────── */
.final-cta {
  position: relative;
  padding: calc(var(--section-py) * 1.5) 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%,   rgba(22,95,186,0.22) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 100%, rgba(22,95,186,0.28) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 45%,  rgba(201,168,76,0.10) 0%, transparent 55%),
    linear-gradient(180deg, rgba(2,7,17,0.82) 0%, rgba(6,19,37,0.62) 50%, rgba(2,7,17,0.86) 100%),
    url('./images/final-webp/cosmic-background.webp') center / cover no-repeat,
    var(--void);
}

/* Sacred mandala */
.final-cta__atmosphere { position: absolute; inset: 0; pointer-events: none; }
.final-cta__mandala {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(700px, 90vw);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(217,182,111,0.07);
  box-shadow:
    0 0 0 50px rgba(22,95,186,0.03),
    0 0 0 100px rgba(217,182,111,0.03),
    0 0 0 150px rgba(22,95,186,0.02),
    0 0 0 200px rgba(217,182,111,0.02);
  animation: mandalaSpin 120s linear infinite;
}
@keyframes mandalaSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.final-cta__glow-gold {
  position: absolute;
  top: 30%; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 55%;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(217,182,111,0.12) 0%,
    transparent 65%);
  filter: blur(50px);
}
.final-cta__glow-cobalt {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 45%;
  background: radial-gradient(ellipse at 50% 100%,
    rgba(22,95,186,0.2) 0%,
    transparent 65%);
  filter: blur(40px);
}

.final-cta__content {
  position: relative; z-index: 1;
  max-width: 700px;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}

.final-cta__content h2 {
  font-family: var(--display);
  font-size: var(--text-4xl);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ivory);
  line-height: 1.05;
  text-shadow: 0 0 60px rgba(217,182,111,0.2);
}

.final-cta__body {
  font-family: var(--serif);
  font-size: var(--text-xl);
  color: var(--silver);
  line-height: 1.65;
}

.final-cta__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--sans);
  font-size: var(--text-xxs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: var(--sp-2);
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  padding: var(--sp-8) 0 var(--sp-6);
  border-top: 1px solid var(--border-gold);
  background: var(--void);
}

.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--sp-6);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.footer__name {
  font-family: var(--display);
  font-size: clamp(0.7rem, 1.3vw, 0.9rem);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--champagne);
}
.footer__sub {
  font-size: var(--text-xxs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  opacity: 0.7;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: var(--sp-5);
}
.footer__links a {
  font-size: var(--text-xxs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  transition: color var(--dur-fast);
}
.footer__links a:hover { color: var(--champagne); }

.footer__copy {
  font-size: var(--text-xxs);
  letter-spacing: 0.12em;
  color: var(--muted);
  opacity: 0.6;
  text-align: right;
}

/* ─── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-reveal) var(--ease-out),
              transform var(--dur-reveal) var(--ease-out);
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── MOTION PREFERENCES ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .starfield { display: none; }
  .reveal-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ════════════════════════════════════════════════════════════════ */

/* ─── ≤ 1024px (tablet landscape) ────────────────────────────── */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .btn-nav    { display: none; }
  .nav__toggle { display: flex; margin-left: auto; }

  .hero { padding-top: 0; min-height: auto; }
  .hero__meta { display: none; }

  .hero__layout {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 1.5rem;
    padding-bottom: 2rem;
    min-height: unset;
    position: relative;
  }
  .hero__content { align-items: center; position: relative; z-index: 1; }
  .hero__body { text-align: center; }
  .hero__pillars {
    white-space: normal;
    max-width: 44rem;
  }
  .hero__ctas { justify-content: center; }
  .hero__visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.18;
    pointer-events: none;
    order: unset;
  }
  .hero__bg-geometry { display: none; }
  .hero__particles   { display: none; }
  .hero__bg-grain    { opacity: 0; }

  .temples__grid { grid-template-columns: repeat(4, 1fr); }

  .guide-section__inner {
    display: flex;
    flex-direction: column;
    gap: var(--sp-8);
  }
  /* Dissolve left wrapper so children participate directly in flex ordering */
  .guide-section__left {
    display: contents;
  }
  /* Mobile stack: title → intro → portrait → PM panel → woman-who list */
  .guide-section__inner .guide-section__title  { order: 1; text-align: left; }
  .guide-section__inner .guide-section__intro  { order: 2; }
  .guide-section__inner .guide-portrait        { order: 3; align-items: center; text-align: center; }
  .guide-section__inner .private-offer-panel   { order: 4; }
  .guide-section__inner .recognition           { order: 5; padding-top: 0; width: min(100%, 680px); margin-left: auto; margin-right: auto; }
  .guide-portrait__authority { margin: 0 auto; }
  .guide-portrait__frame { max-width: 760px; }

  .includes__grid { grid-template-columns: repeat(3, 1fr); }

  .transformation__phases {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
  .transformation__connector { display: none; }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--sp-3);
  }
  .footer__links { justify-content: center; }
  .footer__copy { text-align: center; }
}

/* ─── ≤ 768px (tablet portrait) ──────────────────────────────── */
@media (max-width: 768px) {
  .pathways__grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .pathway-card__badge { position: static; transform: none; margin-bottom: var(--sp-2); }

  .temples__grid { grid-template-columns: repeat(4, 1fr); }
  .temple-card__sub { display: none; }

  .program__grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }

  .hero__meta {
    gap: 0;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero__meta-item {
    flex: 1 1 45%;
    justify-content: center;
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }

  .sisterhood__trust {
    flex-direction: column;
    align-items: center;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
  }
  .sisterhood__trust-item {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    padding: var(--sp-3) var(--gutter);
  }
  .sisterhood__trust-item:last-child { border-bottom: none; }

  .includes__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── ≤ 480px (mobile) ───────────────────────────────────────── */
@media (max-width: 480px) {
  .guide-section__title {
    font-size: clamp(1.65rem, 8vw, 2.1rem);
    line-height: 1.08;
    max-width: 100%;
    width: 100%;
    margin-inline: auto;
    white-space: normal;
    text-wrap: balance;
    overflow-wrap: normal;
  }
  .guide-section__title span { white-space: normal; }
  .guide-section__inner .guide-section__title { text-align: center; }
  .recognition .eyebrow { text-align: center; }
  .recognition-list__item {
    min-height: 0;
    font-size: 1.08rem;
    padding: 1.15rem 0;
  }
  .guide-portrait__name {
    font-size: clamp(1.75rem, 10vw, 2.4rem);
    letter-spacing: 0.07em;
  }

  .hero__title-main { font-size: clamp(2.8rem, 13vw, 4rem); }

  .temples__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(130px, 1fr));
    grid-template-rows: auto auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: var(--sp-3);
    padding-bottom: var(--sp-2);
    flex-wrap: unset;
    justify-content: center;
  }
  .temple-card { min-width: 130px; }
  .temple-card:nth-child(5) { grid-column: 1; justify-self: center; }
  .temple-card:nth-child(6) { grid-column: 2; justify-self: center; }
  .temple-card:nth-child(7) { grid-column: 3; justify-self: center; }
  .temples-section { padding-top: var(--sp-6); padding-bottom: var(--sp-6); }

  .final-cta__content h2 { font-size: clamp(2rem, 9vw, 2.8rem); }

  .sisterhood__content h2 { font-size: clamp(1.8rem, 6vw, 2.6rem); }

  .hero__meta-item { flex: 1 1 100%; border-bottom: 1px solid var(--border-subtle); }
  .hero__meta-item:last-child { border-bottom: none; }

  .section__title { font-size: clamp(1.8rem, 7vw, 2.4rem); }

  .pathway-card__visual { height: 160px; }

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

  .guide-portrait__name { font-size: clamp(1.6rem, 7vw, 2.2rem); }

  .nav { padding: var(--sp-2) var(--sp-3); }
  .nav__brand-name { font-size: 0.72rem; }

  /* ── Mobile card overflow fix ── */
  .pathway-card  { min-width: 0; }
  .program__card { min-width: 0; }

  /* ── Mobile button text wrapping ── */
  .btn-block { white-space: normal; overflow-wrap: anywhere; }

  /* ── Mobile section spacing ── */
  :root { --section-py: clamp(2.75rem, 8vw, 3.5rem); }
}

/* ─── ≤ 360px (small mobile) ─────────────────────────────────── */
@media (max-width: 360px) {
  :root { --gutter: 1rem; }
  .hero__title-main { font-size: 2.6rem; }
}

/* ════════════════════════════════════════════════════════════════
   LEGACY CLASSES — register.html / thankyou.html compatibility
   ════════════════════════════════════════════════════════════════ */

/* Cosmos star background (thankyou + register pages) */
.cosmos {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.7;
  background-image:
    radial-gradient(circle, rgba(236,194,102,0.9) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(255,255,255,0.38) 0 1px, transparent 1.4px),
    linear-gradient(95deg, transparent 18%, rgba(24,89,175,0.04), rgba(46,130,218,0.28) 47%, rgba(21,76,151,0.07) 58%, transparent 82%);
  background-size: 89px 89px, 131px 131px, 100% 360px;
  background-position: 0 0, 19px 31px, center 96px;
  pointer-events: none;
}

/* Legacy header (register + thankyou) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: rgba(3,5,7,0.85);
  border-bottom: 1px solid rgba(200,150,50,0.18);
  backdrop-filter: blur(16px);
}
.brand-mark, .site-header nav a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-family: var(--display);
  font-size: clamp(0.65rem, 1.3vw, 0.9rem);
  color: var(--ivory);
}
.brand-mark {
  font-weight: 500;
  font-size: clamp(0.6rem, 1.4vw, 0.85rem);
}
.site-header nav { display: flex; gap: 1.5rem; }
.site-header nav a { font-size: 0.7rem; color: var(--silver); }
.site-header nav a:hover { color: var(--champagne); }

/* Legacy kicker */
.kicker {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--champagne);
  margin-bottom: 1rem;
}

/* Form page layout */
.form-page {
  min-height: calc(100vh - 65px);
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 3rem);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.form-shell {
  width: 100%;
  max-width: 1060px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.selected-card {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(200,150,50,0.3);
  background: rgba(6,19,37,0.6);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.selected-card b {
  font-family: var(--display);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--champagne);
}
.selected-card [data-selected-price] {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--luminous-gold);
}
.selected-card small {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--champagne);
}

input, textarea {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--ivory);
  background: rgba(4, 12, 22, 0.8);
  border: 1px solid rgba(200,150,50,0.28);
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color var(--dur-fast);
  outline: none;
}
input:focus, textarea:focus { border-color: var(--champagne); }
textarea { resize: vertical; min-height: 100px; }

label.checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--silver);
  line-height: 1.55;
}
label.checkbox input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--champagne);
  cursor: pointer;
}

.message {
  font-family: var(--serif);
  font-size: 0.88rem;
  color: var(--champagne);
  min-height: 1.4em;
  line-height: 1.5;
}

.offer-note {
  font-size: var(--text-xxs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-align: center;
}

/* Legacy site footer */
.site-footer {
  padding: 1.5rem clamp(1rem, 4vw, 3rem);
  border-top: 1px solid rgba(200,150,50,0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}

/* Responsive form */
@media (max-width: 768px) {
  .form-shell { grid-template-columns: 1fr; }
  .field-grid  { grid-template-columns: 1fr; }
}

/* ── Pathway Whisper ─────────────────────────────────────────────────────── */
.pw-region {
  display: block;
  width: 100%;
  min-height: 80px;
  padding: 0 1rem 1.5rem;
  text-align: center;
  box-sizing: border-box;
}
.pw-eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: rgba(217,182,111,0.52);
  text-transform: uppercase;
  margin: 0 0 0.35rem;
}
.pw-sentence {
  display: block;
  font-family: var(--serif, Georgia, serif);
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  font-style: italic;
  color: rgba(245,240,230,0.6);
  margin: 0 auto 0.55rem;
  max-width: 56ch;
  line-height: 1.55;
  transition: color 300ms ease, opacity 200ms ease;
}
.pw-line {
  display: inline-block;
  width: 90px;
  height: 1px;
  background: rgba(217,182,111,0.42);
  transform: scaleX(0.3);
  transform-origin: center;
  transition: transform 360ms ease, background-color 300ms ease;
}
.pw-region.pw-region--active .pw-sentence {
  color: rgba(245,240,230,0.94);
}
.pw-region.pw-region--active .pw-line {
  transform: scaleX(1);
  background: rgba(217,182,111,0.68);
}
.includes__item { cursor: pointer; }
.includes__item--pw-active {
  transform: translateY(-5px) !important;
  border-color: rgba(217,182,111,0.55) !important;
  box-shadow: 0 0 28px rgba(217,182,111,0.18), 0 10px 32px rgba(0,0,0,0.5) !important;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, opacity 260ms ease;
}
.includes__item--pw-active svg,
.includes__item--pw-active img {
  filter: drop-shadow(0 0 7px rgba(217,182,111,0.5));
}
.includes__grid--has-active .includes__item:not(.includes__item--pw-active) {
  opacity: 0.65;
  transition: opacity 260ms ease;
}
.includes__item:focus-visible {
  outline: 2px solid rgba(217,182,111,0.65);
  outline-offset: 4px;
}
@keyframes pw-pulse {
  0%   { transform: scale(1); }
  45%  { transform: scale(1.14); }
  100% { transform: scale(1); }
}
.includes__item--pw-active .includes__item__icon,
.includes__item--pw-active .includes__item-icon,
.includes__item--pw-active figure { animation: pw-pulse 360ms ease 1 both; }
@media (prefers-reduced-motion: reduce) {
  .pw-sentence, .pw-line { transition: none; }
  @keyframes pw-pulse { from {} to {} }
}
/* /Pathway Whisper */

/* ── Premium Hover Glow ──────────────────────────────────────────────────── */
/* Temple cards */
.temple-card--active,
.temple-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(217,182,111,0.65) !important;
  box-shadow: 0 0 32px rgba(217,182,111,0.22), 0 0 12px rgba(20,40,100,0.4) inset, 0 12px 36px rgba(0,0,0,0.55) !important;
}
.temple-card--active .temple-card__icon svg,
.temple-card:hover .temple-card__icon svg {
  filter: drop-shadow(0 0 9px rgba(217,182,111,0.6));
}
.temple-card:focus-visible {
  outline: 2px solid rgba(217,182,111,0.7);
  outline-offset: 3px;
}
/* Journey pillars */
.transformation__phase--active,
.transformation__phase:focus-visible {
  outline: 2px solid rgba(217,182,111,0.65);
  outline-offset: 4px;
  border-radius: 4px;
}
.transformation__phase--active .transformation__phase-number {
  border-color: rgba(217,182,111,0.68) !important;
  box-shadow: 0 0 26px rgba(217,182,111,0.26), 0 0 8px rgba(217,182,111,0.18) !important;
}
/* Pathway includes cards — covered by pw-* above */
@media (hover: hover) and (pointer: fine) {
  .includes__item:hover {
    transform: translateY(-5px);
    border-color: rgba(217,182,111,0.42);
    box-shadow: 0 0 22px rgba(217,182,111,0.14), 0 8px 24px rgba(0,0,0,0.45);
  }
}
@media (prefers-reduced-motion: reduce) {
  .temple-card--active, .temple-card:hover,
  .transformation__phase--active,
  .includes__item:hover { transform: none !important; }
}
/* /Premium Hover Glow */

/* ═══════════════════════════════════════════════════════════════
   PHASE 1 LAUNCH ADDITIONS
   ═══════════════════════════════════════════════════════════════ */

/* ── Invest label and value anchor (pathway cards + program cards) ── */
.pathway-card__invest-label,
.program__card-invest-label {
  font-family: var(--sans);
  font-size: var(--text-xxs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--champagne);
  opacity: 0.82;
  margin-bottom: -0.15rem;
}
.pathway-card__value-anchor,
.program__card-value-anchor {
  font-family: var(--sans);
  font-size: var(--text-xxs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-decoration: line-through;
  opacity: 0.65;
  margin-top: -0.15rem;
}
.pathway-card__monthly,
.program__card-monthly {
  font-family: var(--sans);
  font-size: var(--text-xxs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  opacity: 0.7;
  margin-top: 0.15rem;
}

/* ── Seven Temples phase-lock CTA ── */
.seven-temples-cta-lock {
  display: block;
  width: 100%;
  text-align: center;
  cursor: default;
  pointer-events: none;
  opacity: 0.62;
  letter-spacing: 0.12em;
  font-size: var(--text-xs);
  font-family: var(--sans);
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.85em 1em;
  border: 1px solid rgba(217,182,111,0.18);
  color: var(--muted);
  user-select: none;
  box-sizing: border-box;
}

/* ── Pathway whisper sentence — centred and balanced ── */
.pw-sentence {
  text-align: center;
  margin-inline: auto;
  max-width: 48ch;
  text-wrap: balance;
}

/* ── Pathway cards 4 & 5 body-copy vertical balance ── */
.includes__item:nth-child(4) p,
.includes__item:nth-child(5) p {
  padding-top: 0.75rem;
}

/* ── Founder section architectural frame ── */
.guide-section__inner {
  position: relative;
  box-sizing: border-box;
}
@media (min-width: 1025px) {
  .guide-section__inner {
    padding-top: 56px;
    padding-bottom: 56px;
    padding-left: calc(var(--gutter) + 8px);
    padding-right: calc(var(--gutter) + 8px);
  }
}
@media (max-width: 1024px) {
  .guide-section__inner {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
@media (min-width: 640px) {
  .guide-section__inner {
    box-shadow:
      0 0 0 1px rgba(217,182,111,0.16),
      inset 0 0 60px rgba(9,42,87,0.1);
    transition: box-shadow 500ms ease;
  }
  .guide-section__inner:hover {
    box-shadow:
      0 0 0 1px rgba(217,182,111,0.28),
      inset 0 0 80px rgba(9,42,87,0.18);
  }
  .guide-section__inner::after {
    content: "";
    position: absolute;
    top: 0; left: 20%; right: 20%;
    height: 1px;
    background: linear-gradient(90deg,
      transparent 0%,
      rgba(217,182,111,0.45) 30%,
      rgba(242,214,144,0.65) 50%,
      rgba(217,182,111,0.45) 70%,
      transparent 100%);
    pointer-events: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .guide-section__inner { transition: none; }
}

/* ── Guide-section intro multi-paragraph spacing ── */
.guide-section__intro {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

/* ── Portrait frame — corner accents and hover glow ── */
.guide-portrait__frame {
  transition: border-color 400ms ease, box-shadow 400ms ease;
  animation: portraitGlow 1.8s ease-out 0.4s 1 both;
}
.guide-portrait__frame:hover {
  border-color: rgba(217,182,111,0.45);
  box-shadow: var(--shadow-deep), 0 0 40px rgba(217,182,111,0.12), 0 0 0 1px rgba(217,182,111,0.1);
}
@keyframes portraitGlow {
  from { box-shadow: var(--shadow-deep); }
  to   { box-shadow: var(--shadow-deep), 0 0 40px rgba(217,182,111,0.1); }
}
.portrait-corner {
  position: absolute;
  width: 16px;
  height: 16px;
  z-index: 4;
  pointer-events: none;
}
.portrait-corner--tl {
  top: 10px; left: 10px;
  border-top: 1px solid rgba(217,182,111,0.65);
  border-left: 1px solid rgba(217,182,111,0.65);
}
.portrait-corner--tr {
  top: 10px; right: 10px;
  border-top: 1px solid rgba(217,182,111,0.65);
  border-right: 1px solid rgba(217,182,111,0.65);
}
.portrait-corner--bl {
  bottom: 10px; left: 10px;
  border-bottom: 1px solid rgba(217,182,111,0.65);
  border-left: 1px solid rgba(217,182,111,0.65);
}
.portrait-corner--br {
  bottom: 10px; right: 10px;
  border-bottom: 1px solid rgba(217,182,111,0.65);
  border-right: 1px solid rgba(217,182,111,0.65);
}
@media (prefers-reduced-motion: reduce) {
  .guide-portrait__frame { animation: none; transition: none; }
}


/* ── Private-work preview panel ── */
.private-preview-panel {
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(217,182,111,0.22);
  background: rgba(9,42,87,0.15);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 400ms ease;
}
.private-preview-panel::before {
  content: "";
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(217,182,111,0.45) 40%,
    rgba(217,182,111,0.45) 60%,
    transparent);
}
.private-preview-panel:hover {
  border-color: rgba(217,182,111,0.35);
}
.private-preview-panel__title {
  font-family: var(--display);
  font-size: var(--text-lg);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--champagne);
}
.private-preview-panel__copy {
  font-family: var(--serif);
  font-size: var(--text-base);
  color: var(--silver);
  line-height: 1.65;
  font-style: italic;
  max-width: 54ch;
}
.private-preview-panel__authority {
  font-family: var(--sans);
  font-size: var(--text-xs);
  color: var(--muted);
  line-height: 1.65;
  max-width: 54ch;
}
.private-preview-panel__status {
  display: inline-block;
  font-family: var(--sans);
  font-size: var(--text-xxs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(217,182,111,0.5);
  cursor: default;
  pointer-events: none;
  margin-top: 0.25rem;
  user-select: none;
}
@media (prefers-reduced-motion: reduce) {
  .private-preview-panel { transition: none; }
}

/* ── Sisterhood founding-community additions ── */
.sisterhood__eyebrow {
  text-align: center;
}
.sisterhood__founding-note {
  font-family: var(--serif);
  font-size: var(--text-base);
  color: rgba(197,207,221,0.65);
  line-height: 1.6;
  font-style: italic;
  max-width: 44ch;
  text-align: center;
  margin: 0 auto;
}
.sisterhood__microcopy {
  font-family: var(--sans);
  font-size: var(--text-xxs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  opacity: 0.75;
}

/* ── Opening Gateway section ── */
.opening-gateway {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(22,95,186,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 60%, rgba(9,42,87,0.2) 0%, transparent 45%);
  border-top: 1px solid rgba(217,182,111,0.14);
  border-bottom: 1px solid rgba(217,182,111,0.14);
}
.og-dates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: 900px;
  margin: 0 auto 3rem;
}
.og-date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}
.og-date-header {
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(217,182,111,0.25);
}
.og-date-label {
  font-family: var(--display);
  font-size: var(--text-xl);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--champagne);
}
.og-session-card {
  background: rgba(9,42,87,0.22);
  border-left: 2px solid rgba(217,182,111,0.45);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  flex: 1;
  transition: border-left-color 350ms ease;
}
.og-session-card:hover {
  border-left-color: rgba(217,182,111,0.75);
}
.og-session-title {
  font-family: var(--serif);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.4;
}
.og-session-desc {
  font-family: var(--sans);
  font-size: var(--text-xs);
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: italic;
}
.og-times {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.35rem;
}
.og-times li {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--serif);
  font-size: var(--text-base);
  color: var(--silver);
  line-height: 1.5;
}
.og-tz {
  font-family: var(--sans);
  font-size: var(--text-xxs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--champagne);
  opacity: 0.85;
  flex-shrink: 0;
  min-width: 5.5rem;
}
.og-schedule-note {
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 400;
  color: rgba(217,182,111,0.72);
  line-height: 1.6;
  max-width: 48ch;
  margin: 0 auto 2.5rem;
  padding: 1rem 0;
  text-align: center;
  letter-spacing: 0.01em;
}

.og-bridge {
  font-family: var(--serif);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--silver);
  line-height: 1.65;
  max-width: 58ch;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid rgba(217,182,111,0.15);
  padding-top: 2rem;
}
@media (max-width: 640px) {
  .og-dates-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .og-session-card { transition: none; }
}

/* ── Program list group labels ── */
.program__list .program__list-group-label {
  font-family: var(--sans);
  font-size: var(--text-xxs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--champagne);
  margin-top: 0.75rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(217,182,111,0.2);
  list-style: none;
}
.program__list .program__list-group-label::before {
  content: none !important;
}
/* /Phase 1 Launch Additions */

/* ═══════════════════════════════════════════════════════════
   PRIVATE SPIRITUAL AUTHORITY MENTORING — Phase 2 Additions
   ═══════════════════════════════════════════════════════════ */

/* ─── Guide section: enhanced portrait frame ─────────────── */
.guide-portrait__frame {
  box-shadow:
    0 0 0 1px rgba(217,182,111,0.14),
    0 0 48px rgba(217,182,111,0.07),
    0 20px 80px rgba(0,0,0,0.45);
}
.guide-portrait__inner-glow {
  background: radial-gradient(ellipse at 50% 100%, rgba(217,182,111,0.07) 0%, transparent 68%);
}

/* ─── Private offer panel (replaces passive preview) ─────── */
.private-offer-panel {
  margin-top: 0;
  padding: 1.75rem 1.75rem 1.5rem;
  border: 1px solid rgba(217,182,111,0.3);
  background: rgba(9,42,87,0.18);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: border-color 350ms ease;
}
.private-offer-panel::before {
  content: "";
  position: absolute;
  top: 0; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(217,182,111,0.55) 40%,
    rgba(217,182,111,0.55) 60%,
    transparent);
}
.private-offer-panel:hover { border-color: rgba(217,182,111,0.48); }

.private-offer-panel__eyebrow {
  font-family: var(--sans);
  font-size: var(--text-xxs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--champagne);
  margin: 0;
}
.private-offer-panel__copy {
  font-family: var(--serif);
  font-size: var(--text-base);
  color: var(--silver);
  line-height: 1.7;
  margin: 0;
  max-width: 52ch;
}
.private-offer-panel__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.private-offer-panel__benefits li {
  font-family: var(--sans);
  font-size: var(--text-xs);
  color: var(--muted);
  padding-left: 1.4em;
  position: relative;
  line-height: 1.5;
}
.private-offer-panel__benefits li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: rgba(217,182,111,0.55);
  font-size: 0.65em;
  top: 0.2em;
}
.private-offer-panel__cta {
  align-self: flex-start;
  margin-top: 0.25rem;
  font-size: var(--text-xs);
  padding: 0.85em 1.6em;
  white-space: nowrap;
}
.private-offer-panel__microcopy {
  font-family: var(--sans);
  font-size: var(--text-xxs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .private-offer-panel { transition: none; }
}

/* ─── Mentoring page: hero ───────────────────────────────── */
.mentoring-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.mentoring-hero__image-wrap {
  position: relative;
  width: 100%;
  max-height: 440px;
  overflow: hidden;
}
.mentoring-hero__img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.mentoring-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(2,7,17,0.15) 0%,
    rgba(2,7,17,0.55) 60%,
    rgba(2,7,17,0.92) 100%
  );
}
.mentoring-hero__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1.5rem, 5vw, 4rem) clamp(1.75rem, 4vw, 3rem);
  z-index: 1;
}
.mentoring-hero__eyebrow {
  font-family: var(--sans);
  font-size: var(--text-xxs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--champagne);
  margin: 0 0 0.6rem;
}
.mentoring-hero__title {
  font-family: var(--display);
  font-size: clamp(1.6rem, 4.5vw, 3rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ivory);
  line-height: 1.1;
  margin: 0 0 0.75rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}
.mentoring-hero__sub {
  font-family: var(--sans);
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(217,182,111,0.85);
  margin: 0;
}

@media (max-width: 480px) {
  .mentoring-hero__image-wrap,
  .mentoring-hero__img { max-height: 280px; height: 280px; }
}

/* ─── Mentoring page: offer section ─────────────────────── */
.mentoring-offer {
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 5vw, 4rem);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(9,42,87,0.18) 0%, transparent 60%);
  border-bottom: 1px solid rgba(217,182,111,0.12);
}
.mentoring-offer__inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.mentoring-offer__heading {
  font-family: var(--display);
  font-size: var(--text-2xl);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--champagne);
  margin: 0 0 1.25rem;
}
.mentoring-offer__body {
  font-family: var(--serif);
  font-size: var(--text-lg);
  color: var(--silver);
  line-height: 1.75;
  margin: 0 0 1.5rem;
}
.mentoring-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.mentoring-benefits li {
  font-family: var(--sans);
  font-size: var(--text-sm);
  color: var(--silver);
  padding-left: 1.6em;
  position: relative;
  line-height: 1.55;
}
.mentoring-benefits li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--champagne);
  font-size: 0.65em;
  top: 0.22em;
}
.mentoring-process__heading {
  font-family: var(--sans);
  font-size: var(--text-xxs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--champagne);
  margin: 0 0 1.25rem;
}
.mentoring-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  counter-reset: step;
}
.mentoring-steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.75rem;
  align-items: start;
}
.mentoring-steps li::before {
  content: counter(step);
  font-family: var(--display);
  font-size: 1rem;
  color: rgba(217,182,111,0.55);
  line-height: 1.5;
  text-align: right;
}
.mentoring-steps li span {
  font-family: var(--sans);
  font-size: var(--text-sm);
  color: var(--silver);
  line-height: 1.6;
}
.mentoring-booking-note {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-left: 2px solid rgba(217,182,111,0.38);
  background: rgba(9,42,87,0.12);
}
.mentoring-booking-note p {
  font-family: var(--serif);
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .mentoring-offer__inner { grid-template-columns: 1fr; }
}

/* ─── Mentoring form shell override ─────────────────────── */
.mentoring-form-shell {
  max-width: 1060px;
}
.mentoring-sidebar {
  position: sticky;
  top: 90px;
}

/* ─── Intake section headings ────────────────────────────── */
.intake-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(217,182,111,0.12);
}
.intake-section:first-of-type {
  border-top: none;
  padding-top: 0;
}
.intake-section__heading {
  font-family: var(--sans);
  font-size: var(--text-xxs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: rgba(217,182,111,0.7);
  margin: 0;
}

/* ─── Intake guidance text ───────────────────────────────── */
.intake-guidance {
  font-family: var(--serif);
  font-size: var(--text-xs);
  color: var(--muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.6;
  font-style: italic;
  margin-top: 0.15rem;
}

/* ─── Required marker ────────────────────────────────────── */
.req {
  color: rgba(217,182,111,0.55);
  font-size: 0.8em;
  margin-left: 0.1em;
}

/* ─── Radio button group ─────────────────────────────────── */
.intake-fieldset {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.intake-fieldset legend {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--champagne);
  margin-bottom: 0.75rem;
  float: left;
  width: 100%;
}
.intake-radio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
}
.radio-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--silver);
  cursor: pointer;
  line-height: 1.5;
}
.radio-option input[type="radio"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--champagne);
  cursor: pointer;
}

/* ─── Textarea height overrides for longer intake fields ─── */
.intake-section textarea {
  min-height: 120px;
}

@media (max-width: 480px) {
  .intake-radio-grid { grid-template-columns: 1fr; }
  .mentoring-sidebar { position: static; }
  .private-offer-panel__cta { align-self: stretch; text-align: center; justify-content: center; }
}

/* /Private Mentoring Additions */

/* ════════════════════════════════════════════════════════
   FOUNDING PRE-ACCESS COUNTDOWN
   Shown only when FOUNDING_DEADLINE is set in script.js.
   Sits between nav and hero; zero layout impact when hidden.
   ════════════════════════════════════════════════════════ */
.founding-countdown {
  background: rgba(9, 7, 4, 0.97);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  padding: 20px 24px 20px;
  text-align: center;
  position: relative;
  z-index: 10;
}
.founding-countdown__inner {
  max-width: 560px;
  margin: 0 auto;
}
.founding-countdown__label {
  font-family: var(--sans);
  font-size: var(--text-xxs);
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(232, 220, 200, 0.55);
  margin: 0 0 12px;
}
.founding-countdown__timer {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 10px;
}
.founding-countdown__segment {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
}
.founding-countdown__segment > span:first-child {
  font-family: var(--serif-display);
  font-size: clamp(36px, 7vw, 56px);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.04em;
  min-width: 2.1ch;
  display: inline-block;
  text-align: center;
}
.founding-countdown__unit {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.45);
  align-self: flex-end;
  margin-bottom: 6px;
}
.founding-countdown__sep {
  font-family: var(--serif-display);
  font-size: clamp(28px, 5vw, 44px);
  color: rgba(201, 168, 76, 0.28);
  line-height: 1;
  align-self: center;
  margin: 0 1px;
}
.founding-countdown__sub {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 220, 200, 0.28);
  margin: 0;
}
@media (max-width: 480px) {
  .founding-countdown { padding: 64px 16px 14px; }
  .temples__arc  { margin-bottom: var(--sp-3); }
  .temples__grid { margin-bottom: var(--sp-2); }
}

/* ─── DESKTOP HEADER & HERO POSITION CORRECTION ─────────────────── */
@media (min-width: 1025px) {
  /* Nav links: clear upper lane above countdown label (y:6–25) */
  .nav__links {
    align-self: flex-start;
    margin-top: -18px;
  }

  /* Countdown: push label below nav lane; trim bottom to hold total height ~146px */
  .founding-countdown {
    padding-top: 32px;
    padding-bottom: 6px;
  }

  /* Label: tighten bottom gap to stay within height budget while meeting 8px timer clearance */
  .founding-countdown__label {
    margin-bottom: 8px;
  }

  /* Hero: tighten top padding; combined with countdown change moves content up */
  .hero__layout {
    padding-top: 2rem;
  }
}

/* ─── CONTRIBUTION STRIP (index.html) ─────────────────────── */
.contribution-strip {
  padding: 80px 24px;
  text-align: center;
  background: linear-gradient(180deg, transparent 0%, rgba(6, 19, 37, 0.45) 50%, transparent 100%);
  border-top: 1px solid rgba(217, 182, 111, 0.10);
  border-bottom: 1px solid rgba(217, 182, 111, 0.10);
}
.contribution-strip__inner {
  max-width: 640px;
  margin: 0 auto;
}
.contribution-strip__heading {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.8vw, 1.85rem);
  font-weight: 400;
  color: var(--ivory);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.25;
  margin: 0.5rem 0 1rem;
}
.contribution-strip__body {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 2rem;
}
.contribution-strip__btn {
  display: inline-block;
  padding: 0.72rem 2rem;
  border: 1px solid rgba(217, 182, 111, 0.38);
  color: var(--champagne);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.22s, border-color 0.22s;
}
.contribution-strip__btn:hover {
  background: rgba(217, 182, 111, 0.07);
  border-color: rgba(217, 182, 111, 0.6);
}
.contribution-strip__trust {
  margin: 1rem 0 0;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  opacity: 0.7;
}
@media (max-width: 480px) {
  .contribution-strip { padding: 60px 20px; }
}

/* ── Phase transition ─────────────────────────────────────────────
   JS adds body.phase-two at midnight (2026-06-26T22:00:00Z = midnight CEST)
   Use data-phase-show / data-phase-text attributes for per-element control.
   ──────────────────────────────────────────────────────────────── */
[data-phase-show="standard"] { display: none; }
body.phase-two [data-phase-show="standard"] { display: revert; }
body.phase-two [data-phase-show="founding"]  { display: none; }

/* Countdown banner — new headline / copy elements */
.founding-countdown__headline {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--champagne);
  margin: 0.3rem 0 0.5rem;
  letter-spacing: 0.02em;
}
.founding-countdown__copy {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 0 0.75rem;
  letter-spacing: 0.02em;
}
.founding-countdown__gate-note {
  margin-top: 0.9rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(217,182,111,0.15);
  font-family: var(--sans);
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.founding-countdown__gate-eyebrow {
  color: var(--champagne);
  opacity: 0.9;
}
