/* ─────────────────────────────────────────────────
   Wealth Within Institute — Design Tokens & Global
   ───────────────────────────────────────────────── */

:root {
  --ww-purple: #26215C;
  --ww-purple-deep: #1F1B4E;
  --ww-purple-dark: #14102E;
  --ww-purple-tint: #2A2563;
  --ww-gold: #D4B068;
  --ww-gold-mid: #C5A572;
  --ww-lavender: #AFA9EC;
  --ww-lavender-mid: #7F77DD;
  --ww-cream: #F0E6D2;
  --ww-white: #FFFFFF;
  --ww-ink: #1A1530;
  --ww-ink-mid: #4A4560;
  --ww-ink-light: #6B6585;
  --ww-black: #0A0A0A;
  --ww-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ww-ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  background: var(--ww-purple);
  color: var(--ww-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ─────────────────────────────────────────────────
   NAVIGATION
   ───────────────────────────────────────────────── */

.ww-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: transparent;
  transition: background 300ms var(--ww-ease-out), backdrop-filter 300ms var(--ww-ease-out);
}

.ww-nav.scrolled {
  background: rgba(38, 33, 92, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.ww-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ww-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.ww-wordmark {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--ww-cream);
  letter-spacing: -0.01em;
}

.ww-nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

/* Text links only — exclude button CTAs from underline animation */
.ww-nav-links a:not(.ww-cta-book):not(.ww-cta-register) {
  position: relative;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.92);
  padding: 4px 0;
}

.ww-nav-links a:not(.ww-cta-book):not(.ww-cta-register)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--ww-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 350ms var(--ww-ease-out);
}

.ww-nav-links a:not(.ww-cta-book):not(.ww-cta-register):hover::after,
.ww-nav-links a:not(.ww-cta-book):not(.ww-cta-register).active::after {
  transform: scaleX(1);
}

/* Secondary CTA — Book a call (ghost/outlined) */
.ww-cta-book {
  padding: 10px 22px;
  border: 1px solid rgba(212, 176, 104, 0.45);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ww-white);
  background: transparent;
  transition: all 300ms var(--ww-ease-out);
  cursor: pointer;
}

.ww-cta-book:hover {
  border-color: var(--ww-gold);
  background: rgba(212, 176, 104, 0.1);
}

/* Primary CTA — Register (filled gold) */
.ww-cta-register {
  padding: 10px 22px;
  border: 1px solid var(--ww-gold);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ww-purple-deep);
  background: var(--ww-gold);
  transition: all 300ms var(--ww-ease-out);
  cursor: pointer;
}

.ww-cta-register:hover {
  background: var(--ww-gold-mid);
  border-color: var(--ww-gold-mid);
  transform: translateY(-1px);
}

/* ─────────────────────────────────────────────────
   BUTTONS (in-page CTAs)
   ───────────────────────────────────────────────── */

.ww-cta-p, .ww-cta-s {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform 200ms var(--ww-ease-out);
  cursor: pointer;
  border: none;
}

.ww-cta-p {
  background: var(--ww-white);
  color: var(--ww-purple);
}

.ww-cta-s {
  background: transparent;
  color: var(--ww-white);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.ww-cta-p:hover, .ww-cta-s:hover {
  transform: translateY(-1px);
}

.ww-cta-p .arrow, .ww-cta-s .arrow {
  color: var(--ww-gold);
  font-size: 14px;
}

/* ─────────────────────────────────────────────────
   AMBIENT ORBS
   ───────────────────────────────────────────────── */

.ww-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.ww-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}

.ww-orb-1 {
  width: 55%; height: 55%;
  top: -20%; left: -15%;
  background: rgba(127, 119, 221, 0.32);
  animation: orbDrift1 16s;
}

.ww-orb-2 {
  width: 45%; height: 45%;
  bottom: -15%; right: -10%;
  background: rgba(212, 176, 104, 0.14);
  animation: orbDrift2 22s;
}

.ww-orb-3 {
  width: 65%; height: 65%;
  bottom: -20%; left: 20%;
  background: rgba(20, 16, 46, 0.50);
  animation: orbDrift3 18s;
}

@keyframes orbDrift1 { from { transform: translate(0, 0); } to { transform: translate(30%, 20%); } }
@keyframes orbDrift2 { from { transform: translate(0, 0); } to { transform: translate(-25%, -30%); } }
@keyframes orbDrift3 { from { transform: translate(0, 0); } to { transform: translate(15%, -20%); } }

/* ─────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────── */

.ww-hero {
  position: relative;
  min-height: 500px;
  background: var(--ww-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 40px 100px;
  overflow: hidden;
}

.ww-hero.short { min-height: 400px; }

.ww-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
}

.ww-eyebrow {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ww-lavender);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeIn 600ms 300ms var(--ww-ease-out) forwards;
}

.ww-hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 90px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ww-cream);
  margin-bottom: 32px;
  font-variation-settings: 'opsz' 144;
}

.ww-hero-headline.short { font-size: 44px; font-variation-settings: 'opsz' 120; }

.ww-hero-headline .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
  animation: riseIn 800ms var(--ww-ease-out) forwards;
}
.ww-hero-headline .word:nth-child(1) { animation-delay: 400ms; }
.ww-hero-headline .word:nth-child(2) { animation-delay: 520ms; }
.ww-hero-headline .word:nth-child(3) { animation-delay: 640ms; }

.ww-hero-headline .accent {
  font-style: italic;
  font-weight: 300;
  color: var(--ww-gold);
}

.ww-hero-tagline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeIn 600ms 900ms var(--ww-ease-out) forwards;
}

.ww-hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 600ms 1100ms var(--ww-ease-out) forwards;
}

.ww-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  opacity: 0;
  animation: fadeIn 600ms 1400ms var(--ww-ease-out) forwards;
}

.ww-scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--ww-gold), transparent);
  margin: 12px auto 0;
}

@keyframes fadeIn { to { opacity: 1; } }
@keyframes riseIn { to { opacity: 1; transform: translateY(0); } }

/* ─────────────────────────────────────────────────
   SECTIONS
   ───────────────────────────────────────────────── */

.ww-section {
  position: relative;
  padding: 96px 40px;
  overflow: hidden;
}

.ww-section.light { background: var(--ww-white); color: var(--ww-ink); }
.ww-section.dark { background: var(--ww-purple-deep); color: var(--ww-white); }
.ww-section.hairline { border-top: 1px solid rgba(212, 176, 104, 0.25); }

.ww-container {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.ww-marker {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.ww-marker-num {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  color: var(--ww-gold);
  white-space: nowrap;
}

.ww-marker-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(212, 176, 104, 0.4), transparent);
}

.ww-marker-label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  white-space: nowrap;
}

.ww-section.light .ww-marker-label { color: var(--ww-purple); }
.ww-section.dark .ww-marker-label { color: var(--ww-lavender); }

.ww-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 42px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.ww-section.light .ww-headline { color: var(--ww-ink); }
.ww-section.dark .ww-headline { color: var(--ww-cream); }

.ww-headline .accent {
  font-style: italic;
  font-weight: 300;
  color: var(--ww-gold);
}

.ww-body {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ww-ink-mid);
  margin-bottom: 20px;
  max-width: 620px;
}

.ww-section.dark .ww-body {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.ww-two-col {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}

.ww-two-col.equal { grid-template-columns: 1fr 1fr; gap: 64px; }

.ww-pullquote {
  padding: 40px;
  border-left: 2px solid var(--ww-gold);
  position: relative;
}

.ww-pullquote-mark {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 60px;
  color: var(--ww-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.ww-pullquote-text {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: var(--ww-ink);
  margin-bottom: 20px;
}

.ww-pullquote-attr {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ww-ink-light);
}

/* ─────────────────────────────────────────────────
   WHY JOIN — Curtain Cards
   ───────────────────────────────────────────────── */

.ww-rooms {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 56px;
  transition: grid-template-columns 700ms var(--ww-ease-out);
}

.ww-rooms.expanded-0 { grid-template-columns: 2.4fr 0.85fr 0.85fr; }
.ww-rooms.expanded-1 { grid-template-columns: 0.85fr 2.4fr 0.85fr; }
.ww-rooms.expanded-2 { grid-template-columns: 0.85fr 0.85fr 2.4fr; }

.ww-room {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 176, 104, 0.15);
  border-radius: 4px;
  padding: 40px 32px;
  min-height: 360px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: background 400ms var(--ww-ease-out);
}

.ww-room:hover { background: rgba(255, 255, 255, 0.05); }

.ww-room-label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--ww-lavender);
  margin-bottom: 20px;
}

.ww-room-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 36px;
  color: var(--ww-cream);
  letter-spacing: -0.02em;
  margin-bottom: auto;
}

.ww-room-title.italic { font-style: italic; font-weight: 300; }
.ww-room-title.spaced { letter-spacing: 0.02em; }

.ww-room-hint {
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(212, 176, 104, 0.7);
  transition: opacity 300ms var(--ww-ease-out);
}

.ww-room.open .ww-room-hint { opacity: 0; }

.ww-curtains {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 55%;
  display: flex;
  z-index: 3;
  pointer-events: none;
}

.ww-curtain-l, .ww-curtain-r {
  height: 100%;
  background: var(--ww-purple-deep);
  transition: transform 900ms var(--ww-ease-in-out);
}

.ww-curtain-l {
  width: 50%;
  border-right: 0.5px solid rgba(212, 176, 104, 0.32);
}
.ww-curtain-r { width: 50%; }

.ww-room.open .ww-curtain-l { transform: translateX(-100%); }
.ww-room.open .ww-curtain-r { transform: translateX(100%); }

.ww-room-reveal {
  position: absolute;
  left: 32px; right: 32px;
  bottom: 40px;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 500ms 400ms var(--ww-ease-out), transform 500ms 400ms var(--ww-ease-out);
}

.ww-room.open .ww-room-reveal {
  opacity: 1;
  transform: translateY(0);
}

.ww-room-desc {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.ww-room-enter {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ww-gold);
}

.ww-room-mind::before {
  content: '';
  position: absolute;
  top: 20px; left: 32px; right: 32px;
  height: 12px;
  background:
    linear-gradient(to right, rgba(212, 176, 104, 0.4), transparent 30%, transparent 70%, rgba(212, 176, 104, 0.4)),
    linear-gradient(45deg, transparent 45%, rgba(212, 176, 104, 0.3) 45%, rgba(212, 176, 104, 0.3) 55%, transparent 55%);
  background-size: 100% 1px, 8px 8px;
  background-repeat: no-repeat, repeat-x;
  background-position: 0 100%, 0 0;
  z-index: 1;
}

.ww-room-word .ww-room-echo {
  position: absolute;
  top: 20px;
  right: 32px;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 11px;
  color: rgba(212, 176, 104, 0.45);
  z-index: 1;
}

.ww-room-spirit::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(212, 176, 104, 0.15), transparent 60%);
  z-index: 1;
  pointer-events: none;
}

/* ─────────────────────────────────────────────────
   HOW IT WORKS
   ───────────────────────────────────────────────── */

.ww-steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 56px;
  position: relative;
}

.ww-steps::before {
  content: '';
  position: absolute;
  top: 62px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212, 176, 104, 0.4), transparent);
  z-index: 0;
}

.ww-step {
  background: var(--ww-white);
  border: 1px solid rgba(26, 21, 48, 0.08);
  border-radius: 4px;
  padding: 36px 24px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 400ms var(--ww-ease-out), box-shadow 400ms var(--ww-ease-out);
}

.ww-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 21, 48, 0.08);
}

.ww-step-icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  background: rgba(212, 176, 104, 0.1);
  border: 1px solid rgba(212, 176, 104, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ww-gold);
  position: relative;
  z-index: 2;
}

.ww-step-num {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--ww-purple);
  margin-bottom: 12px;
}

.ww-step-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  color: var(--ww-ink);
  margin-bottom: 10px;
}

.ww-step-body {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ww-ink-light);
}

.ww-step-watermark {
  position: absolute;
  bottom: -60px;
  right: -20px;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 180px;
  color: rgba(38, 33, 92, 0.04);
  line-height: 1;
  pointer-events: none;
  z-index: 1;
}

/* ─────────────────────────────────────────────────
   INSTRUCTOR CARDS
   ───────────────────────────────────────────────── */

.ww-instructors {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}

.ww-instructor {
  background: var(--ww-white);
  border: 1px solid rgba(26, 21, 48, 0.08);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 400ms var(--ww-ease-out), box-shadow 400ms var(--ww-ease-out);
}

.ww-instructor:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 21, 48, 0.08);
}

.ww-instructor-photo {
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--ww-purple-tint) 0%, #1A1540 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ww-instructor-photo::before,
.ww-instructor-photo::after {
  content: '';
  position: absolute;
  background: var(--ww-gold);
}
.ww-instructor-photo::before { top: 12px; right: 12px; width: 16px; height: 1px; }
.ww-instructor-photo::after { top: 12px; right: 12px; width: 1px; height: 16px; }

.ww-instructor-photo svg {
  width: 30px; height: 30px;
  color: rgba(212, 176, 104, 0.55);
}

.ww-instructor-body { padding: 22px; }

.ww-instructor-role {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--ww-gold);
  margin-bottom: 8px;
}

.ww-instructor-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  color: var(--ww-ink);
  margin-bottom: 8px;
}

.ww-instructor-bio {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ww-ink-light);
}

/* ─────────────────────────────────────────────────
   TESTIMONIALS
   ───────────────────────────────────────────────── */

.ww-testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}

.ww-testimonial {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 176, 104, 0.2);
  border-radius: 4px;
  padding: 32px 28px;
  transition: transform 400ms var(--ww-ease-out);
}

.ww-testimonial:nth-child(1) { transform: rotate(-1.2deg); }
.ww-testimonial:nth-child(2) { transform: rotate(0.4deg); }
.ww-testimonial:nth-child(3) { transform: rotate(1.5deg); }

.ww-testimonial:hover { transform: rotate(0deg) translateY(-4px); }

.ww-testimonial-mark {
  color: var(--ww-gold);
  margin-bottom: 12px;
  opacity: 0.7;
}

.ww-testimonial-text {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 15px;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.ww-testimonial-divider {
  height: 1px;
  background: rgba(212, 176, 104, 0.25);
  margin-bottom: 12px;
}

.ww-testimonial-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--ww-white);
  margin-bottom: 4px;
}

.ww-testimonial-meta {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.5);
}

/* ─────────────────────────────────────────────────
   VIDEO PLACEHOLDER
   ───────────────────────────────────────────────── */

.ww-video {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(160deg, var(--ww-purple-tint), var(--ww-purple-dark));
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ww-video .ww-orb {
  position: absolute;
  width: 80%; height: 80%;
  background: rgba(212, 176, 104, 0.15);
  filter: blur(60px);
  animation: orbDrift1 22s infinite alternate ease-in-out;
}

.ww-play {
  position: relative;
  z-index: 2;
  width: 72px; height: 72px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 176, 104, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ww-gold);
  cursor: pointer;
  animation: pulse 2.6s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 176, 104, 0.45); }
  50% { transform: scale(1.06); box-shadow: 0 0 0 14px rgba(212, 176, 104, 0); }
}

.ww-video-caption {
  position: absolute;
  bottom: 20px; left: 20px;
  z-index: 2;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.7);
}

/* ─────────────────────────────────────────────────
   FINAL CTA
   ───────────────────────────────────────────────── */

.ww-final-cta {
  position: relative;
  padding: 104px 40px;
  background: var(--ww-purple);
  text-align: center;
  overflow: hidden;
}

.ww-final-cta .ww-container { position: relative; z-index: 2; }

/* ─────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────── */

.ww-footer {
  background: var(--ww-black);
  padding: 64px 40px 32px;
}

.ww-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  max-width: 1080px;
  margin: 0 auto 40px;
}

.ww-footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ww-footer-brand .ww-logo {
  width: 52px;
  height: 52px;
}

.ww-footer-brand .ww-wordmark {
  font-size: 24px;
}

.ww-footer h4 {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--ww-gold);
  margin-bottom: 20px;
}

.ww-footer-links a {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  padding: 6px 0;
  transition: color 200ms var(--ww-ease-out);
}

.ww-footer-links a:hover { color: var(--ww-cream); }

.ww-socials {
  display: flex;
  gap: 12px;
}

.ww-social {
  width: 38px; height: 38px;
  border: 1px solid rgba(212, 176, 104, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ww-gold);
  transition: all 200ms var(--ww-ease-out);
}

.ww-social:hover {
  border-color: var(--ww-gold);
  background: rgba(212, 176, 104, 0.1);
  color: var(--ww-cream);
}

.ww-footer-bottom {
  max-width: 1080px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.42);
}

/* ─────────────────────────────────────────────────
   SCROLL REVEAL
   ───────────────────────────────────────────────── */

.ww-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 800ms var(--ww-ease-out), transform 800ms var(--ww-ease-out);
}

.ww-reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.ww-reveal-underline {
  position: relative;
  display: inline-block;
}

.ww-reveal-underline::after {
  content: '';
  position: absolute;
  left: 0; bottom: -8px;
  width: 60px; height: 2px;
  background: var(--ww-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 700ms 1000ms var(--ww-ease-in-out);
}

.ww-reveal.in .ww-reveal-underline::after { transform: scaleX(1); }

/* ─────────────────────────────────────────────────
   PROGRAMME PAGE
   ───────────────────────────────────────────────── */

.ww-curriculum {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}

.ww-curr-card {
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 176, 104, 0.18);
  border-radius: 4px;
  position: relative;
  transition: background 400ms var(--ww-ease-out), transform 400ms var(--ww-ease-out);
  overflow: hidden;
}

.ww-curr-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-3px);
}

.ww-curr-num {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: var(--ww-gold);
  margin-bottom: 12px;
}

.ww-curr-label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--ww-lavender);
  margin-bottom: 16px;
}

.ww-curr-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--ww-cream);
  margin-bottom: 16px;
}

.ww-curr-title .accent {
  font-style: italic;
  font-weight: 300;
  color: var(--ww-gold);
}

.ww-curr-body {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.ww-curr-topics {
  list-style: none;
  padding: 0;
}

.ww-curr-topics li {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 0;
  border-top: 1px solid rgba(212, 176, 104, 0.12);
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.ww-curr-topics li:first-child { border-top: none; }

.ww-curr-topics li::before {
  content: '·';
  color: var(--ww-gold);
  font-size: 20px;
  line-height: 0;
}

.ww-rhythm {
  margin-top: 56px;
  padding: 48px 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 176, 104, 0.15);
  border-radius: 4px;
}

.ww-rhythm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
}

.ww-rhythm-item {
  text-align: center;
  padding: 20px 12px;
  position: relative;
}

.ww-rhythm-item:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(212, 176, 104, 0.4);
  font-size: 14px;
}

.ww-rhythm-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  color: var(--ww-gold);
  margin-bottom: 8px;
}

.ww-rhythm-label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--ww-cream);
  margin-bottom: 6px;
}

.ww-rhythm-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
}

.ww-delivery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}

.ww-deliver-item {
  padding: 32px 24px;
  text-align: left;
  border-left: 2px solid var(--ww-gold);
  background: rgba(38, 33, 92, 0.02);
}

.ww-deliver-item h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  color: var(--ww-ink);
  margin-bottom: 10px;
}

.ww-deliver-item p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ww-ink-light);
}

/* ─────────────────────────────────────────────────
   REDUCED MOTION
   ───────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .ww-reveal { opacity: 1; transform: none; }
  .ww-hero-headline .word,
  .ww-eyebrow, .ww-hero-tagline, .ww-hero-ctas, .ww-scroll-hint {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ─────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────── */

@media (max-width: 900px) {
  .ww-nav { padding: 16px 20px; }
  .ww-nav-links { gap: 12px; }
  .ww-nav-links a:not(.ww-cta-book):not(.ww-cta-register) { display: none; }
  .ww-cta-book { padding: 8px 16px; font-size: 10px; }
  .ww-cta-register { padding: 8px 16px; font-size: 10px; }
  .ww-logo { width: 32px; height: 32px; }
  .ww-wordmark { font-size: 16px; }
  .ww-hero-headline { font-size: 56px; }
  .ww-hero-headline.short { font-size: 32px; }
  .ww-hero-tagline { font-size: 18px; }
  .ww-two-col, .ww-two-col.equal { grid-template-columns: 1fr; gap: 40px; }
  .ww-rooms, .ww-steps, .ww-instructors, .ww-testimonials { grid-template-columns: 1fr; }
  .ww-rooms.expanded-0, .ww-rooms.expanded-1, .ww-rooms.expanded-2 { grid-template-columns: 1fr; }
  .ww-steps::before { display: none; }
  .ww-footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .ww-headline { font-size: 32px; }
  .ww-section { padding: 60px 24px; }
  .ww-curriculum { grid-template-columns: 1fr; }
  .ww-rhythm-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .ww-rhythm-item::after { display: none; }
  .ww-delivery { grid-template-columns: 1fr; }
}