/* ============================================
   A.U.R.A. — Design System
   Awaken. Unlearn. Rewire. Ascend.
   ============================================ */

:root {
  /* Color */
  --color-bg: #000000;
  --color-bg-raised: #000000;
  --color-gold: #c9a15b;
  --color-gold-light: #e3c68f;
  --color-cream: #f4f1ea;
  --color-white: #f5f3ee;
  --color-white-dim: rgba(245, 243, 238, 0.68);
  --color-white-faint: rgba(245, 243, 238, 0.4);
  --color-line: rgba(201, 161, 91, 0.22);
  --color-terracotta: #8b3a2c;

  /* Type */
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Jost', 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --max-width: 1180px;
  --gutter: clamp(1.5rem, 5vw, 4rem);
  --section-pad: clamp(4rem, 10vw, 8rem);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

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

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  margin: 0;
  color: var(--color-white);
}

p { margin: 0; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 500;
}

.section {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

.section--divider {
  border-top: 1px solid var(--color-line);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2.1rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  color: #1a1408;
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.06); }

.btn-ghost {
  background: transparent;
  border-color: var(--color-line);
  color: var(--color-white);
}
.btn-ghost:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-light);
  transform: translateY(-2px);
}

.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--color-gold-light);
  outline-offset: 3px;
}

/* ============ NAV ============ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-line);
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.28em;
  color: var(--color-gold-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 1.8vw, 2.25rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white-dim);
  transition: color 0.3s var(--ease);
}
.nav-links a:hover { color: var(--color-gold-light); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 1020px) {
  .nav-links {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    height: calc(100vh - 84px);
    height: calc(100dvh - 84px);
    flex-direction: column;
    align-items: stretch;
    background: var(--color-bg);
    padding: 1.5rem var(--gutter) max(2rem, env(safe-area-inset-bottom));
    gap: 0.45rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }
  .nav-links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
  }
  .nav-links li { width: min(100%, 380px); margin: 0 auto; }
  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    padding: 0.65rem 1rem;
    font-size: 0.92rem;
    text-align: center;
  }
  .nav-links .btn { min-height: 52px; }
  .nav-toggle { display: block; }
  body.menu-open { overflow: hidden; touch-action: none; }
  body.menu-open .nav-links { touch-action: pan-y; }
}

/* ============ VIDEO TESTIMONIALS ============ */
.testimonials {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(201, 161, 91, 0.09), transparent 32%),
    var(--color-bg-raised);
}

.testimonials-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.testimonials .section-head { margin: 0; }

.testimonials-copy {
  color: var(--color-white-dim);
  max-width: 430px;
  padding-bottom: 0.3rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.video-testimonial { min-width: 0; }

.testimonial-cover {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background: #0d0c0b;
  color: var(--color-white);
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.testimonial-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.65s var(--ease); }
.cover-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.05) 35%, rgba(0,0,0,.82) 100%); }
.cover-number { position: absolute; top: 1rem; left: 1rem; color: var(--color-gold-light); font-size: .75rem; letter-spacing: .14em; }
.cover-play { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%,-50%); width: 64px; height: 64px; display: grid; place-items: center; border: 1px solid rgba(227,198,143,.75); border-radius: 50%; background: rgba(0,0,0,.72); color: transparent; font-size: 0; box-shadow: 0 0 38px rgba(201,161,91,.25); }
.cover-play::before { content: ""; width: 0; height: 0; margin-left: 5px; border-top: 9px solid transparent; border-bottom: 9px solid transparent; border-left: 14px solid var(--color-gold-light); }
.cover-label { position: absolute; left: 1rem; right: 1rem; bottom: 1.25rem; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; }
.cover-label strong { display: block; margin-bottom: .2rem; color: var(--color-gold-light); font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; letter-spacing: .04em; text-transform: none; }

.video-testimonial:hover .testimonial-cover {
  transform: translateY(-6px);
  border-color: rgba(201, 161, 91, 0.55);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.video-testimonial:hover .testimonial-cover img { transform: scale(1.04); }

.video-modal { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 4rem 1.25rem 1.25rem; background: rgba(0,0,0,.92); opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
.video-modal.is-open { opacity: 1; visibility: visible; }
.video-modal-frame { width: min(430px, 90vw); height: min(78vh, 760px); border: 1px solid var(--color-line); border-radius: 18px; overflow: hidden; background: #000; }
.video-modal-frame iframe { width: 100%; height: 100%; border: 0; }
.video-modal-close { position: absolute; top: 1rem; right: 1.25rem; width: 46px; height: 46px; border: 1px solid var(--color-line); border-radius: 50%; background: #090909; color: var(--color-white); font-size: 1.8rem; cursor: pointer; }
body.modal-open { overflow: hidden; }

.video-placeholder {
  position: relative;
  aspect-ratio: 9 / 16;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 38%, rgba(201, 161, 91, 0.16), transparent 30%),
    linear-gradient(160deg, #201c18, #0d0c0b 72%);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.video-placeholder::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201, 161, 91, 0.1);
  border-radius: 10px;
}

.video-testimonial:hover .video-placeholder {
  transform: translateY(-6px);
  border-color: rgba(201, 161, 91, 0.55);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.video-number {
  position: absolute;
  top: 1.35rem;
  left: 1.35rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--color-gold);
  letter-spacing: 0.12em;
}

.video-play {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  padding-left: 4px;
  border: 1px solid rgba(227, 198, 143, 0.55);
  border-radius: 50%;
  color: var(--color-gold-light);
  font-size: 0.95rem;
  background: rgba(10, 10, 10, 0.55);
  box-shadow: 0 0 36px rgba(201, 161, 91, 0.12);
}

.video-status {
  position: absolute;
  bottom: 1.7rem;
  left: 1rem;
  right: 1rem;
  color: var(--color-white-faint);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.testimonial-scroll-hint { display: none; }

@media (max-width: 900px) {
  .testimonials-intro { grid-template-columns: 1fr; gap: 1.25rem; }
  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .testimonial-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    margin-left: calc(var(--gutter) * -1);
    margin-right: calc(var(--gutter) * -1);
    padding: 0 var(--gutter) 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .testimonial-grid::-webkit-scrollbar { display: none; }
  .video-testimonial {
    flex: 0 0 min(64vw, 240px);
    scroll-snap-align: start;
  }
  .testimonial-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.6rem;
    margin-top: 0.4rem;
    color: var(--color-white-faint);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  .testimonial-scroll-hint span { color: var(--color-gold); font-size: 1rem; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding-top: clamp(5rem, 14vw, 9rem);
  padding-bottom: clamp(4rem, 10vw, 7rem);
  text-align: center;
  overflow: hidden;
}

.hero-constellation {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(720px, 90vw);
  opacity: 0.85;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

.hero-eyebrow {
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--color-gold-light);
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
  letter-spacing: 0.03em;
  margin-bottom: 1.75rem;
}

.hero h1 .accent { color: var(--color-gold-light); }

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--color-white);
  max-width: 560px;
  margin: 0 auto 2.75rem;
  font-weight: 400;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.95), 0 1px 3px rgba(0, 0, 0, 0.9);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ VALUE PROPS ============ */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-line);
  border: 1px solid var(--color-line);
  margin-top: 3.5rem;
}

.value-card {
  background: var(--color-bg);
  padding: 2.75rem 2.25rem;
}

.value-card .num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
  display: block;
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--color-white-dim);
  font-size: 0.95rem;
  font-weight: 300;
}

@media (max-width: 780px) {
  .value-grid { grid-template-columns: 1fr; }
}

/* ============ SECTION HEADER ============ */
.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.5rem;
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 1rem 0 1rem;
}
.section-head p {
  color: var(--color-white-dim);
  font-weight: 300;
  font-size: 1.05rem;
}

/* ============ PROCESS STEPS ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}
.step {
  position: relative;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-line);
}
.step .step-num {
  font-family: var(--font-display);
  color: var(--color-gold);
  font-size: 1.6rem;
  display: block;
  margin-bottom: 1rem;
}
.step p {
  color: var(--color-white-dim);
  font-weight: 300;
  font-size: 0.98rem;
}
@media (max-width: 780px) {
  .steps { grid-template-columns: 1fr; gap: 2.25rem; }
}

/* ============ BOOKING PANEL ============ */
.booking-panel {
  background: var(--color-bg-raised);
  border: 1px solid var(--color-line);
  border-radius: 24px;
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
}
.booking-panel h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 1rem; }
.booking-panel p { color: var(--color-white-dim); font-weight: 300; max-width: 480px; margin: 0 auto 2.25rem; }

/* ============ TEAM GRID ============ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.25rem;
  margin-top: 3rem;
}
.team-card {
  text-align: center;
  transition: transform 0.4s var(--ease);
}
.team-card:hover { transform: translateY(-6px); }

.team-photo {
  aspect-ratio: 3 / 3.6;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(155deg, #1c1712, #0a0a0a);
  border: 1px solid var(--color-line);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-photo .monogram {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--color-gold);
  letter-spacing: 0.05em;
}
.team-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}
.team-card .role {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.82);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
}

/* ============ MOTION ============ */
body.motion-ready .site-nav {
  opacity: 0;
  transform: translateY(-18px);
}

body.motion-ready.is-loaded .site-nav {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

body.motion-ready .hero-constellation {
  opacity: 0;
  transform: translateX(-50%) scale(0.84);
}

body.motion-ready.is-loaded .hero-constellation {
  opacity: 0.85;
  transform: translateX(-50%) scale(1);
  transition: opacity 1.4s var(--ease), transform 1.6s var(--ease);
}

body.motion-ready .hero-content > * {
  opacity: 0;
  transform: translateY(30px) scale(0.94);
}

body.motion-ready.is-loaded .hero-content > * {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.9s var(--ease), transform 1s var(--ease);
}

body.motion-ready.is-loaded .hero-content > :nth-child(1) { transition-delay: 0.12s; }
body.motion-ready.is-loaded .hero-content > :nth-child(2) { transition-delay: 0.28s; }
body.motion-ready.is-loaded .hero-content > :nth-child(3) { transition-delay: 0.42s; }

body.motion-ready .reveal-item {
  opacity: 0;
  transform: translateY(42px) scale(0.97);
  transition: opacity 0.85s var(--ease), transform 0.95s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

body.motion-ready .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  body.motion-ready .site-nav,
  body.motion-ready .hero-constellation,
  body.motion-ready .hero-content > *,
  body.motion-ready .reveal-item {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .team-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .team-card h3 { font-size: 1rem; }
}

/* ============ MARQUEE ============ */
.marquee-wrap {
  overflow: hidden;
  margin-top: 3rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 38s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-card {
  width: min(380px, 82vw);
  flex-shrink: 0;
  background: var(--color-bg-raised);
  border: 1px solid var(--color-line);
  border-radius: 16px;
  padding: 2.25rem;
}
.marquee-card h3 {
  font-size: 1.3rem;
  color: var(--color-gold-light);
  margin-bottom: 0.9rem;
}
.marquee-card p {
  font-size: 0.92rem;
  color: var(--color-white-dim);
  font-weight: 300;
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 780px;
  margin: 3rem auto 0;
  border-top: 1px solid var(--color-line);
}
.faq-item {
  border-bottom: 1px solid var(--color-line);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--color-white);
  font-family: var(--font-body);
  text-align: left;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  font-size: 1.02rem;
}
.faq-q .chev {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--color-gold);
  transition: transform 0.3s var(--ease);
}
.faq-item[open] .faq-q .chev { transform: rotate(180deg); }
.faq-a {
  padding: 0 0 1.75rem;
  color: var(--color-white-dim);
  font-weight: 300;
  font-size: 0.96rem;
  max-width: 680px;
}
.faq-item summary::-webkit-details-marker { display: none; }

/* ============ CONTACT ============ */
.contact-section {
  position: relative;
  background: var(--color-bg-raised);
  overflow: hidden;
}
.contact-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(201,161,91,0.14), transparent 55%);
}
.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-info h2 { font-size: clamp(1.9rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
.contact-info .lead { color: var(--color-white-dim); font-weight: 300; margin-bottom: 2rem; }
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2rem;
}
.contact-detail a, .contact-detail span {
  font-size: 0.98rem;
  color: var(--color-white-dim);
}
.contact-detail a:hover { color: var(--color-gold-light); }
.contact-info .sub-heading {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--color-gold-light);
}

.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-form label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white-faint);
  margin-bottom: 0.4rem;
  display: block;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--color-line);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s var(--ease);
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--color-gold);
  outline: none;
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.form-status { font-size: 0.85rem; color: var(--color-gold-light); min-height: 1.2em; }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============ FOOTER ============ */
.site-footer {
  border-top: 1px solid var(--color-line);
  padding: 3.5rem 0;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.24em;
  color: var(--color-gold-light);
}
.footer-copy {
  font-size: 0.82rem;
  color: var(--color-white-faint);
  margin-top: 0.6rem;
}
.footer-links {
  display: flex;
  gap: 3rem;
}
.footer-col { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a {
  font-size: 0.85rem;
  color: var(--color-white-dim);
}
.footer-col a:hover { color: var(--color-gold-light); }

/* ============ INNER PAGE HERO (small) ============ */
.page-hero {
  padding-top: clamp(3.5rem, 8vw, 5.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}
.page-hero p {
  color: var(--color-white-dim);
  font-weight: 300;
  max-width: 560px;
  margin: 1.25rem auto 0;
}

/* ============ BIO PAGE ============ */
.bio-hero {
  padding-top: clamp(3rem, 7vw, 5rem);
  padding-bottom: 2rem;
}
.bio-top {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3.5rem;
  align-items: start;
}
.bio-photo {
  aspect-ratio: 3/3.7;
  border-radius: 16px;
  border: 1px solid var(--color-line);
  background: linear-gradient(155deg, #1c1712, #0a0a0a);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bio-photo img { width: 100%; height: 100%; object-fit: cover; }
.bio-photo .monogram { font-family: var(--font-display); font-size: 4rem; color: var(--color-gold); }
.bio-role { color: var(--color-gold); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.75rem; display: block; }
.bio-name { font-size: clamp(2.2rem, 4.5vw, 3.2rem); margin-bottom: 1.5rem; }
.bio-credentials {
  border-left: 2px solid var(--color-gold);
  padding-left: 1.5rem;
  color: var(--color-white-dim);
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.bio-narrative {
  color: var(--color-white-dim);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 2rem;
}
.bio-narrative p + p { margin-top: 1.15rem; }
.bio-narrative strong { color: var(--color-white); font-weight: 500; }
@media (max-width: 780px) {
  .bio-top { grid-template-columns: 1fr; gap: 2rem; }
  .bio-photo { max-width: 280px; }
}

/* ============ TERMS ============ */
.terms-body {
  max-width: 760px;
  margin: 0 auto;
}
.terms-body h2 {
  font-size: 1.35rem;
  color: var(--color-gold-light);
  margin: 2.5rem 0 0.9rem;
}
.terms-body h2:first-of-type { margin-top: 0; }
.terms-body p {
  color: var(--color-white-dim);
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
  white-space: pre-line;
}
.terms-intro {
  color: var(--color-white-dim);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ============ MISC ============ */
.center-link {
  display: block;
  text-align: center;
  margin-top: 3rem;
  color: var(--color-gold-light);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.center-link:hover { text-decoration: underline; }
.text-gold { color: var(--color-gold-light); }

.checklist {
  max-width: 680px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.checklist-item {
  display: flex;
  gap: 1.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-line);
}
.checklist-item .n {
  font-family: var(--font-display);
  color: var(--color-gold);
  font-size: 1.4rem;
  flex-shrink: 0;
}
.checklist-item p { color: var(--color-white-dim); font-weight: 300; line-height: 1.75; }

/* ============ DR. MAARTJE INTRODUCTION ============ */
.intro-hero { padding-bottom: clamp(2.75rem, 6vw, 4.5rem); }
.intro-video-card {
  width: min(300px, 100%);
  margin: 0 auto;
}
.intro-video-card .testimonial-cover img { object-position: center center; }
.video-modal--landscape .video-modal-frame { width: min(960px, 92vw); height: auto; aspect-ratio: 16 / 9; }
.program-intro-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(240px, 300px); gap: clamp(2.5rem, 8vw, 7rem); align-items: center; }
.program-intro-copy { max-width: 680px; }
.program-intro-copy h2 { margin: .8rem 0 1.15rem; font-size: clamp(2.3rem, 5vw, 4.2rem); }
.program-intro-copy > p:not(.eyebrow) { margin-bottom: 1.8rem; color: var(--color-white-dim); font-weight: 300; font-size: 1.05rem; line-height: 1.8; }
.program-intro-cover { justify-self: end; text-decoration: none; }
.intro-split { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2.5rem, 7vw, 6rem); align-items: start; }
.intro-split h2 { margin: .8rem 0 1.3rem; font-size: clamp(2rem, 4vw, 3rem); }
.intro-lead { color: var(--color-white-dim); font-weight: 300; font-size: 1.05rem; line-height: 1.85; }
.credential-panel { padding: clamp(1.5rem, 4vw, 2.4rem); border: 1px solid var(--color-line); border-radius: 18px; background: rgba(255,255,255,.025); }
.credential-panel p { color: var(--color-white-dim); font-weight: 300; line-height: 1.8; }
.credential-panel p + p { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--color-line); }
.credential-panel strong { color: var(--color-gold-light); font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; }
.intro-expectations { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.25rem; }
.intro-card { padding: clamp(1.5rem, 4vw, 2.25rem); border: 1px solid var(--color-line); border-radius: 16px; background: linear-gradient(145deg, rgba(201,161,91,.055), rgba(255,255,255,.018)); }
.intro-card > span { color: var(--color-gold); font-size: .75rem; letter-spacing: .16em; }
.intro-card h3 { margin: .75rem 0 .65rem; color: var(--color-gold-light); font-size: 1.35rem; }
.intro-card p { color: var(--color-white-dim); font-weight: 300; line-height: 1.75; }
.outcome-panel { max-width: 820px; text-align: center; }
.outcome-number { margin: .4rem 0 -.25rem; color: var(--color-gold-light); font-family: var(--font-display); font-size: clamp(5rem, 14vw, 9rem); line-height: 1; }
.outcome-panel h2 { margin-bottom: 1.25rem; font-size: clamp(2rem, 4vw, 2.8rem); }
.outcome-panel > p:not(.eyebrow):not(.outcome-number) { color: var(--color-white-dim); font-weight: 300; line-height: 1.85; }
.outcome-panel .outcome-note { margin-top: 1.2rem; color: var(--color-white-faint); font-size: .78rem; }
.intro-closing { max-width: 760px; text-align: center; }
.intro-closing h2 { margin: .85rem 0 1rem; font-size: clamp(2rem, 4.5vw, 3.25rem); }
.intro-closing > p:not(.eyebrow) { margin-bottom: 2rem; color: var(--color-white-dim); font-weight: 300; font-size: 1.05rem; line-height: 1.8; }
.bio-actions { display: flex; flex-wrap: wrap; gap: .85rem; }

@media (max-width: 760px) {
  .intro-split { grid-template-columns: 1fr; }
  .intro-expectations { grid-template-columns: 1fr; }
  .intro-video-card { width: min(280px, 82vw); }
  .program-intro-grid { grid-template-columns: 1fr; }
  .program-intro-cover { width: min(280px, 82vw); justify-self: center; }
}
