/*
Theme Name: Aura Dance Academy
Theme URI: https://auradanceacademy.com
Author: BASEEK Creative
Description: Custom theme for Aura Dance Academy — Penang's Hip-hop, K-pop & Breakdance studio. Built to exactly reproduce the approved static HTML/CSS/JS design.
Version: 1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: aura-dance-academy
*/

/* ===================================================
/* ===================================================
   AURA DANCE ACADEMY — Homepage Styles
   Brand: #7c4fa4 (purple) / #ffffff / #000000
   Fonts: Outfit (Bold/Regular/Light), Biro Script Light (accent — swap in real font file)
=================================================== */

@font-face {
  font-family: 'Biro Script';
  src: url('assets/fonts/BiroScript.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --aura-purple: #7c4fa4;
  --aura-purple-light: #a97fd1;
  --aura-black: #000000;
  --aura-bg: #0a0a0a;
  --aura-bg-alt: #131313;
  --aura-white: #ffffff;
  --aura-grey: #9a9a9a;
  --aura-line: rgba(255,255,255,0.12);

  --tag-kids: #4CAF50;
  --tag-beginner: #4FC3E8;
  --tag-normal: #3B4A9E;
  --tag-intermediate: #7C4FA4;

  --font-display: 'Outfit', sans-serif;
  --font-script: 'Biro Script', 'Give You Glory', cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--aura-bg);
  color: var(--aura-white);
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--aura-purple-light);
  margin-bottom: 18px;
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--aura-white);
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-solid {
  background: var(--aura-white);
  color: var(--aura-black);
}
.btn-solid:hover { background: var(--aura-purple); border-color: var(--aura-purple); color: var(--aura-white); }

.btn-outline {
  background: transparent;
  color: var(--aura-white);
}
.btn-outline:hover { background: var(--aura-white); color: var(--aura-black); }

.btn-purple {
  background: var(--aura-purple);
  border-color: var(--aura-purple);
  color: var(--aura-white);
}
.btn-purple:hover { background: var(--aura-purple-light); border-color: var(--aura-purple-light); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.3s ease, padding 0.3s ease;
}
.site-header.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  border-bottom: 1px solid var(--aura-line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-lockup .logo-mark-icon { height: 32px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--aura-purple-light);
  transition: width 0.25s ease;
}
.main-nav a:hover::after { width: 100%; }
.main-nav a.is-current { color: var(--aura-purple-light); }
.main-nav a.is-current::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--aura-white); }

/* ---------- Fixed WhatsApp badge ---------- */
.whatsapp-badge {
  position: fixed;
  right: 28px;
  bottom: 26px;
  z-index: 95;
  text-align: right;
  line-height: 0.85;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.whatsapp-badge:hover { transform: scale(1.05); }
.wa-script {
  display: block;
  position: relative;
  z-index: 2;
  font-family: var(--font-script);
  font-size: 38px;
  font-weight: 300;
  color: var(--aura-purple-light);
  text-shadow: 0 2px 14px rgba(0,0,0,0.55);
  margin-bottom: -16px;
}
.wa-bold {
  display: block;
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 44px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aura-white);
  margin-top: -4px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 90px;
}
.hero-content .eyebrow { color: var(--aura-white); opacity: 0.85; }
.hero-title {
  font-size: clamp(48px, 9vw, 130px);
  line-height: 0.95;
  font-weight: 700;
  margin-bottom: 26px;
}
.hero-title span { color: var(--aura-purple-light); }
.hero-sub {
  max-width: 480px;
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 32px;
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 10px;
}
.scroll-cue::after {
  content: '';
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.4);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.1% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Hero reveal (headline appears after the video) ---------- */
.hero-reveal {
  background: linear-gradient(180deg, #000000 0%, var(--aura-bg) 100%);
  padding: 110px 0 130px;
}
.hero-reveal-inner { max-width: 760px; }

/* ---------- Scroll-scrubbed heading text reveal ---------- */
.fx-heading {
  --fx-color: #ffffff;
  --reveal: 0%;
  background-image: linear-gradient(90deg,
    var(--fx-color) 0%,
    var(--fx-color) var(--reveal),
    rgba(255,255,255,0.16) var(--reveal),
    rgba(255,255,255,0.16) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.fx-heading.fx-accent { --fx-color: var(--aura-purple-light); }

/* ---------- Scroll reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.class-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.class-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.class-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.testi-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.testi-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.crew-duo-grid .reveal:nth-child(2) { transition-delay: 0.12s; }
.events-scroll .reveal:nth-child(2) { transition-delay: 0.08s; }
.events-scroll .reveal:nth-child(3) { transition-delay: 0.16s; }
.events-scroll .reveal:nth-child(4) { transition-delay: 0.24s; }

/* ---------- Section shells ---------- */
section { position: relative; padding: 130px 0; }
.section-alt { background: var(--aura-bg-alt); }
.section-head { max-width: 640px; margin-bottom: 64px; }
.section-head h2 { font-size: clamp(34px, 4vw, 56px); line-height: 1.05; }
.section-head p { margin-top: 20px; color: var(--aura-grey); font-size: 16px; max-width: 520px; }
.section-foot { margin-top: 56px; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}
.about-media { position: relative; min-width: 0; }
.about-media img { border-radius: 4px; width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-media .frame-tag {
  position: absolute;
  bottom: -24px; left: -24px;
  background: var(--aura-purple);
  padding: 18px 26px;
  border-radius: 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about-copy p { color: rgba(255,255,255,0.8); font-size: 16px; margin-bottom: 20px; font-weight: 300; }
.about-stats {
  display: flex;
  gap: 44px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--aura-line);
}
.about-stats .stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  color: var(--aura-purple-light);
  display: block;
}
.about-stats .stat-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aura-grey);
}

/* ---------- Class categories ---------- */
.class-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.class-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  background: #1a1a1a;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  isolation: isolate;
  transition: transform 0.35s ease;
}
.class-card:hover { transform: translateY(-8px); }
.class-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.6s ease;
}
.class-card:hover img { transform: scale(1.08); }
.class-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.9) 90%);
  z-index: -1;
}
.class-tag {
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.tag-kids { background: var(--tag-kids); }
.tag-beginner { background: var(--tag-beginner); color: #04222e; }
.tag-normal { background: var(--tag-normal); }
.tag-intermediate { background: var(--tag-intermediate); }

.class-card h3 { font-size: 22px; margin-bottom: 6px; }
.class-card p { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 300; }

/* ---------- Sticky scroll-pinned class tabs ---------- */
.sticky-tabs-height {
  position: relative;
  height: 400vh; /* 100vh per tab (4 tabs) */
}
.sticky-tabs-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.sticky-tabs-inner {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 70px;
  align-items: center;
  width: 100%;
}
.sticky-tabs-left { display: flex; flex-direction: column; }
.tab-item {
  padding: 26px 0;
  border-bottom: 1px solid var(--aura-line);
  opacity: 0.35;
  transition: opacity 0.4s ease;
  cursor: default;
}
.tab-item:first-child { padding-top: 0; }
.tab-item.is-active { opacity: 1; }
.tab-item-mobile-media { display: none; }
.tab-item h3 { font-size: clamp(24px, 2.6vw, 32px); margin: 10px 0 0; }
.tab-item p {
  font-size: 14px;
  color: var(--aura-grey);
  font-weight: 300;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.4s ease, margin 0.45s ease;
}
.tab-item.is-active p { max-height: 140px; opacity: 1; margin-top: 10px; }

.sticky-tabs-right {
  position: relative;
  aspect-ratio: 4/5;
  max-height: 70vh;
  border-radius: 4px;
  overflow: hidden;
}
.tab-media {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.tab-media.is-active { opacity: 1; }
.tab-media img { width: 100%; height: 100%; object-fit: cover; }
.tab-progress {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.tab-progress-dot {
  width: 22px; height: 3px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  transition: background 0.3s ease;
}
.tab-progress-dot.is-active { background: var(--aura-purple-light); }

/* ---------- Dance Crew (Xeno / Luxyna) ---------- */
.crew-duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.crew-duo-card {
  background: var(--aura-bg);
  border: 1px solid var(--aura-line);
  border-radius: 4px;
  overflow: hidden;
}
.crew-duo-media { aspect-ratio: 4/3; overflow: hidden; }
.crew-duo-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.crew-duo-card:hover .crew-duo-media img { transform: scale(1.06); }
.crew-duo-body { padding: 32px; }
.crew-duo-body h3 {
  font-size: 36px;
  letter-spacing: 0.03em;
  margin: 10px 0 14px;
  color: var(--aura-white);
}
.crew-duo-body p { color: rgba(255,255,255,0.8); font-size: 15px; font-weight: 300; margin-bottom: 16px; }
.crew-tag {
  display: inline-block;
  font-size: 11px;
  color: var(--aura-grey);
  border-left: 2px solid var(--aura-purple);
  padding-left: 10px;
}

/* ---------- Crew feature (full crew page) ---------- */
.crew-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  padding: 100px 0;
  border-bottom: 1px solid var(--aura-line);
}
.crew-feature:last-child { border-bottom: none; }
.crew-feature.is-reverse .crew-feature-media { order: 2; }
.crew-feature.is-reverse .crew-feature-body { order: 1; }
.crew-feature-media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
}
.crew-feature-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.crew-feature-media .frame-tag {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(6px);
  padding: 8px 16px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--aura-line);
  border-radius: 999px;
}
.crew-feature-body h2 {
  font-size: clamp(44px, 6vw, 84px);
  line-height: 0.95;
  margin: 14px 0 22px;
}
.crew-feature-body > p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  font-weight: 300;
  max-width: 480px;
  margin-bottom: 30px;
}
.crew-achievements {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}
.crew-achievements li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--aura-line);
}
.crew-achievements li .ach-mark { color: var(--aura-purple-light); font-size: 16px; }
.crew-achievements li .ach-todo { color: var(--aura-grey); font-style: italic; font-weight: 300; }

.crew-section { padding-top: 0; }
.crew-section + .crew-section { margin-top: 100px; }

/* ---------- Crew poster header (full-bleed image + huge overlapping title) ---------- */
.crew-poster {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
}
.crew-poster-media { position: absolute; inset: 0; }
.crew-poster-media img { width: 100%; height: 100%; object-fit: cover; }
.crew-poster-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.15) 0%, rgba(10,10,10,0.35) 55%, var(--aura-bg) 96%);
}
.crew-poster-title {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 0 24px;
}
.crew-poster-title h2 {
  font-size: clamp(90px, 16vw, 260px);
  line-height: 0.82;
  letter-spacing: -0.01em;
  color: var(--aura-white);
  text-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.crew-poster-tagline {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  padding: 22px 0 0;
  flex-wrap: wrap;
}
.crew-poster-tagline .eyebrow { margin-bottom: 0; }
.crew-poster-tagline p {
  max-width: 420px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  text-align: right;
}

/* ---------- Crew stats + copy row ---------- */
.crew-info-row {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 60px;
  padding: 70px 0;
  align-items: start;
}
.crew-info-row p {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  font-weight: 300;
  max-width: 540px;
}
.crew-stat-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.crew-stat-strip div { border-left: 2px solid var(--aura-purple); padding-left: 16px; }
.crew-stat-strip .stat-num { font-size: 32px; font-weight: 700; display: block; }
.crew-stat-strip .stat-label { font-size: 12px; color: var(--aura-grey); text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------- Crew achievements (used standalone too) ---------- */
.crew-achievements {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 30px 0;
}
.crew-achievements li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--aura-line);
}
.crew-achievements li .ach-mark { color: var(--aura-purple-light); font-size: 16px; }
.crew-achievements li .ach-todo { color: var(--aura-grey); font-style: italic; font-weight: 300; }

/* ---------- Member grid (roster) ---------- */
.member-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.member-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
  background: #161616;
}
.member-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.15);
  transition: transform 0.5s ease, filter 0.5s ease;
}
.member-card:hover img { transform: scale(1.06); filter: grayscale(0); }
.member-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.88) 100%);
}
.member-card-label {
  position: absolute;
  left: 16px; bottom: 14px;
  z-index: 2;
  font-size: 12.5px;
  letter-spacing: 0.04em;
}
.member-card-label .m-role { display: block; font-size: 10.5px; color: var(--aura-grey); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 2px; }

/* ---------- Crew split-screen intro ---------- */
.crew-split {
  position: relative;
  height: 92vh;
  min-height: 620px;
  display: flex;
}
.crew-split-group {
  position: relative;
  width: 53%;
  height: 100%;
}
.crew-split-group.group-right { margin-left: -6%; }
.crew-split-panel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.crew-split-panel img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(1.1);
}
.crew-split-panel.panel-left { clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%); z-index: 2; }
.crew-split-panel.panel-right { clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%); }
.crew-split-divider {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--aura-purple);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.05em;
  box-shadow: 0 0 0 8px var(--aura-bg);
}
.crew-split-name {
  position: absolute;
  z-index: 3;
  bottom: 60px;
  font-size: clamp(48px, 8vw, 130px);
  line-height: 0.88;
  text-shadow: 0 10px 40px rgba(0,0,0,0.6);
}
.crew-split-name.n-left { left: 40px; }
.crew-split-name.n-right { right: 40px; text-align: right; }
.crew-split-tag {
  position: absolute;
  z-index: 3;
  top: 40px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.crew-split-tag.t-left { left: 40px; }
.crew-split-tag.t-right { right: 40px; }

/* ---------- Crew info — asymmetric offset cards ---------- */
.crew-offset-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.crew-offset-card.is-drop { margin-top: 64px; }
.crew-offset-card {
  border: 1px solid var(--aura-line);
  border-radius: 4px;
  padding: 40px;
  background: var(--aura-bg-alt);
}
.crew-offset-card p { color: rgba(255,255,255,0.78); font-size: 15px; font-weight: 300; margin-bottom: 24px; }
.crew-offset-card .crew-stat-strip { margin-bottom: 24px; }

/* ---------- Folder cards (hover to reveal roster) ---------- */
.folder-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 20px;
}
.folder-card {
  position: relative;
  cursor: pointer;
  border: 1px solid var(--aura-line);
  border-radius: 4px;
  background: var(--aura-bg-alt);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.folder-card:hover, .folder-card.is-active {
  transform: translateY(-6px);
  border-color: var(--aura-purple);
}
.folder-tab {
  position: absolute;
  top: 0; left: 32px;
  z-index: 3;
  background: var(--aura-purple);
  color: var(--aura-white);
  padding: 10px 20px 8px;
  border-radius: 0 0 6px 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateY(-4px);
  transition: transform 0.3s ease;
}
.folder-card:hover .folder-tab, .folder-card.is-active .folder-tab { transform: translateY(0); }
.folder-media { aspect-ratio: 16/9; overflow: hidden; }
.folder-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.folder-card:hover .folder-media img, .folder-card.is-active .folder-media img { transform: scale(1.05); }
.folder-body { padding: 30px; }
.folder-body h3 { font-size: 32px; margin-bottom: 10px; }
.folder-body p { color: rgba(255,255,255,0.75); font-size: 14px; font-weight: 300; margin-bottom: 18px; }
.folder-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aura-purple-light);
}
.folder-hint::after {
  content: '↓';
  transition: transform 0.3s ease;
}
.folder-card:hover .folder-hint::after, .folder-card.is-active .folder-hint::after { transform: translateY(3px); }

/* ---------- 3D card selector (click Xeno/Luxyna) ---------- */
.card-select-wrap {
  position: relative;
  height: 460px;
  margin: 10px auto 50px;
  perspective: 1400px;
}
.card-select {
  position: absolute;
  top: 50%; left: 50%;
  margin: -195px 0 0 -140px;
  width: 280px;
  height: 390px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), filter 0.5s ease;
  box-shadow: 0 26px 55px rgba(0,0,0,0.55);
}
.card-select img { width: 100%; height: 100%; object-fit: cover; }
.card-select::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.8) 100%);
}
.card-select-label {
  position: absolute;
  left: 18px; bottom: 16px;
  z-index: 2;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.card-select.pos-front { transform: translate(-90px, 0) rotateY(0deg) scale(1); filter: brightness(1); z-index: 3; }
.card-select.pos-back { transform: translate(110px, 14px) rotateY(-24deg) scale(0.84); filter: brightness(0.42); z-index: 2; }

.crew-info-panel { text-align: center; max-width: 420px; margin: 0 auto; }
.crew-info-panel h3 { font-size: 34px; margin-bottom: 10px; }
.crew-info-panel .eyebrow { margin-bottom: 10px; }
.crew-info-panel .crew-member-tag { font-size: 14px; letter-spacing: 0.04em; color: var(--aura-purple-light); margin-bottom: 4px; }
.crew-info-panel .crew-stat-strip { justify-content: center; margin: 20px auto; max-width: 320px; }

/* ---------- Split-screen crew hero: stats + member cycler (left) / big group photo (right) ---------- */
.crew-split-hero {
  display: flex;
  align-items: stretch;
  min-height: 100vh;
  padding: 0;
}
.crew-split-left {
  flex: 0 0 44%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 8vh, 84px) 56px clamp(12px, 2.5vh, 24px);
}
.crew-split-left h1 { font-size: clamp(24px, 2.5vw, 38px); margin-bottom: clamp(10px, 1.5vh, 16px); white-space: nowrap; }

.crew-stat-row { display: flex; gap: 44px; margin-bottom: clamp(10px, 2vh, 20px); }
.crew-stat-row .stat-num { font-family: var(--font-display); font-size: clamp(28px, 3.5vh, 40px); font-weight: 900; display: block; line-height: 1; }
.crew-stat-row .stat-label { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 6px; display: block; }

.crew-hero-right {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background: var(--aura-bg);
}
.crew-hero-right img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.4s ease;
}
.crew-hero-content {
  position: absolute;
  right: 48px; top: clamp(90px, 12vh, 130px);
  z-index: 2;
  max-width: 70%;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.crew-hero-content .eyebrow { display: block; margin-bottom: 10px; }
.crew-hero-content h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 24px;
}
.crew-hero-switch {
  position: absolute;
  bottom: clamp(50px, 8vh, 90px); right: 48px;
  z-index: 2;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(14px, 1.6vw, 20px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: color 0.3s ease;
}
.crew-hero-switch:hover { color: rgba(255,255,255,0.75); }

/* ---------- Stacked-photo member cycler (click or scroll to switch, no page scroll) ---------- */
.crew-stack-wrap {
  position: relative;
  height: clamp(340px, 58vh, 480px);
  width: 100%;
  max-width: 440px;
  margin-left: 120px;
  perspective: 1200px;
}
.crew-stack { position: relative; width: 100%; height: 100%; }
.crew-stack-card {
  position: absolute;
  top: 50%; left: 0;
  height: 92%;
  width: 78%;
  max-width: 280px;
  transform-origin: center;
  margin-top: -46%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 26px 55px rgba(0,0,0,0.55);
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), filter 0.5s ease, opacity 0.4s ease;
}
.crew-stack-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.crew-stack-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.8) 100%);
}
.crew-stack-label {
  position: absolute;
  left: 16px; bottom: 14px;
  z-index: 5;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--aura-white);
}
.crew-stack-card.pos-0 { transform: translate(0,0) rotateY(0deg) scale(1); filter: brightness(1); z-index: 4; opacity: 1; cursor: pointer; }
.crew-stack-card.pos-1 { transform: translate(30%, 4%) rotateY(-18deg) scale(0.86); filter: brightness(0.55); z-index: 3; opacity: 1; pointer-events: none; }
.crew-stack-card.pos-2 { transform: translate(54%, 7%) rotateY(-28deg) scale(0.74); filter: brightness(0.3); z-index: 2; opacity: 1; pointer-events: none; }
.crew-stack-card.pos-prev { transform: translate(-30%, 4%) rotateY(18deg) scale(0.86); filter: brightness(0.55); z-index: 3; opacity: 1; pointer-events: none; }
.crew-stack-card.pos-hidden { transform: translate(70%, 10%) rotateY(-34deg) scale(0.6); filter: brightness(0.2); z-index: 1; opacity: 0; pointer-events: none; }

.stack-hint {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
  margin-top: clamp(8px, 1.5vh, 16px);
}

/* ---------- Fan-deck member reveal (scroll-triggered) ---------- */
.fan-deck-group { margin-top: 90px; }
.fan-deck-heading {
  text-align: center;
  margin-bottom: 30px;
}
.fan-deck-heading h4 { font-size: 24px; letter-spacing: 0.03em; }
.fan-deck-heading span {
  display: block;
  margin-top: 6px;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 13px;
  color: var(--aura-grey);
}
.fan-deck {
  position: relative;
  height: 400px;
  max-width: 960px;
  margin: 0 auto;
}
.fan-card {
  position: absolute;
  top: 50%; left: 50%;
  width: 190px;
  aspect-ratio: 3/4;
  margin: -140px 0 0 -95px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 44px rgba(0,0,0,0.55);
  transition: transform 1s cubic-bezier(0.16,1,0.3,1), opacity 0.6s ease;
  opacity: 0.6;
  background: #161616;
}
.fan-card img { width: 100%; height: 100%; object-fit: cover; }
.fan-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.88) 100%);
}
.fan-card-label {
  position: absolute;
  left: 14px; bottom: 12px;
  z-index: 2;
  font-size: 13px;
}
.fan-card-label .m-role { display: block; font-size: 10px; color: var(--aura-grey); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 2px; }

.fan-card:nth-child(1) { transform: translate(-6px,-4px) rotate(-4deg) scale(0.8); z-index: 1; }
.fan-card:nth-child(2) { transform: translate(4px,2px) rotate(3deg) scale(0.8); z-index: 2; }
.fan-card:nth-child(3) { transform: translate(-2px,4px) rotate(-2deg) scale(0.8); z-index: 3; }
.fan-card:nth-child(4) { transform: translate(3px,-3px) rotate(4deg) scale(0.8); z-index: 2; }
.fan-card:nth-child(5) { transform: translate(-4px,1px) rotate(-3deg) scale(0.8); z-index: 1; }
.fan-card:nth-child(6) { transform: translate(2px,-2px) rotate(2deg) scale(0.8); z-index: 0; }

.fan-deck.in-view .fan-card { opacity: 1; }
.fan-deck.in-view .fan-card:nth-child(1) { transform: translate(-420px,40px) rotate(-18deg) scale(0.92); transition-delay: 0s; }
.fan-deck.in-view .fan-card:nth-child(2) { transform: translate(-252px,12px) rotate(-11deg) scale(0.96); transition-delay: 0.05s; }
.fan-deck.in-view .fan-card:nth-child(3) { transform: translate(-84px,-6px) rotate(-4deg) scale(1); transition-delay: 0.1s; }
.fan-deck.in-view .fan-card:nth-child(4) { transform: translate(84px,-6px) rotate(4deg) scale(1); transition-delay: 0.15s; }
.fan-deck.in-view .fan-card:nth-child(5) { transform: translate(252px,12px) rotate(11deg) scale(0.96); transition-delay: 0.2s; }
.fan-deck.in-view .fan-card:nth-child(6) { transform: translate(420px,40px) rotate(18deg) scale(0.92); transition-delay: 0.25s; }

.scroll-prompt {
  text-align: center;
  margin-top: 34px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aura-grey);
}
.scroll-prompt::after { content: '↓'; display: block; margin-top: 6px; animation: bobArrow 1.8s ease-in-out infinite; }
@keyframes bobArrow { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ---------- Member roster — horizontal scroll, numbered tags ---------- */
.roster-scroll-group { margin-bottom: 70px; }
.roster-scroll-group:last-child { margin-bottom: 0; }
.roster-scroll-title {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 26px;
}
.roster-scroll-title h4 {
  font-size: 26px;
  letter-spacing: 0.03em;
}
.roster-scroll-title span {
  font-family: var(--font-display);
  font-weight: 300;
  text-transform: none;
  letter-spacing: normal;
  font-size: 13px;
  color: var(--aura-grey);
}
.roster-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
}
.roster-member {
  position: relative;
  flex: 0 0 auto;
  width: 220px;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
  scroll-snap-align: start;
  background: #161616;
}
.roster-member:nth-child(3n+2) { transform: translateY(28px); }
.roster-member img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.2);
  transition: transform 0.5s ease, filter 0.5s ease;
}
.roster-member:hover img { transform: scale(1.06); filter: grayscale(0); }
.roster-member::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.9) 100%);
}
.roster-member-index {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(10,10,10,0.7);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 700;
}
.roster-member-label {
  position: absolute;
  left: 14px; bottom: 12px;
  z-index: 2;
  font-size: 13px;
}
.roster-member-label .m-role { display: block; font-size: 10px; color: var(--aura-grey); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 2px; }

/* ---------- Events ---------- */
.events-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--aura-purple) transparent;
}
.event-card {
  flex: 0 0 320px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--aura-bg-alt);
  border: 1px solid var(--aura-line);
}
.event-card .event-media { aspect-ratio: 4/3; overflow: hidden; }
.event-card img { width: 100%; height: 100%; object-fit: cover; }
.event-card .event-body { padding: 22px; }
.event-date {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aura-purple-light);
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.event-card h4 { font-size: 17px; margin-bottom: 8px; }
.event-card p { font-size: 13px; color: var(--aura-grey); font-weight: 300; }

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi-card {
  background: var(--aura-bg-alt);
  border: 1px solid var(--aura-line);
  border-radius: 4px;
  padding: 34px;
}
.testi-quote { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.88); margin-bottom: 26px; }
.testi-person { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--aura-purple);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
}
.testi-name { font-size: 14px; font-weight: 600; }
.testi-role { font-size: 12px; color: var(--aura-grey); }
.placeholder-note {
  margin-top: 40px;
  font-size: 12px;
  color: var(--aura-grey);
  border-left: 2px solid var(--aura-purple);
  padding-left: 14px;
}

/* ---------- Instagram ---------- */
.ig-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
.ig-tile {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  background: #161616;
}
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.ig-tile:hover img { transform: scale(1.08); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--aura-black);
  border-top: 1px solid var(--aura-line);
  padding: 90px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
}
.footer-brand img { height: 40px; margin-bottom: 20px; }
.footer-brand p { color: var(--aura-grey); font-size: 14px; max-width: 280px; font-weight: 300; }
.footer-col h5 {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aura-grey);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.85); }
.footer-col a:hover { color: var(--aura-purple-light); }
.footer-social { display: flex; gap: 14px; margin-top: 22px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--aura-line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.footer-social a:hover { border-color: var(--aura-purple); background: var(--aura-purple); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  border-top: 1px solid var(--aura-line);
  font-size: 12px;
  color: var(--aura-grey);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Inner page hero (Classes, About, etc.) ---------- */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.6);
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.25) 40%, var(--aura-bg) 100%);
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 56px;
}
.page-hero .eyebrow { color: var(--aura-white); opacity: 0.85; }
.page-hero h1 {
  font-size: clamp(40px, 7vw, 88px);
  line-height: 0.98;
}
.page-hero p {
  margin-top: 18px;
  max-width: 560px;
  color: rgba(255,255,255,0.78);
  font-size: 16px;
}

/* ---------- Difficulty legend ---------- */
.legend-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.legend-card {
  background: var(--aura-bg-alt);
  border: 1px solid var(--aura-line);
  border-radius: 4px;
  padding: 26px 24px;
}
.legend-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  margin-bottom: 16px;
}
.legend-card h4 {
  font-size: 14px;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.legend-card p {
  font-size: 13.5px;
  color: var(--aura-grey);
  font-weight: 300;
  line-height: 1.55;
}

/* ---------- Weekly schedule ---------- */
.schedule-list {
  display: flex;
  flex-direction: column;
}
.schedule-day {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--aura-line);
}
.schedule-day:first-child { padding-top: 0; }
.schedule-day-label {
  font-size: 22px;
  letter-spacing: 0.04em;
  padding-top: 4px;
}
.schedule-day-label span {
  display: block;
  margin-top: 6px;
  font-family: var(--font-display);
  font-weight: 300;
  text-transform: none;
  letter-spacing: normal;
  font-size: 13px;
  color: var(--aura-grey);
}
.schedule-rows { display: flex; flex-direction: column; gap: 18px; }
.schedule-row {
  display: grid;
  grid-template-columns: 140px 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  background: var(--aura-bg-alt);
  border-radius: 4px;
  transition: transform 0.25s ease, background 0.25s ease;
}
.schedule-row:hover { transform: translateX(6px); background: #191919; }
.schedule-time {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--aura-purple-light);
  font-weight: 700;
}
.schedule-name-wrap h4 {
  font-size: 16px;
  margin-bottom: 4px;
}
.schedule-name-wrap span {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  text-transform: none;
  letter-spacing: normal;
  font-size: 12.5px;
  color: var(--aura-grey);
}
.schedule-instructor {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}
.schedule-row .class-tag { margin-bottom: 0; white-space: nowrap; }

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
  padding: 100px 0;
}
.cta-band h2 { font-size: clamp(32px, 5vw, 56px); margin-bottom: 20px; }
.cta-band p { color: var(--aura-grey); max-width: 480px; margin: 0 auto 34px; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  /* The pinned scroll-scrub interaction doesn't translate to small screens —
     below this breakpoint we drop the sticky pin entirely and show every tab
     in normal flow, each with its own small photo, so nothing scrolls out of view. */
  .sticky-tabs-height { height: auto; }
  .sticky-tabs-sticky { position: static; height: auto; overflow: visible; }
  .sticky-tabs-inner { display: block; }
  .tab-item { opacity: 1; padding: 0 0 36px; cursor: auto; }
  .tab-item:first-child { padding-top: 0; }
  .tab-item:last-child { padding-bottom: 0; border-bottom: none; }
  .tab-item p { max-height: none; opacity: 1; margin-top: 10px; }
  .tab-item-mobile-media { display: block; aspect-ratio: 4/3; border-radius: 4px; overflow: hidden; margin-bottom: 18px; }
  .tab-item-mobile-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .sticky-tabs-right { display: none; }
  .crew-duo-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .legend-grid { grid-template-columns: 1fr 1fr; }
  .schedule-day { grid-template-columns: 1fr; gap: 14px; }
  .crew-feature { grid-template-columns: 1fr; gap: 36px; padding: 64px 0; }
  .crew-feature.is-reverse .crew-feature-media { order: 1; }
  .crew-feature.is-reverse .crew-feature-body { order: 2; }
  .crew-info-row { grid-template-columns: 1fr; gap: 32px; }
  .member-grid { grid-template-columns: repeat(3, 1fr); }
  .crew-poster-tagline { flex-direction: column; align-items: flex-start; }
  .crew-poster-tagline p { text-align: left; }
  .crew-offset-row { grid-template-columns: 1fr; gap: 24px; }
  .crew-offset-card.is-drop { margin-top: 0; }
  .roster-member:nth-child(3n+2) { transform: none; }
  .folder-row { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  section { padding: 80px 0; }
  .about-stats { flex-wrap: wrap; row-gap: 26px; column-gap: 32px; }
  .about-stats > div { flex: 0 0 calc(50% - 16px); }
  .class-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .whatsapp-badge { right: 18px; bottom: 18px; }
  .wa-script { font-size: 28px; }
  .wa-bold { font-size: 30px; letter-spacing: 1px; }
  .legend-grid { grid-template-columns: 1fr; }
  .schedule-row { grid-template-columns: 1fr; gap: 8px; text-align: left; }
  .schedule-row .class-tag { align-self: flex-start; }
  .page-hero { height: 46vh; min-height: 320px; }
  .member-grid { grid-template-columns: 1fr 1fr; }
  .crew-poster { min-height: 440px; }

  .card-select-wrap { height: 340px; margin-bottom: 30px; }
  .card-select { width: 200px; height: 280px; margin: -140px 0 0 -100px; }
  .card-select.pos-front { transform: translate(-46px, 0) rotateY(0deg) scale(1); }
  .card-select.pos-back { transform: translate(56px, 10px) rotateY(-20deg) scale(0.82); }

  .crew-split-hero { flex-direction: column; min-height: 0; }
  .crew-hero-right { order: -1; min-height: 62vh; }
  .crew-hero-right::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0) 45%, rgba(10,10,10,0.75) 82%, rgba(10,10,10,1) 100%);
    z-index: 1;
  }
  .crew-split-left { order: 1; padding: 28px 24px 28px; }
  .crew-split-left h1 { white-space: normal; }
  .crew-hero-content { right: 24px; top: 100px; bottom: auto; max-width: 80%; }
  .crew-hero-content h2 { font-size: clamp(36px, 10vw, 56px); margin-bottom: 48px; }
  .crew-hero-content .btn { padding: 11px 22px; font-size: 11px; }
  .crew-hero-switch { bottom: 24px; top: auto; right: 24px; font-size: 13px; }

  .crew-stack-wrap { height: 280px; max-width: 100%; margin-left: 0; margin-bottom: 14px; }
  .crew-toggle-btn { padding: 10px 22px; font-size: 12px; }

  .fan-deck { height: 300px; max-width: 100%; }
  .fan-card { width: 118px; margin: -88px 0 0 -59px; }
  .fan-deck.in-view .fan-card:nth-child(1) { transform: translate(-130px,26px) rotate(-16deg) scale(0.86); }
  .fan-deck.in-view .fan-card:nth-child(2) { transform: translate(-78px,8px) rotate(-9deg) scale(0.92); }
  .fan-deck.in-view .fan-card:nth-child(3) { transform: translate(-26px,-4px) rotate(-3deg) scale(0.98); }
  .fan-deck.in-view .fan-card:nth-child(4) { transform: translate(26px,-4px) rotate(3deg) scale(0.98); }
  .fan-deck.in-view .fan-card:nth-child(5) { transform: translate(78px,8px) rotate(9deg) scale(0.92); }
  .fan-deck.in-view .fan-card:nth-child(6) { transform: translate(130px,26px) rotate(16deg) scale(0.86); }
  .fan-deck-group { margin-top: 60px; }

  .crew-split { flex-direction: column; height: auto; min-height: 0; }
  .crew-split-group, .crew-split-group.group-right { width: 100%; height: 46vh; min-height: 300px; margin-left: 0; }
  .crew-split-panel.panel-left, .crew-split-panel.panel-right { clip-path: none; }
  .crew-split-name { font-size: clamp(40px, 15vw, 64px); bottom: 22px; }
  .crew-split-name.n-left, .crew-split-name.n-right { left: 18px; right: 18px; text-align: left; }
  .crew-split-tag.t-left, .crew-split-tag.t-right { left: 18px; right: 18px; top: 18px; }
  .crew-split-divider {
    position: absolute; top: 46vh; left: 50%;
    transform: translate(-50%, -50%);
    width: 46px; height: 46px; font-size: 10px; z-index: 6;
  }
  .roster-member { width: 160px; }
}

/* ---------- Instructors — alternating left/right rows ---------- */
#instructors { padding: 110px 0; }
.instructor-row {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 56px 0;
  border-bottom: 1px solid var(--aura-line);
}
.instructor-row:first-child { padding-top: 0; }
.instructor-row:last-child { border-bottom: none; padding-bottom: 0; }
.instructor-row:nth-child(even) { flex-direction: row-reverse; }
.instructor-photo {
  flex: 0 0 38%;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
}
.instructor-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.instructor-row:hover .instructor-photo img { transform: scale(1.04); }
.instructor-info { flex: 1; }
.instructor-info .eyebrow { margin-bottom: 14px; }
.instructor-info h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.instructor-info p { color: rgba(255,255,255,0.65); max-width: 480px; line-height: 1.7; }

@media (max-width: 768px) {
  #instructors { padding: 60px 0; }
  .instructor-row, .instructor-row:nth-child(even) {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: 36px 0;
  }
  .instructor-photo { flex-basis: auto; width: 100%; aspect-ratio: 4 / 3; }
  .instructor-info h2 { font-size: 34px; }
}

/* ---------- Events — timeline grouped by year ---------- */
#timeline { padding: 110px 0; }
.timeline-year {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  padding: 70px 0;
  border-bottom: 1px solid var(--aura-line);
}
.timeline-year:first-child { padding-top: 0; }
.timeline-year:last-child { border-bottom: none; padding-bottom: 0; }
.timeline-year-label { position: sticky; top: 120px; align-self: start; height: fit-content; }
.timeline-year-label .fx-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
}

.timeline-events { position: relative; display: flex; flex-direction: column; gap: 48px; }
.timeline-events::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 1px;
  background: var(--aura-line);
}
.timeline-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  padding-left: 40px;
}
.timeline-card::before {
  content: '';
  position: absolute;
  left: -5px; top: 50%;
  transform: translateY(-50%);
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--aura-purple-light);
  box-shadow: 0 0 0 4px var(--aura-bg);
}
.timeline-card-photo {
  flex: 0 0 240px;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
}
.timeline-card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.timeline-card:hover .timeline-card-photo img { transform: scale(1.05); }
.timeline-card-info { flex: 1; }
.timeline-card-info .eyebrow { margin-bottom: 10px; font-size: 12px; }
.timeline-card-info h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  margin-bottom: 10px;
}
.timeline-card-info p { color: rgba(255,255,255,0.6); max-width: 480px; line-height: 1.7; font-size: 15px; }

@media (max-width: 900px) {
  .timeline-year { grid-template-columns: 1fr; gap: 24px; }
  .timeline-year-label { position: static; }
}

@media (max-width: 768px) {
  #timeline { padding: 60px 0; }
  .timeline-year { padding: 44px 0; }
  .timeline-card { flex-direction: column; align-items: flex-start; padding-left: 24px; }
  .timeline-card-photo { flex-basis: auto; width: 100%; aspect-ratio: 16 / 10; }
}

/* ---------- Contact — form + details ---------- */
#contact-main { padding: 110px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
}
.contact-form h2, .contact-details h2 { margin-bottom: 32px; }
.contact-form label {
  display: block;
  margin-bottom: 22px;
}
.contact-form label span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--aura-line);
  color: var(--aura-white);
  font-family: var(--font-display);
  font-size: 16px;
  padding: 10px 0;
  resize: vertical;
  transition: border-color 0.25s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.3); }
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--aura-purple-light); }
.contact-form .btn { margin-top: 8px; }
.form-note {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.form-note.is-active { color: var(--aura-purple-light); }

.contact-details { border-left: 1px solid var(--aura-line); padding-left: 60px; }
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 0;
  border-bottom: 1px solid var(--aura-line);
  transition: opacity 0.25s ease;
}
.contact-item:hover { opacity: 0.7; }
.contact-item:first-of-type { padding-top: 0; }
.contact-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.contact-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}
.contact-cta { margin-top: 32px; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .contact-details { border-left: none; padding-left: 0; border-top: 1px solid var(--aura-line); padding-top: 48px; }
}

@media (max-width: 768px) {
  #contact-main { padding: 60px 0; }
}

/* ---------- Mobile nav (hamburger) ---------- */
.nav-toggle { position: relative; z-index: 210; }
.nav-toggle span { transition: transform 0.3s ease, opacity 0.3s ease; }
body.mobile-nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.mobile-nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.mobile-nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--aura-purple);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  padding: 100px 32px 60px;
  overflow-y: auto;
  visibility: hidden;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), visibility 0.5s;
}
body.mobile-nav-open .mobile-nav {
  visibility: visible;
  transform: translateX(0);
}
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(30px, 11vw, 52px);
  line-height: 1.22;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.25s ease;
}
.mobile-nav a::before {
  content: '';
  display: inline-block;
  width: 0;
  overflow: hidden;
  transition: width 0.25s ease;
}
.mobile-nav a.is-current { color: var(--aura-white); }
.mobile-nav a.is-current::before { content: '→'; width: auto; }
.mobile-nav-social {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}
.mobile-nav-social a {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  padding: 0;
  color: rgba(255,255,255,0.8);
}
body.mobile-nav-open { overflow: hidden; }

@media (min-width: 769px) {
  .mobile-nav { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
