/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Tokens ──────────────────────────────────────────────────── */
:root {
  --bg:      #0d0d0e;
  --bg-row:  rgba(255,255,255,0.025);
  --line:    rgba(255,255,255,0.09);
  --line-h:  rgba(255,255,255,0.18);
  --text:    #ededed;
  --text-2:  #888;
  --text-3:  #444;
  --accent:  #c9a96e;

  --display: 'Inter Tight', sans-serif;
  --body:    'Inter', sans-serif;

  --nav-h: 88px;
  --pad:   48px;
  --max-w: 1200px;
}

/* ── Base ────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Layout ──────────────────────────────────────────────────── */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ── Scroll reveal ───────────────────────────────────────────── */
.r {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.r.on { opacity: 1; transform: none; }
.r[data-d="1"] { transition-delay: 0.06s; }
.r[data-d="2"] { transition-delay: 0.12s; }
.r[data-d="3"] { transition-delay: 0.18s; }
.r[data-d="4"] { transition-delay: 0.24s; }
.r[data-d="5"] { transition-delay: 0.30s; }

/* ── Section header ──────────────────────────────────────────── */
.sec-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  margin-bottom: 0;
}
.sec-num  { font-family: var(--display); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--text-3); }
.sec-name { font-family: var(--display); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); }

/* ═══════════════════════════════════════════════════════════════
   NAV
════════════════════════════════════════════════════════════════ */
#nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 var(--pad);
  border-bottom: 1px solid transparent;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.6s ease, transform 0.6s ease, background 0.3s, border-color 0.3s;
}
#nav.visible { opacity: 1; transform: none; }
#nav.scrolled {
  background: rgba(13,13,14,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}

#nav .nav-inner {
  min-height: 0;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  color: var(--text);
}

#nav .nav-logo-image img {
  display: block;
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: none;
}

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links { margin-left: auto; }
#nav .nav-links a {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-3);
  transition: color 0.2s;
  text-transform: uppercase;
}
#nav .nav-links a:hover { color: var(--text); }
#nav .nav-links .nav-book {
  color: var(--accent);
  border: 1px solid rgba(201,169,110,0.3);
  background: transparent;
  padding: 6px 14px;
  border-radius: 100px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
#nav .nav-links .nav-book:hover {
  color: var(--bg);
  background: var(--accent);
  border-color: var(--accent);
  transform: none;
  opacity: 1;
}

.inner-nav .nav-links a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(237,237,237,0.75);
  transition: color 0.2s;
  text-transform: uppercase;
}
.inner-nav .nav-links a:hover { color: var(--text); }
.inner-nav .nav-links .nav-book {
  color: #111;
  border: 1px solid rgba(201,169,110,0.55);
  background: linear-gradient(135deg, rgba(201,169,110,0.96), rgba(226,197,141,0.96));
  padding: 7px 14px;
  border-radius: 100px;
  transition: opacity 0.2s, transform 0.2s;
}
.inner-nav .nav-links .nav-book:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════════
   INTRO STAGE
   Full-screen overlay. Stays fixed during the intro animation.
   JS removes it once the logo has landed.
════════════════════════════════════════════════════════════════ */
#intro-stage {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: var(--bg);
  pointer-events: none;
}
/* Once intro is done, fade out the stage entirely */
#intro-stage.done {
  opacity: 0;
  transition: opacity 0.5s ease 0.1s;
  pointer-events: none;
}

/* ── VIDEO CLIP TEXT ─────────────────────────────────────────── */
/*
  Two independent containers stacked via CSS grid.
  Each has its own video + one text span.
  mix-blend-mode: multiply on text: dark bg suppresses video outside
  letter shapes; white text lets video show through letters.
  Crossfade = opacity on the outer containers (no multiply compounding).
*/
/* #vt-wrap fills the full intro-stage so both stacked containers are viewport-sized */
#vt-wrap {
  display: grid;
  width: 100vw;
  height: 100vh;
}

.vt-outer {
  grid-area: 1 / 1;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  isolation: isolate;
  opacity: 0;
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1);
}

/* Artists: entrance animation (scale + fade in) */
#vt-artists {
  transform: scale(1.03) translateY(14px);
  transition: opacity 1.05s cubic-bezier(0.16,1,0.3,1) 0.42s,
              transform 1.05s cubic-bezier(0.16,1,0.3,1) 0.42s;
}
#vt-artists.visible { opacity: 1; transform: none; }

.vt-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.15);
  pointer-events: none;
}

/*
  .vt-text-layer covers the FULL container (inset: 0).
  mix-blend-mode: multiply + dark background applied here so:
    – dark bg × video ≈ black  everywhere outside letters
    – white text × video = video  inside letter shapes
  This prevents any video from leaking below/above the text element.
*/
.vt-text-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d0d0e;
  mix-blend-mode: multiply;
}

.vt-text {
  display: block;
  text-align: center;
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(80px, 13vw, 200px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  color: #ffffff;
  padding: 0 0.12em;
  user-select: none;
}


/* ── SCROLL HINT ─────────────────────────────────────────────── */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.scroll-hint.visible { opacity: 1; }
.scroll-hint.hiding  { opacity: 0; transition: opacity 0.35s ease; }

.scroll-hint-label {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
}
.scroll-hint-bar {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-3), transparent);
  transform-origin: top;
  animation: hint-drop 1.8s cubic-bezier(0.4,0,0.2,1) infinite;
}
@keyframes hint-drop {
  0%   { transform: scaleY(0); opacity: 0; }
  30%  { opacity: 1; }
  70%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}
.scroll-hint-arrows {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: -2px;
}
.scroll-hint-arrows span {
  display: block;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: var(--text-3);
  animation: swipe-up 1.45s ease-in-out infinite;
}
.scroll-hint-arrows span:nth-child(2) { animation-delay: 0.14s; }
.scroll-hint-arrows span:nth-child(3) { animation-delay: 0.28s; }
.scroll-hint.swipe-mode .scroll-hint-bar {
  display: none;
}
.scroll-hint.swipe-mode .scroll-hint-arrows {
  display: flex;
}
@keyframes swipe-up {
  0%   { opacity: 0; transform: translateY(8px); }
  35%  { opacity: 1; transform: translateY(2px); }
  100% { opacity: 0; transform: translateY(-8px); }
}

/* ═══════════════════════════════════════════════════════════════
   HERO (video bg, like about section)
════════════════════════════════════════════════════════════════ */
#hero {
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.about-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05) brightness(0.22);
}
.about-video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 20%, rgba(11,11,12,0.65) 100%),
    linear-gradient(to bottom, #0b0b0c 0%, transparent 18%, transparent 82%, #0b0b0c 100%);
}
#hero .wrap { position: relative; z-index: 1; }

.hero-brand {
  position: absolute;
  top: 8px;
  left: 50%;
  width: min(100%, var(--max-w));
  padding: 0 var(--pad);
  transform: translateX(-50%) translateY(-12px);
  opacity: 0;
  pointer-events: none;
  z-index: 1001;
  transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-brand.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.hero-brand-img {
  display: block;
  width: auto;
  height: 190px;
  max-width: min(60vw, 430px);
  object-fit: contain;
  opacity: 0;
  transform: translateY(10px) scale(0.94);
  filter: blur(6px) drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
}

.hero-brand.show .hero-brand-img {
  animation: hero-brand-reveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes hero-brand-reveal {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.94);
    filter: blur(6px);
  }
  70% {
    opacity: 1;
    transform: translateY(0) scale(1.02);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* ── About grid (shared) ─────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding-top: 56px;
}

.about-display {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(34px, 3.6vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.about-display em { font-style: italic; font-weight: 800; color: var(--text-2); }

.hero-headline { margin-top: 54px; }


.about-right { display: flex; flex-direction: column; gap: 16px; padding-top: 4px; }
.about-right p { font-size: 14.5px; line-height: 1.8; color: var(--text-2); font-weight: 300; }

.stats {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: start;
  gap: 0;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.stat { padding-right: 32px; }
.stat + .stat { padding-left: 32px; border-left: 1px solid var(--line); }
.stat-n {
  font-family: var(--display);
  font-weight: 900;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-l { font-size: 11px; color: var(--text-3); margin-top: 5px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }

/* ── Buttons ─────────────────────────────────────────────────── */
.hero-btns {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 100px;
  font-family: var(--body);
  font-size: 12.5px;
  font-weight: 500;
  transition: opacity 0.2s, color 0.2s, border-color 0.2s, background 0.2s;
  cursor: pointer;
  border: none;
}
.btn-pill.fill  { background: var(--text); color: var(--bg); }
.btn-pill.fill:hover { opacity: 0.82; }
.btn-pill.ghost { border: 1px solid var(--line); color: var(--text-2); background: transparent; }
.btn-pill.ghost:hover { border-color: var(--line-h); color: var(--text); }
.btn-pill.accent { background: var(--accent); color: var(--bg); }
.btn-pill.accent:hover { opacity: 0.85; }

/* ═══════════════════════════════════════════════════════════════
   IN-HERO BOOKING FLOW
════════════════════════════════════════════════════════════════ */
.hero-step { width: 100%; }

.hero-step-back {
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 36px;
  margin-left: clamp(22px, 3vw, 56px);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  cursor: pointer;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-step-back:hover { color: var(--text); }

.hero-step-header { margin-bottom: 40px; }
.hero-step-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.hero-step-title em { font-style: italic; color: var(--text-2); }

/* ── Program cards ───────────────────────────────────────────── */
.booking-program-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-top: 8px;
}
.booking-program-card {
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px;
  padding: 28px;
  background: rgba(255,255,255,0.055);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.2s, background 0.2s;
}
.booking-program-card:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.075);
}

.bpc-label {
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
}
.bpc-curriculum {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}
.bpc-curriculum li {
  font-size: 13.5px;
  color: var(--text-2);
  font-weight: 300;
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}
.bpc-curriculum li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--text-3);
  font-size: 10px;
  top: 3px;
}
.bpc-footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.bpc-price {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
}
.bpc-private {
  font-size: 11px;
  color: var(--text-3);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

/* ── Contact form ────────────────────────────────────────────── */
.booking-contact-form { max-width: 640px; }

/* ── Booking summary (step 3) ────────────────────────────────── */
.hero-booking-summary {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
}
.booking-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 20px;
  font-size: 13.5px;
  border-bottom: 1px solid var(--line);
}
.booking-summary-row:last-child { border-bottom: none; }
.booking-summary-row span:first-child {
  font-size: 10px;
  color: var(--text-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.booking-summary-row strong { color: var(--accent); font-weight: 700; }

/* ── Terms box ───────────────────────────────────────────────── */
.hero-terms-box {
  border-left: 2px solid var(--line);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
  max-width: 600px;
}
.hero-terms-box p {
  font-size: 13.5px;
  color: var(--text-2);
  font-weight: 300;
  line-height: 1.75;
}
.terms-agree {
  font-size: 12px !important;
  color: var(--text-3) !important;
  font-style: italic;
  margin-top: 4px;
}

/* ── QR layout (step 4) ──────────────────────────────────────── */
.hero-qr-layout {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
#hero-step-4 .hero-step-header {
  margin-top: clamp(82px, 12vh, 132px);
  margin-bottom: 28px;
}
#hero-step-4 .hero-step-title {
  font-size: clamp(30px, 3vw, 44px);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 700px) {
  .booking-program-cards { grid-template-columns: 1fr; }
  .hero-qr-layout { width: 100%; }
  #hero-step-4 .hero-step-header {
    margin-top: 0;
    margin-bottom: 24px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   CLASSES
════════════════════════════════════════════════════════════════ */
#classes { padding-bottom: 100px; min-height: 60svh; display: flex; flex-direction: column; justify-content: center; }

.v-row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: start;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  cursor: default;
  position: relative;
  transition: background 0.2s;
}
.v-row::before {
  content: '';
  position: absolute;
  inset: 0 calc(-1 * var(--pad));
  background: var(--bg-row);
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.v-row:hover::before { opacity: 1; }

.v-num  { font-family: var(--display); font-weight: 700; font-size: 12px; color: var(--text-3); letter-spacing: 0.06em; padding-top: 4px; }
.v-body { display: flex; flex-direction: column; gap: 10px; }
.v-name {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(20px, 2.2vw, 32px);
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
}
.v-desc { font-size: 13.5px; line-height: 1.7; color: var(--text-2); font-weight: 300; max-width: 560px; }

.class-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
}
.class-duration {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}
.class-price {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--accent);
}

.v-book-btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid var(--line);
  color: var(--text-2);
  transition: all 0.2s;
  white-space: nowrap;
  margin-top: 4px;
  flex-shrink: 0;
  background: transparent;
  cursor: pointer;
  font-family: var(--body);
}
.v-book-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ═══════════════════════════════════════════════════════════════
   GRADUATES PROMO
════════════════════════════════════════════════════════════════ */
#graduates { padding: 100px 0; min-height: 50svh; display: flex; flex-direction: column; justify-content: center; }
.grad-hero { padding: 60px 0; display: flex; flex-direction: column; gap: 24px; }
.hero-tagline {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-2);
  font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════════════════════ */
#contact { padding-bottom: 80px; min-height: 40svh; display: flex; flex-direction: column; justify-content: center; }

.contact-inner {
  padding: 80px 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}
.contact-display {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(40px, 5.5vw, 86px);
  line-height: 0.93;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.contact-display em { font-style: italic; font-weight: 800; color: var(--text-2); }

.contact-links { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; }
.c-btn {
  display: inline-block;
  padding: 11px 24px;
  border-radius: 100px;
  font-size: 13px;
  transition: all 0.2s;
}
.c-btn.fill    { background: var(--text); color: var(--bg); font-weight: 500; }
.c-btn.fill:hover { opacity: 0.84; }
.c-btn.outline { border: 1px solid var(--line); color: var(--text-2); }
.c-btn.outline:hover { border-color: var(--line-h); color: var(--text); }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--line);
  padding: 24px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
}
footer span { font-size: 11.5px; color: var(--text-3); font-family: var(--display); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }

body.hide-home-sections-booking #classes,
body.hide-home-sections-booking #graduates,
body.hide-home-sections-booking #contact,
body.hide-home-sections-booking footer,
body.hide-home-sections-login #classes,
body.hide-home-sections-login #graduates,
body.hide-home-sections-login #contact,
body.hide-home-sections-login footer {
  display: none;
}

/* ═══════════════════════════════════════════════════════════════
   BOOKING PAGE
════════════════════════════════════════════════════════════════ */
.page-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 60px) var(--pad) 80px;
}

.page-header { margin-bottom: 48px; }
.page-header h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.035em;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 12px;
}
.page-header h1 em { font-style: italic; color: var(--text-2); }
.page-header p { font-size: 14px; color: var(--text-2); font-weight: 300; line-height: 1.7; }

/* Class selection cards */
.class-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 40px;
}
.class-card {
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}
.class-card:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.075);
}
.class-card.selected {
  border-color: var(--accent);
  background: rgba(201,169,110,0.12);
}
.class-card input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.class-card-name {
  font-family: var(--display);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 4px;
}
.class-card-duration {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 12px;
}
.class-card-price {
  font-family: var(--display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--accent);
}

/* Form */
.booking-form { display: flex; flex-direction: column; gap: 16px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: var(--body);
  font-size: 14px;
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--line-h); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }
.form-group textarea { resize: vertical; min-height: 80px; }

.booking-form .form-group label,
.booking-contact-form .form-group label {
  color: rgba(237,237,237,0.72);
}
.booking-form .form-group input,
.booking-form .form-group textarea,
.booking-contact-form .form-group input,
.booking-contact-form .form-group textarea {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.24);
}
.booking-form .form-group input:focus,
.booking-form .form-group textarea:focus,
.booking-contact-form .form-group input:focus,
.booking-contact-form .form-group textarea:focus {
  border-color: rgba(201,169,110,0.62);
}
.booking-form .form-group input::placeholder,
.booking-form .form-group textarea::placeholder,
.booking-contact-form .form-group input::placeholder,
.booking-contact-form .form-group textarea::placeholder {
  color: rgba(237,237,237,0.42);
}

.form-submit { margin-top: 8px; }
.form-submit .btn-pill { width: 100%; justify-content: center; padding: 14px; font-size: 14px; }

.form-note { font-size: 12px; color: var(--text-3); text-align: center; margin-top: 8px; line-height: 1.6; }
.coupon-toggle-row {
  display: flex;
  justify-content: flex-start;
}
.coupon-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.03);
  color: var(--text-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.coupon-toggle-btn:hover {
  border-color: var(--line-h);
  color: var(--text);
}
.coupon-toggle-btn.active {
  border-color: rgba(201,169,110,0.45);
  color: var(--accent);
  background: rgba(201,169,110,0.1);
}
.coupon-wrap {
  animation: couponDrop 0.22s ease;
}
@keyframes couponDrop {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Payment QR screen */
.payment-screen {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.payment-screen.visible { display: flex; }
.payment-screen h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.payment-screen h2 em { font-style: italic; color: var(--text-2); }
.qr-box {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: rgba(255,255,255,0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  width: min(100%, 460px);
}
.qr-media-wrap {
  width: min(92vw, 360px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(0,0,0,0.2);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.qr-media-wrap.clean-qr {
  max-width: 330px;
  aspect-ratio: 1 / 1;
}
.qr-media-wrap.flyer-qr {
  max-width: 360px;
  aspect-ratio: auto;
}
.qr-box img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
.qr-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  flex-wrap: wrap;
}
.qr-actions .btn-pill.fill { min-height: 38px; }
.qr-download-btn {
  width: 38px;
  height: 38px;
  min-width: 38px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.upi-external-panel {
  display: none;
  width: min(360px, 100%);
  border: 1px solid rgba(226,181,110,0.35);
  background: rgba(226,181,110,0.08);
  border-radius: 12px;
  padding: 11px 12px;
  text-align: left;
}
.upi-external-panel.visible {
  display: block;
}
.upi-external-title {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.upi-external-panel p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-2);
}
.upi-external-steps {
  margin: 8px 0 10px;
  padding-left: 17px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-2);
}
.qr-amount {
  font-family: var(--display);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--accent);
}
.qr-instruction { font-size: 13px; color: var(--text-2); font-weight: 300; line-height: 1.7; max-width: 320px; }
.payment-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
  width: 100%;
}
.qr-cancel-btn {
  font-size: 11px;
  padding: 8px 16px;
}
.qr-note {
  max-width: 360px;
  margin-top: 2px;
}
.qr-home-link {
  font-size: 12px;
  color: var(--text-3);
  text-decoration: underline;
}
.status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

@media (max-width: 540px) {
  .payment-screen { gap: 16px; }
  .qr-box {
    width: 100%;
    padding: 14px;
    gap: 10px;
  }
  .qr-media-wrap {
    width: 100%;
    max-width: 100%;
  }
  .qr-media-wrap.clean-qr {
    max-width: min(100%, 330px);
  }
  .qr-media-wrap.flyer-qr {
    max-width: min(100%, 360px);
  }
  .qr-amount { font-size: 24px; }
  .qr-actions {
    flex-wrap: nowrap;
    width: 100%;
  }
  .qr-actions .btn-pill.fill {
    flex: 1;
    justify-content: center;
    min-height: 40px;
  }
  .upi-external-panel {
    width: 100%;
  }
  .qr-note {
    max-width: 100%;
  }
}

/* Error / success messages */
.form-error { font-size: 12px; color: #e07070; margin-top: 4px; }
.form-success {
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 13px;
  color: var(--accent);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   AUTH PAGES (login)
════════════════════════════════════════════════════════════════ */
.auth-wrap {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--pad);
}
.auth-box {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.auth-logo {
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
}
.auth-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.035em;
  text-transform: uppercase;
  line-height: 0.95;
}
.auth-title em { font-style: italic; color: var(--text-2); }

.auth-form { display: flex; flex-direction: column; gap: 16px; }
.auth-link-btn {
  border: none;
  background: none;
  color: var(--accent);
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
  align-self: flex-start;
  padding: 0;
}
.auth-inline-box {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: rgba(255,255,255,0.025);
}

/* ── Fullscreen modals (index.html) ─────────────────────────── */
#login-modal,
#graduates-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(13,13,14,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--pad);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#login-modal.open,
#graduates-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.login-modal-box {
  position: relative;
  background: #141415;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px;
}
.graduates-modal-box {
  position: relative;
  width: min(760px, 100%);
  background: #141415;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: min(88svh, 900px);
  overflow: auto;
}
.graduates-modal-box .search-bar {
  margin: 0;
}
#grad-modal-results {
  min-height: 160px;
  max-height: 420px;
  overflow: auto;
  padding-right: 2px;
}
#login-modal-close,
#graduates-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  color: var(--text-3);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 6px;
}
#login-modal-close:hover,
#graduates-modal-close:hover { color: var(--text); }

/* ═══════════════════════════════════════════════════════════════
   DASHBOARD
════════════════════════════════════════════════════════════════ */
.dash-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 48px) var(--pad) 80px;
}
.dash-header {
  margin-bottom: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.dash-header h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 1;
}
.dash-header p { font-size: 13px; color: var(--text-3); margin-top: 6px; }
.dash-badges {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}
.dash-badge {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(201,169,110,0.3);
  padding: 5px 12px;
  border-radius: 100px;
}
.upgrade-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.shop-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(201,169,110,0.42);
  color: var(--accent);
  background: rgba(201,169,110,0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.shop-icon-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(201,169,110,0.74);
  background: rgba(201,169,110,0.18);
}

.profile-menu {
  position: relative;
}
.profile-menu-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
}
.profile-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 210px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(13,13,14,0.96);
  box-shadow: 0 10px 26px rgba(0,0,0,0.4);
  display: none;
  flex-direction: column;
  padding: 6px;
}
.profile-menu.open .profile-menu-panel {
  display: flex;
}
.profile-menu-item {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--text);
  text-align: left;
  border-radius: 8px;
  padding: 10px 10px;
  font-size: 12px;
  cursor: pointer;
}
.profile-menu-item:hover {
  background: rgba(255,255,255,0.06);
}
.profile-menu-item.danger {
  color: #e08a8a;
}

.profile-form {
  gap: 14px;
}
.profile-form textarea {
  min-height: 96px;
}
.profile-feedback {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  text-align: left;
}
.profile-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}
.material-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.material-card:hover { border-color: var(--line-h); background: var(--bg-row); }
.material-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(201,169,110,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.material-info { flex: 1; min-width: 0; }
.material-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.material-type { font-size: 11px; color: var(--text-3); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; }

.dash-sections {
  display: grid;
  gap: 24px;
}
.dash-section {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
}
.dash-section-head {
  margin-bottom: 16px;
}
.dash-section-head h2 {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}
.dash-section-head p {
  margin-top: 4px;
  font-size: 12px;
  color: var(--text-3);
}

.dash-page-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  overflow-x: auto;
  padding-bottom: 2px;
}
.dash-page-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text-2);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}
.dash-page-btn.active {
  color: var(--accent);
  border-color: rgba(201,169,110,0.45);
  background: rgba(201,169,110,0.12);
}
.dash-page {
  display: none;
}
.dash-page.active {
  display: block;
}

.nav-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  margin-left: 6px;
  border-radius: 999px;
  background: #cc4f4f;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  padding: 0 6px;
}

.dash-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.overview-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}
.overview-card h3 {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
}
.overview-value {
  margin-top: 10px;
  font-family: var(--display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.overview-sub {
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.5;
}

.batch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.batch-column h4 {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.batch-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
}
.batch-card + .batch-card {
  margin-top: 8px;
}
.batch-name {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}
.batch-meta {
  margin-top: 4px;
  font-size: 11px;
  color: var(--text-3);
}

.resource-row {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.resource-row + .resource-row {
  margin-top: 8px;
}
.resource-title {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
}
.resource-meta {
  margin-top: 4px;
  font-size: 11px;
  color: var(--text-3);
}
.resource-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.mini-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: var(--text);
}
.mini-btn.ghost {
  color: var(--text-2);
}
.mini-btn:hover {
  border-color: var(--line-h);
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}
.book-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.01);
}
.book-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.02));
  pointer-events: none;
}
.book-cover {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  height: 240px;
  padding: 12px;
  background: linear-gradient(150deg, #2a2a2f, #141418);
  background-size: cover;
  background-position: center;
  color: #fff;
  text-decoration: none;
}
.book-cover span {
  display: inline-block;
  background: rgba(0,0,0,0.55);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  line-height: 1.3;
}
.book-info {
  padding: 12px;
}
.book-title {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text);
}
.book-meta {
  margin-top: 4px;
  font-size: 11px;
  color: var(--text-3);
}
.book-actions {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.video-player-shell {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: linear-gradient(180deg, #101116, #090a0d);
}
.video-player-head {
  margin-bottom: 10px;
  font-size: 12px;
  color: var(--text-2);
}
.video-frame-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}
.video-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.video-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,0.01);
  padding: 0;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
}
.video-thumb {
  height: 126px;
  background: linear-gradient(150deg, #27242a, #101013);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-play {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 13px;
}
.video-text {
  padding: 10px 12px 12px;
}
.video-title {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text);
}
.video-meta {
  margin-top: 4px;
  font-size: 11px;
  color: var(--text-3);
}

.event-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
  background: rgba(255,255,255,0.01);
}
.event-card + .event-card {
  margin-top: 10px;
}
.event-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 6px;
}
.event-head h3 {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}
.event-date {
  font-size: 11px;
  color: var(--accent);
  white-space: nowrap;
}
.event-description {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}
.event-meta {
  font-size: 11px;
  color: var(--text-3);
  margin-top: 4px;
}
.event-rsvp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.rsvp-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text-2);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}
.rsvp-btn:hover {
  border-color: var(--line-h);
  color: var(--text);
}
.rsvp-btn.active {
  background: rgba(201,169,110,0.14);
  border-color: rgba(201,169,110,0.4);
  color: var(--accent);
}
.event-rsvp-status {
  margin-top: 10px;
  font-size: 11px;
  color: var(--text-3);
}

.dash-logout {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  border: 1px solid var(--line);
  padding: 7px 16px;
  border-radius: 100px;
  cursor: pointer;
  background: none;
  transition: color 0.2s, border-color 0.2s;
}
.dash-logout:hover { color: var(--text); border-color: var(--line-h); }

/* ═══════════════════════════════════════════════════════════════
   GRADUATES SEARCH PAGE
════════════════════════════════════════════════════════════════ */
.grad-search-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 60px) var(--pad) 80px;
}
.search-bar {
  display: flex;
  gap: 8px;
  margin: 32px 0;
}
.search-bar input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 12px 20px;
  font-family: var(--body);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.search-bar input:focus { border-color: var(--line-h); }
.search-bar input::placeholder { color: var(--text-3); }
.search-bar button {
  padding: 12px 24px;
  border-radius: 100px;
  background: var(--text);
  color: var(--bg);
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.search-bar button:hover { opacity: 0.82; }

.grad-results { display: flex; flex-direction: column; gap: 8px; }
.grad-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}
.grad-name {
  font-family: var(--display);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text);
}
.grad-cert { font-size: 12px; color: var(--text-2); margin-top: 3px; }
.grad-date {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: right;
}
.grad-empty { text-align: center; padding: 40px; color: var(--text-3); font-size: 14px; }

/* ═══════════════════════════════════════════════════════════════
   ADMIN PANEL
════════════════════════════════════════════════════════════════ */
.admin-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 48px) var(--pad) 80px;
}
.admin-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
}
.admin-tab {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 12px 20px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.admin-tab:hover { color: var(--text); }
.admin-tab.active { color: var(--accent); border-bottom-color: var(--accent); }

.admin-panel { display: none; }
.admin-panel.active { display: block; }

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.admin-table th {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
}
.admin-table td {
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text-2);
  vertical-align: middle;
}
.admin-table tr:hover td { background: var(--bg-row); }

.status-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
}
.status-pending  { background: rgba(255,255,255,0.07); color: var(--text-3); }
.status-paid     { background: rgba(201,169,110,0.15); color: var(--accent); }
.status-approved { background: rgba(100,200,100,0.12); color: #7ecb7e; }
.status-cancelled { background: rgba(226,181,110,0.16); color: #e2b56e; }

.admin-add-form {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.admin-add-form h3 {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 4px;
}

/* ── Shared nav for inner pages ──────────────────────────────── */
.inner-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  height: var(--nav-h);
  display: flex;
  align-items: flex-start;
  padding: 16px var(--pad) 0;
}
.inner-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  min-height: 60px;
  padding: 8px 14px 8px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.13);
  background: rgba(12,12,13,0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.26);
}
.booking-nav-auth {
  display: flex;
  align-items: center;
  gap: 8px;
}

.book-student-mode #guest-password-note,
.book-student-mode #existing-login-box {
  display: none !important;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  :root { --pad: 24px; }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats { grid-template-columns: auto auto; }

  .v-row { grid-template-columns: 36px 1fr; }
  .v-book-btn { display: none; }

  #nav .nav-links,
  .inner-nav .nav-links {
    display: flex;
    gap: 8px;
  }
  .inner-nav {
    padding-top: 12px;
  }
  .inner-nav-inner {
    padding: 7px 10px 7px 12px;
    min-height: 54px;
  }
  #nav .nav-logo-image img { height: 40px; }
  .inner-nav .nav-logo-image img { height: 44px; }
  #nav .nav-links li:nth-child(1),
  #nav .nav-links li:nth-child(2) {
    display: none;
  }
  .nav-links a { font-size: 10px; letter-spacing: 0.04em; }
  .nav-links .nav-book { padding: 5px 10px; }
  footer { flex-direction: column; gap: 6px; text-align: center; }

  .class-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .dash-header { flex-direction: column; align-items: flex-start; }
  .dash-badges { justify-content: flex-start; }
  .dash-overview-grid { grid-template-columns: 1fr; }
  .batch-grid { grid-template-columns: 1fr; }
  .resource-row { flex-direction: column; align-items: flex-start; }
  .resource-actions { width: 100%; }
  .book-cover { height: 220px; }
  .video-grid { grid-template-columns: 1fr; }
  .dash-section { padding: 16px; }
  .event-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 540px) {
  .vt-text  { font-size: 13.5vw; }
  .contact-display { font-size: 11vw; }
  .about-display   { font-size: 9vw; }
  .hero-headline { margin-top: 28px; }
  .admin-tabs { overflow-x: auto; }
  .hero-brand { top: 4px; }
  .hero-brand-img { height: 108px; max-width: 78vw; }
  .nav-links a { font-size: 9.5px; }
  #nav .nav-logo-image img { height: 34px; }
  .inner-nav .nav-logo-image img { height: 38px; }
  .profile-actions .btn-pill {
    width: 100%;
    justify-content: center;
  }
  .login-modal-box,
  .graduates-modal-box { padding: 26px 20px; }
}

@media (max-width: 540px) {
  .student-dashboard { --nav-h: 74px; }

  .student-dashboard .inner-nav {
    padding: 8px 14px 0;
  }

  .student-dashboard .inner-nav-inner {
    min-height: 50px;
    padding: 6px 8px 6px 10px;
    border-radius: 14px;
    border-color: rgba(255,255,255,0.12);
    background: rgba(10,10,11,0.92);
  }

  .student-dashboard .nav-logo-image img {
    height: 34px;
    max-width: 132px;
  }

  .student-dashboard .profile-menu-btn {
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 11px;
    font-size: 0;
    letter-spacing: 0;
  }

  .student-dashboard .profile-menu-btn::before {
    content: '\2630';
    font-size: 17px;
    line-height: 1;
    color: var(--text);
  }

  .student-dashboard .profile-menu-panel {
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
  }

  .student-dashboard .dash-wrap {
    padding: calc(var(--nav-h) + 24px) 14px 72px;
  }
}
