﻿:root {
  --bg: #030303;
  --bg-soft: #0a0a0a;
  --ink: #f5f0e8;
  --muted: #b8aca0;
  --line: rgba(245, 240, 232, 0.14);
  --hot: #ff0a63;
  --hot-2: #ff7a18;
  --card: rgba(255, 255, 255, 0.055);
  --max: 1180px;
  --ease: cubic-bezier(.2,.8,.2,1);
  /* Premium editorial typography: Syne for display, Inter for body */
  --font-display: "Syne", "Plus Jakarta Sans", "Outfit", system-ui, sans-serif;
  --font-body: "Inter", "DM Sans", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  mix-blend-mode: screen;
  opacity: 0.08;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto 0;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 54px);
  background: linear-gradient(to bottom, rgba(0,0,0,.8), rgba(0,0,0,.2), transparent);
  backdrop-filter: blur(8px);
}
.centered-header {
  justify-content: center;
}
.centered-header .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.menu-toggle {
  display: none !important;
}
.logo {
  line-height: 1;
}
.logo img {
  height: clamp(32px, 3.5vw, 52px);
  width: auto;
  object-fit: contain;
}
.nav { display: flex; gap: clamp(18px, 2.5vw, 34px); align-items: center; }
.nav a {
  color: rgba(245,240,232,.78);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  transition: color .25s var(--ease);
}
.nav a:hover, .nav a.active { color: var(--ink); }
.menu-toggle { display: none; background: none; border: 0; color: var(--ink); text-transform: uppercase; letter-spacing: .18em; }
.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9) contrast(1.08); }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 65%, rgba(0,0,0,0.3) 0%, transparent 60%),
    linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 48%, rgba(0,0,0,0.85) 100%),
    linear-gradient(0deg, rgba(3,3,3,0.95) 0%, transparent 25%, rgba(3,3,3,0.4) 75%, rgba(3,3,3,0.7) 100%);
}
.home-hero .hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding-bottom: 12vh;
  gap: 16px;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 9vw, 120px);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  line-height: 1;
  text-shadow: 0 4px 50px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 1s cubic-bezier(0.25, 1, 0.5, 1) 0.2s forwards;
}
.hero-logo-title {
  width: min(78vw, 980px);
}
.hero-logo-title img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 50px rgba(0,0,0,0.5));
}
.kicker {
  color: var(--hot);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.4s forwards;
}
@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.split-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 10vw, 156px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  max-width: 930px;
  font-weight: 800;
}
.vertical-title {
  position: absolute;
  right: clamp(16px, 4vw, 64px);
  top: 50%;
  translate: 0 -45%;
  display: grid;
  gap: 7px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 72px);
  line-height: .78;
  color: rgba(245,240,232,.92);
  text-align: center;
}
.hero-copy { max-width: 540px; color: rgba(245,240,232,.78); font-size: clamp(16px, 1.5vw, 20px); line-height: 1.7; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--ink);
  transition: color .25s var(--ease);
}
.btn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}
.btn:hover { color: rgba(245,240,232,.7); }
.btn:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.btn.hot { color: var(--hot); }
.btn.hot::after { background: var(--hot); }
.btn.hot:hover { color: var(--hot-2); }
.social-rail {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 90;
  display: grid;
  gap: 10px;
}
.social-rail a {
  width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%;
  display: grid; place-items: center; background: rgba(0,0,0,.34); color: var(--muted); font-size: 11px;
}
.section { padding: clamp(82px, 10vw, 150px) clamp(20px, 4vw, 54px); position: relative; }
.section.tight { padding-top: clamp(48px, 6vw, 80px); }
.container { width: min(var(--max), 100%); margin: 0 auto; }
.section-head { display: flex; justify-content: flex-start; align-items: end; gap: 22px; margin-bottom: clamp(34px, 5vw, 70px); }
.eyebrow { color: var(--hot); text-transform: uppercase; letter-spacing: 0.18em; font-size: 11px; font-weight: 600; }
h2 {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-weight: 700;
}
.lead { color: rgba(245,240,232,.74); font-size: clamp(17px, 1.9vw, 24px); line-height: 1.55; max-width: 760px; }
.grid-2 { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(28px, 5vw, 80px); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.image-stack { position: relative; min-height: 560px; }
.image-stack img { position: absolute; object-fit: cover; border: 1px solid var(--line); box-shadow: 0 30px 80px rgba(0,0,0,.55); }
.image-stack .one { inset: 0 19% 17% 0; height: 76%; width: 72%; }
.image-stack .two { right: 0; bottom: 0; width: 52%; height: 54%; }
.copy p { color: rgba(245,240,232,.72); line-height: 1.75; font-size: 16px; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.stat { background: #050505; padding: clamp(22px, 3vw, 38px); }
.stat strong { display: block; font-family: var(--font-display); font-size: clamp(32px, 4vw, 62px); line-height: 1; letter-spacing: -0.02em; font-weight: 700; }
.stat span { display: block; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; font-size: 11px; margin-top: 12px; font-weight: 500; }
.card {
  position: relative;
  min-height: 430px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--card);
  display: flex;
  align-items: end;
  padding: 24px;
}
.card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .72; transition: scale .7s var(--ease), opacity .3s var(--ease); }
.card:hover img { scale: 1.07; opacity: .9; }
.card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.9), transparent 68%); }
.card-content { position: relative; z-index: 2; }
.card h3, .release h3 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.02em; font-size: 22px; font-weight: 700; margin: 0 0 10px; }
.card p, .release p { color: rgba(245,240,232,.65); line-height: 1.6; margin: 0 0 20px; font-size: 15px; }
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding: 18px 0; color: rgba(245,240,232,.32); font-family: var(--font-display); font-size: clamp(32px, 6vw, 82px); text-transform: uppercase; letter-spacing: 0.02em; white-space: nowrap; font-weight: 700; }
.marquee span { display: inline-block; animation: move 22s linear infinite; }
@keyframes move { to { transform: translateX(-50%); } }
.release-list { display: grid; gap: 12px; }
.release { display: grid; grid-template-columns: 150px 1fr auto; align-items: center; gap: 24px; padding: 18px; border: 1px solid var(--line); background: rgba(255,255,255,.035); }
.release img { width: 150px; height: 98px; object-fit: cover; }
.newsletter { background: linear-gradient(135deg, rgba(255,10,99,.18), rgba(255,122,24,.08)), #060606; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.form { display: grid; grid-template-columns: 1fr 1fr auto; gap: 12px; margin-top: 28px; }
input, textarea { width: 100%; background: rgba(255,255,255,.06); border: 1px solid var(--line); color: var(--ink); min-height: 52px; padding: 0 16px; outline: 0; }
textarea { padding: 16px; min-height: 132px; resize: vertical; }
.footer { padding: 38px clamp(20px, 4vw, 54px); color: rgba(245,240,232,.56); }
.footer-inner { width: min(var(--max), 100%); margin: auto; display: flex; justify-content: space-between; gap: 22px; border-top: 1px solid var(--line); padding-top: 28px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px; }
.footer-links a { color: inherit; font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; transition: color .25s var(--ease); }
.footer-links a:hover { color: var(--hot); }
.site-credit { font-size: 10px; font-weight: 400; color: rgba(245,240,232,.4); }
.site-credit a { color: inherit; font-weight: 400; transition: color .25s var(--ease); }
.site-credit a:hover { color: rgba(245,240,232,.8); }
.legal-main { padding: clamp(120px, 15vw, 180px) 0 clamp(60px, 8vw, 100px); }
.legal-content { max-width: 720px; }
.legal-content h2 { font-family: var(--font-display); font-size: clamp(18px, 2vw, 24px); font-weight: 700; color: #fff; margin: 48px 0 16px; letter-spacing: 0.02em; text-transform: uppercase; }
.legal-content p { color: rgba(245,240,232,.7); font-size: 16px; line-height: 1.8; margin: 0 0 16px; }
.legal-content ul { color: rgba(245,240,232,.7); font-size: 16px; line-height: 1.8; margin: 0 0 16px; padding-left: 24px; }
.legal-content li { margin-bottom: 8px; }
.legal-content a { color: var(--hot); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }
.page-hero { min-height: 74svh; }
.page-hero .hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding-bottom: 12vh;
}
.page-hero .hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 9vw, 120px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  line-height: 1;
  text-shadow: 0 4px 50px rgba(0,0,0,0.5);
}
.academy-hero .hero-title,
.music-hero .hero-title {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  margin: 0;
  line-height: 1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.academy-hero .hero-inner,
.music-hero .hero-inner {
  justify-content: center;
}
.bio-body { columns: 2 360px; column-gap: 54px; color: rgba(245,240,232,.76); line-height: 1.85; }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery img { width: 100%; height: 330px; object-fit: cover; border: 1px solid var(--line); filter: grayscale(.15); }
.booking-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.booking-card { border: 1px solid var(--line); padding: clamp(24px, 4vw, 44px); background: rgba(255,255,255,.04); }
.booking-card h3 { font-family: var(--font-display); font-size: clamp(22px, 2.5vw, 32px); margin: 0 0 16px; letter-spacing: 0.02em; text-transform: uppercase; font-weight: 700; }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
@media (max-width: 850px) {
  .nav { position: fixed; inset: 0; background: rgba(0,0,0,.96); display: none; place-content: center; text-align: center; gap: 28px; flex-direction: column; }
  .nav.open { display: grid; }
  .nav a { font-size: 22px; }
  .menu-toggle { display: block; z-index: 101; }
  .vertical-title { opacity: .18; right: 10px; }
  .grid-2, .grid-3, .release, .form, .booking-grid { grid-template-columns: 1fr; }
  .image-stack { min-height: 420px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .section-head, .footer-inner { display: grid; }
  .release img { width: 100%; height: 220px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery img { height: 240px; }
  .social-rail { display: none; }
}
@media (max-width: 520px) {
  .hero-inner { width: calc(100% - 28px); }
  .split-title { font-size: 54px; }
  .stats, .gallery { grid-template-columns: 1fr; }
  .card { min-height: 350px; }
}

/* Mobile-first upgrades + academy accordions */
.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.proof-strip article,
.path-grid article,
.result-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  padding: clamp(22px, 4vw, 34px);
  border-radius: 22px;
  box-shadow: 0 22px 70px rgba(0,0,0,.28);
}
.proof-strip span,
.path-grid span {
  color: var(--hot);
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: var(--font-body);
}
.proof-strip strong,
.path-grid strong,
.result-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 42px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 700;
}
.proof-strip p,
.path-grid p,
.result-card p {
  color: var(--muted);
  line-height: 1.65;
  margin: 16px 0 0;
}
.path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.academy-hero .hero-media img {
  object-fit: cover;
  object-position: center 30%;
}
.course-wrap {
  display: grid;
  gap: 14px;
}
.course-accordion {
  border: none;
  border-top: 1px solid var(--line);
  border-radius: 0;
  overflow: visible;
  background: transparent;
}
.course-accordion:last-child {
  border-bottom: 1px solid var(--line);
}
.course-trigger {
  width: 100%;
  min-height: 80px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  color: var(--ink);
  background: transparent;
  border: 0;
  padding: clamp(16px, 3vw, 24px) 0;
  text-align: left;
  cursor: pointer;
}
.course-trigger::after {
  content: "+";
  width: auto;
  height: auto;
  border: none;
  border-radius: 0;
  display: grid;
  place-items: center;
  color: var(--hot);
  font-size: 20px;
  justify-self: end;
  grid-column: 4;
}
.course-trigger[aria-expanded="true"]::after {
  content: "–";
}
.course-trigger span:nth-child(2) {
  min-width: 0;
}
.course-trigger strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 36px);
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 700;
}
.course-trigger em {
  display: block;
  color: var(--muted);
  font-style: normal;
  margin-top: 8px;
}
.course-trigger b {
  position: relative;
  color: var(--ink);
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.course-index {
  color: var(--hot);
  font-family: var(--font-display);
  font-size: 22px;
}
.course-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease);
}
.course-panel-inner,
.course-panel > p,
.course-panel .module-grid,
.course-panel .course-meta,
.course-panel > .btn {
  margin-left: clamp(18px, 4vw, 28px);
  margin-right: clamp(18px, 4vw, 28px);
}
.course-panel > p {
  color: rgba(245,240,232,.76);
  line-height: 1.75;
  max-width: 900px;
  margin-top: 0;
}
.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.course-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  padding: 6px 14px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-body);
  font-weight: 500;
}
.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-bottom: 18px;
}
.module-grid > div {
  background: rgba(0,0,0,.24);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}
.module-grid h3 {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.04em;
  margin: 0 0 12px;
  text-transform: uppercase;
  font-weight: 700;
}
.module-grid ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(245,240,232,.72);
  line-height: 1.65;
}
.course-panel > .btn {
  margin-bottom: 26px;
}
.result-card strong {
  font-size: clamp(54px, 10vw, 120px);
}
.result-card span {
  color: var(--hot);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-weight: 800;
  font-size: 12px;
}
@media (max-width: 850px) {
  body { padding-bottom: 88px; }
  .header {
    height: 62px;
    padding: 0 18px;
    background: linear-gradient(to bottom, rgba(0,0,0,.78), transparent);
  }
  .menu-toggle { display: none !important; }
  .dock-nav,
  .nav.dock-nav {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 12px;
    top: auto;
    height: 64px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 8px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(8,8,8,.84);
    box-shadow: 0 18px 54px rgba(0,0,0,.52);
    backdrop-filter: blur(18px);
  }
  .dock-nav::-webkit-scrollbar { display: none; }
  .nav.dock-nav a {
    flex: 0 0 auto;
    min-width: 72px;
    min-height: 46px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: rgba(245,240,232,.68);
    font-size: 10px;
    letter-spacing: .11em;
    background: rgba(255,255,255,.045);
  }
  .nav.dock-nav a.active {
    color: #fff;
    background: linear-gradient(135deg, var(--hot), var(--hot-2));
  }
  .hero { min-height: 92svh; }
  .page-hero { min-height: 68svh; }
  .page-hero .hero-inner {
    padding-bottom: 10vh;
  }
  .page-hero .hero-title {
    font-size: clamp(36px, 12vw, 72px);
  }
  .hero-media img { object-position: 55% center; }
  .proof-strip,
  .path-grid,
  .module-grid { grid-template-columns: 1fr; }
  .course-trigger {
    grid-template-columns: auto 1fr;
    gap: 12px;
    min-height: 86px;
  }
  .course-trigger b {
    grid-column: 2;
    font-size: clamp(14px, 3.5vw, 18px);
    font-weight: 600;
    letter-spacing: 0.02em;
  }
  .course-trigger::after {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
  }
  .course-meta span { font-size: 10px; }
}
@media (max-width: 520px) {
  .section { padding-left: 16px; padding-right: 16px; }
  .hero-copy { font-size: 15px; }
  .course-trigger { min-height: 64px; padding: 12px 0; gap: 12px; }
  .course-trigger strong { font-size: clamp(16px, 5vw, 22px); }
  .course-trigger em { font-size: 11px; }
  .course-trigger::after { font-size: 18px; }
}


/* Premium editorial typography system */
.logo,
.nav a,
.btn,
.kicker,
.eyebrow,
.course-meta span,
.result-card span,
.path-grid span {
  font-family: var(--font-display);
  letter-spacing: 0.15em;
}

/* Platform Cards */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Platforms Section Layout */
#platforms .container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
#platforms .section-head {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 24px;
  padding: 0;
}
#platforms .eyebrow {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--hot);
  margin: 0;
}
#platforms .lead {
  margin: 0;
  font-size: 15px;
  color: rgba(245,240,232,.7);
}

@media (max-width: 768px) {
  .platform-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  #platforms .section-head {
    margin-bottom: 16px;
  }
}
.platform-card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
}
.platform-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease), opacity .3s var(--ease);
}
.platform-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.2) 50%, transparent 100%);
}
.platform-card:hover img {
  transform: scale(1.05);
}
.platform-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.platform-card-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}
.platform-card-name {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
}

/* Spotify Embed */
.spotify-embed {
  max-width: 700px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
}
.spotify-embed iframe {
  display: block;
  width: 100% !important;
}

/* Latest Releases Section */
.latest-releases .container {
  display: flex;
  flex-direction: column;
}
.latest-releases .section-head {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 20px;
  padding: 0;
}
.latest-releases .eyebrow {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--hot);
  margin: 0;
}
.latest-releases h2 {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
  line-height: 1;
}

/* Music Embeds Grid */
.music-embeds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.spotify-embed,
.soundcloud-embed {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
}
.spotify-embed iframe,
.soundcloud-embed iframe {
  display: block;
  width: 100% !important;
}

@media (max-width: 768px) {
  .music-embeds {
    grid-template-columns: 1fr;
  }
  .latest-releases.section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .latest-releases .section-head {
    margin-bottom: 16px;
  }
}
body {
  letter-spacing: .015em;
}
.path-grid {
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at 15% 15%, rgba(255,10,99,.18), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.018));
}
.path-grid::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,10,99,.8), rgba(255,122,24,.7), transparent);
  opacity: .7;
}
.path-grid article {
  position: relative;
  min-height: 210px;
  display: grid;
  align-content: end;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.02)),
    #080808;
  overflow: hidden;
}
.path-grid article::before {
  content: "";
  position: absolute;
  inset: 14px 14px auto auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: radial-gradient(circle, rgba(255,10,99,.9), transparent 58%);
}
.path-grid strong {
  font-size: clamp(24px, 2.8vw, 38px);
}
.result-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 15% 15%, rgba(255,10,99,.24), transparent 28%),
    radial-gradient(circle at 90% 75%, rgba(255,122,24,.16), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.025));
}
.result-card::before {
  content: "ACADEMY";
  position: absolute;
  right: -18px;
  top: 24px;
  writing-mode: vertical-rl;
  font-family: var(--font-display);
  letter-spacing: .28em;
  color: rgba(255,255,255,.08);
  font-size: 42px;
}
.result-card strong {
  color: transparent;
  background: linear-gradient(135deg, #fff7ed, #ff0a63 54%, #ff7a18);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 36px rgba(255,10,99,.2);
}
.course-trigger b {
  font-family: var(--font-display);
  color: #fff7ed;
  text-shadow: 0 0 22px rgba(255,10,99,.22);
}
.booking-card a[href^="tel"],
.booking-card a[href^="mailto"],
.booking-card a[href^="https://wa.me"] {
  word-break: break-word;
}
@media (max-width: 850px) {
  .path-grid {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }
  .path-grid::before {
    top: 24px;
    bottom: 24px;
    left: 38px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(255,10,99,.8), rgba(255,122,24,.7), transparent);
  }
  .path-grid article {
    min-height: 152px;
    padding-left: 74px;
  }
  .path-grid article::before {
    left: 18px;
    right: auto;
    top: 28px;
  }
  .result-card {
    border-radius: 26px;
  }
}


/* Premium spacing pass: cleaner, calmer, more breathable */
:root {
  --max: 1120px;
}
body {
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
.header {
  height: 78px;
  padding-inline: clamp(22px, 4.5vw, 68px);
}
.logo {
  font-size: clamp(18px, 1.8vw, 26px);
  letter-spacing: 0.15em;
  font-weight: 700;
}
.nav {
  gap: clamp(20px, 3vw, 42px);
}
.nav a {
  font-size: 11px;
  letter-spacing: .2em;
}
.hero {
  min-height: 96svh;
}
.hero-inner {
  width: min(1080px, calc(100% - 56px));
  gap: clamp(18px, 3vw, 34px);
  padding-top: 92px;
}
.home-hero .hero-media {
  background: #020202;
}
.home-hero .hero-media img {
  object-fit: cover;
  object-position: 64% 42%;
  transform: scale(.88);
  opacity: .68;
}
.hero::after {
  background:
    linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.46) 48%, rgba(0,0,0,.86)),
    linear-gradient(0deg, rgba(3,3,3,1), transparent 38%, rgba(3,3,3,.36));
}
.kicker,
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
}
.split-title {
  font-size: clamp(42px, 9vw, 128px);
  line-height: 0.94;
  letter-spacing: -0.02em;
  max-width: 980px;
}
.vertical-title {
  right: clamp(18px, 3vw, 46px);
  font-size: clamp(24px, 3.4vw, 56px);
  opacity: .78;
}
.hero-copy {
  max-width: 580px;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.75;
  color: rgba(245,240,232,.72);
}
.cta-row {
  gap: 16px;
  margin-top: 4px;
}
.section {
  padding: clamp(104px, 12vw, 178px) clamp(22px, 5vw, 72px);
}
.section.tight {
  padding-top: clamp(76px, 8vw, 116px);
}
.section-head {
  margin-bottom: clamp(48px, 6vw, 86px);
  gap: clamp(24px, 5vw, 72px);
}
h2 {
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.lead {
  max-width: 690px;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.7;
  color: rgba(245,240,232,.7);
}
.grid-2 {
  gap: clamp(48px, 8vw, 112px);
}
.grid-3 {
  gap: clamp(18px, 2.2vw, 28px);
}
.copy p,
.card p,
.release p,
.module-grid ul,
.course-panel > p,
.booking-card .lead {
  font-size: 15px;
  line-height: 1.78;
  color: rgba(245,240,232,.66);
}
.image-stack {
  min-height: 520px;
}
.card {
  min-height: 390px;
  padding: clamp(22px, 3vw, 32px);
  border-radius: 24px;
}
.card h3,
.release h3 {
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.08;
}
.marquee {
  padding: 22px 0;
  font-size: clamp(30px, 5.8vw, 76px);
  opacity: .78;
}
.course-wrap {
  gap: 0;
  max-width: 1040px;
}
.course-accordion {
  border-radius: 0;
}
.course-trigger {
  min-height: 72px;
  padding: 16px 0;
  gap: 16px;
}
.course-trigger strong {
  font-size: clamp(18px, 3.5vw, 28px);
  line-height: 1.08;
}
.course-trigger em {
  font-size: 12px;
  color: rgba(245,240,232,.55);
}
.course-trigger b {
  font-size: clamp(14px, 3vw, 20px);
}
.course-panel > p {
  margin-bottom: 24px;
}
.module-grid {
  gap: 18px;
  padding-bottom: 24px;
}
.module-grid > div {
  padding: 22px;
  border-radius: 20px;
}
.module-grid h3 {
  font-size: 18px;
}
.result-card {
  padding: clamp(30px, 5vw, 56px);
}
.result-card strong {
  font-size: clamp(48px, 8vw, 92px);
}
.booking-grid {
  gap: 22px;
}
.booking-card {
  border-radius: 24px;
  padding: clamp(28px, 4.6vw, 52px);
}
.booking-card h3 {
  font-size: clamp(26px, 3vw, 36px);
}
.form {
  gap: 16px;
}
input,
textarea {
  border-radius: 16px;
  min-height: 54px;
}
.gallery {
  gap: 18px;
}
.gallery img {
  border-radius: 22px;
}
.footer {
  padding: 54px clamp(22px, 5vw, 72px) 42px;
}
@media (max-width: 850px) {
  body {
    font-size: 14px;
    padding-bottom: 96px;
  }
  .header {
    height: 66px;
    padding-inline: 18px;
  }
  .hero {
    min-height: 90svh;
  }
  .home-hero .hero-media img {
    object-fit: cover;
    object-position: 58% 42%;
    transform: scale(.92);
    opacity: .58;
  }
  .hero-inner {
    width: calc(100% - 34px);
    padding-top: 76px;
    gap: 20px;
  }
  .split-title {
    font-size: clamp(42px, 14vw, 72px);
    line-height: .95;
    max-width: 92vw;
  }
  .vertical-title {
    display: none;
  }
  .hero-copy {
    max-width: 92vw;
    font-size: 14.5px;
    line-height: 1.75;
  }
  .section {
    padding: 88px 18px;
  }
  .section.tight {
    padding-top: 68px;
  }
  .section-head {
    margin-bottom: 38px;
  }
  h2 {
    font-size: clamp(32px, 10vw, 52px);
    letter-spacing: -0.01em;
  }
  .grid-2,
  .grid-3 {
    gap: 28px;
  }
  .card {
    min-height: 320px;
  }
  .card img {
    opacity: .5;
    object-position: top center;
  }
  .card::after {
    background: linear-gradient(0deg, rgba(0,0,0,.92), transparent 50%);
  }
  .image-stack {
    min-height: 390px;
  }
  .course-wrap {
    gap: 16px;
  }
  .course-trigger {
    min-height: 82px;
    padding: 20px;
  }
  .course-trigger strong {
    font-size: 21px;
  }
  .course-trigger b {
    font-size: 14px;
  }
  .module-grid > div {
    padding: 18px;
  }
  .result-card {
    padding: 28px;
  }
}
@media (max-width: 520px) {
  .logo {
    font-size: 17px;
  }
  .cta-row {
    gap: 10px;
  }
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .card h3,
  .release h3 {
    font-size: 23px;
  }
}


/* Mobile-first final polish: Niki-style home + Apple dock */
.learn-link {
  position: relative;
  display: inline-flex;
  width: max-content;
  margin-top: clamp(18px, 3vw, 30px);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  letter-spacing: .04em;
  line-height: 1.4;
}
.learn-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}
.learn-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.dock-nav a {
  transition: transform .24s var(--ease), background .24s var(--ease), color .24s var(--ease), box-shadow .24s var(--ease);
}
.dock-nav a.bubble-pop {
  animation: dockBubble .42s var(--ease);
}
@keyframes dockBubble {
  0% { transform: translateY(0) scale(1); }
  45% { transform: translateY(-12px) scale(1.16); }
  100% { transform: translateY(0) scale(1); }
}
@media (max-width: 850px) {
  .header {
    top: 0;
    height: 74px;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.06);
    background: rgba(0,0,0,.56);
    backdrop-filter: blur(18px);
  }
  .logo {
    color: #ff3b1f;
    font-size: 20px;
    letter-spacing: .06em;
  }
  .menu-toggle {
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 19px;
    letter-spacing: .02em;
    text-transform: none;
  }
  .menu-toggle::after {
    content: "";
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #e87868;
    box-shadow: 0 0 0 6px rgba(232,120,104,.12);
  }
  .nav.dock-nav {
    position: fixed !important;
    left: 50% !important;
    right: auto !important;
    top: auto !important;
    bottom: calc(14px + env(safe-area-inset-bottom)) !important;
    width: min(92vw, 430px) !important;
    height: 68px !important;
    transform: translateX(-50%) translateY(120px);
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 9px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(10,10,10,.74);
    box-shadow: 0 18px 55px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.08);
    backdrop-filter: blur(22px) saturate(1.2);
    overflow: visible;
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s var(--ease), transform .28s var(--ease);
    z-index: 140;
  }
  .nav.dock-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .nav.dock-nav a {
    flex: 1 1 0;
    min-width: 0;
    min-height: 50px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    padding: 0 10px;
    background: rgba(255,255,255,.055);
    color: rgba(245,240,232,.72);
    font-size: 9px;
    letter-spacing: .1em;
    white-space: nowrap;
  }
  .nav.dock-nav a.active,
  .nav.dock-nav a:hover {
    color: #fff;
    background: linear-gradient(135deg, #ff0a63, #ff7a18);
    box-shadow: 0 12px 28px rgba(255,45,70,.26);
  }
  .home-hero {
    min-height: 100svh;
    display: block;
    padding-top: 74px;
  }
  .home-hero .hero-media {
    inset: 74px 0 0;
  }
  .home-hero .hero-media img {
    object-fit: cover;
    object-position: 52% 20%;
    transform: none;
    opacity: .72;
    filter: saturate(.95) contrast(1.08) brightness(.82);
  }
  .home-hero::after {
    background:
      linear-gradient(180deg, rgba(0,0,0,.5) 0%, transparent 35%, rgba(0,0,0,.85) 100%),
      radial-gradient(ellipse 100% 80% at 50% 80%, rgba(255,10,99,0.08) 0%, transparent 50%);
  }
  .home-hero .hero-inner {
    min-height: calc(100svh - 74px);
    width: 100%;
    padding: clamp(74px, 18svh, 150px) 28px 86px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
  }
  .home-hero .kicker,
  .home-hero .hero-copy {
    display: none;
  }
  .home-hero .split-title {
    margin-top: clamp(110px, 24svh, 220px);
    width: 100%;
    max-width: 92vw;
    font-size: clamp(42px, 13vw, 72px);
    line-height: .94;
    letter-spacing: -.03em;
    text-align: center;
  }
  .home-hero .learn-link {
    position: absolute;
    left: 50%;
    bottom: calc(92px + env(safe-area-inset-bottom));
    transform: translateX(-50%);
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .02em;
  }
  .about-section {
    padding-top: 76px;
  }
  .bio-page-hero {
    min-height: auto !important;
    padding-top: 74px;
    display: block;
  }
  .bio-page-hero .hero-media {
    opacity: .32;
  }
  .bio-page-hero .hero-inner {
    min-height: 330px;
    padding: 120px 22px 54px;
    justify-content: end;
  }
  .bio-page-hero .hero-copy {
    max-width: 92vw;
  }
  .bio-content-section {
    padding-top: 54px !important;
  }
}
@media (max-width: 520px) {
  .nav.dock-nav {
    width: min(94vw, 370px) !important;
    height: 64px !important;
    padding: 8px;
  }
  .nav.dock-nav a {
    min-height: 48px;
    padding-inline: 8px;
    font-size: 8px;
    letter-spacing: .08em;
  }
  .home-hero .split-title {
    font-size: clamp(39px, 12.2vw, 58px);
  }
}


/* Liquid Glass navigation redesign */
.liquid-dock {
  isolation: isolate;
}
.liquid-dock .nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 999px;
  color: rgba(245, 240, 232, .62);
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  transition:
    color .28s cubic-bezier(.2,.8,.2,1),
    background .28s cubic-bezier(.2,.8,.2,1),
    transform .34s cubic-bezier(.34,1.56,.64,1),
    box-shadow .28s cubic-bezier(.2,.8,.2,1);
}
.liquid-dock .nav-item:hover {
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.07);
  transform: translateY(-1px);
}
.liquid-dock .nav-item::before {
  content: "";
  position: absolute;
  inset: 50%;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(255,255,255,.22), transparent 62%);
  opacity: 0;
  transform: translate(-50%, -50%) scale(.25);
}
.liquid-dock .nav-item.active {
  color: #fff;
  background: rgba(255,255,255,.09);
}
.liquid-dock .nav-item.active::after {
  display: none;
}
.liquid-dock .nav-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.liquid-dock .nav-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.liquid-dock .nav-label {
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: none;
  white-space: nowrap;
}
.liquid-dock .nav-item.bubble-pop {
  animation: liquidDockPress .34s cubic-bezier(.34,1.56,.64,1);
}
.liquid-dock .nav-item.bubble-pop::before {
  animation: liquidDockRipple .34s ease-out;
}
.liquid-dock .nav-item.bubble-pop .nav-icon {
  animation: liquidDockIconKick .34s cubic-bezier(.34,1.56,.64,1);
}
@keyframes liquidDockPress {
  0% { transform: translateY(0) scale(1); }
  45% { transform: translateY(-3px) scale(.96); }
  100% { transform: translateY(0) scale(1); }
}
@keyframes liquidDockRipple {
  0% { opacity: .75; transform: translate(-50%, -50%) scale(.25); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(5.8); }
}
@keyframes liquidDockIconKick {
  0% { transform: translateY(0) scale(1); }
  45% { transform: translateY(-2px) scale(1.18); }
  100% { transform: translateY(0) scale(1); }
}

/* Desktop nav */
@media (min-width: 851px) {
  .header {
    background: linear-gradient(to bottom, rgba(0,0,0,.64), rgba(0,0,0,.08), transparent);
  }
  .liquid-dock {
    display: flex !important;
    flex-wrap: nowrap;
    gap: 4px;
    padding: 6px 8px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 999px;
    background: rgba(8,8,8,.42);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 16px 40px rgba(0,0,0,.18);
    backdrop-filter: blur(18px) saturate(1.25);
  }
  .liquid-dock .nav-item {
    flex: 1 1 auto;
    min-height: 38px;
    padding: 0 12px;
  }
  .liquid-dock .nav-icon {
    width: 14px;
    height: 14px;
  }
  .liquid-dock .nav-label {
    font-size: 9px;
  }
}

/* Mobile nav */
@media (max-width: 850px) {
  body {
    padding-bottom: calc(80px + env(safe-area-inset-bottom));
  }
  .menu-toggle {
    display: none !important;
  }
  .liquid-dock {
    display: flex !important;
    flex-wrap: nowrap;
    justify-content: center;
    position: fixed !important;
    left: 50% !important;
    right: auto !important;
    top: auto !important;
    bottom: calc(12px + env(safe-area-inset-bottom)) !important;
    transform: translateX(-50%) !important;
    width: 100% !important;
    max-width: 100vw !important;
    padding: 6px 4px !important;
    gap: 0 !important;
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
    background: rgba(10,10,10,.95);
    backdrop-filter: blur(24px) saturate(1.3);
    -webkit-backdrop-filter: blur(24px) saturate(1.3);
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 999 !important;
  }
  .liquid-dock .nav-item {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 48px;
    padding: 0 8px;
    gap: 4px;
  }
  .liquid-dock .nav-icon {
    width: 18px;
    height: 18px;
  }
  .liquid-dock .nav-label {
    font-size: 8px;
    letter-spacing: 0;
    max-width: none;
    overflow: visible;
  }
}

@media (max-width: 420px) {
  .liquid-dock {
    padding: 4px 2px !important;
  }
  .liquid-dock .nav-item {
    min-height: 44px;
    padding: 0 4px;
    gap: 3px;
  }
  .liquid-dock .nav-icon {
    width: 16px;
    height: 16px;
  }
  .liquid-dock .nav-label {
    font-size: 7px;
  }
}


/* Force Liquid Glass dock to bottom-center */
.header {
  pointer-events: none;
}
.header .logo,
.header .menu-toggle {
  pointer-events: auto;
}
.header .liquid-dock,
.nav.liquid-dock,
.nav.dock-nav.liquid-dock {
  position: fixed !important;
  left: 50% !important;
  right: auto !important;
  top: auto !important;
  bottom: calc(18px + env(safe-area-inset-bottom)) !important;
  transform: translateX(-50%) !important;
  z-index: 220 !important;
  pointer-events: auto;
}
@media (min-width: 851px) {
  body {
    padding-bottom: 96px;
  }
  .header {
    height: 76px;
  }
  .header .liquid-dock,
  .nav.liquid-dock,
  .nav.dock-nav.liquid-dock {
    width: min(86vw, 920px) !important;
    min-height: 58px;
    justify-content: center;
    gap: 8px;
  }
  .liquid-dock .nav-item {
    min-height: 44px;
    padding: 0 18px;
  }
}
@media (max-width: 850px) {
  .header .liquid-dock,
  .nav.liquid-dock,
  .nav.dock-nav.liquid-dock {
    bottom: calc(14px + env(safe-area-inset-bottom)) !important;
  }
}


/* Final viewport-anchored dock fix */
body > .liquid-dock,
body > .dock-nav.liquid-dock,
body > nav.liquid-dock {
  position: fixed !important;
  left: 50% !important;
  right: auto !important;
  top: auto !important;
  bottom: calc(18px + env(safe-area-inset-bottom)) !important;
  transform: translate3d(-50%, 0, 0) !important;
  z-index: 999 !important;
  pointer-events: auto !important;
}
.header {
  pointer-events: none;
}
.header .logo,
.header .menu-toggle {
  pointer-events: auto;
}
@media (min-width: 851px) {
  body > .liquid-dock,
  body > .dock-nav.liquid-dock,
  body > nav.liquid-dock {
    width: min(86vw, 920px) !important;
  }
}
@media (max-width: 850px) {
  body > .liquid-dock,
  body > .dock-nav.liquid-dock,
  body > nav.liquid-dock {
    width: min(88vw, 350px) !important;
    bottom: calc(14px + env(safe-area-inset-bottom)) !important;
  }
}


/* Shorter compact Liquid Glass dock */
@media (min-width: 851px) {
  body > .liquid-dock,
  body > .dock-nav.liquid-dock,
  body > nav.liquid-dock {
    width: auto !important;
    min-width: 520px !important;
    max-width: 620px !important;
    min-height: 50px !important;
    height: 50px !important;
    padding: 5px 7px !important;
    gap: 3px !important;
  }
  body > .liquid-dock .nav-item,
  body > .dock-nav.liquid-dock .nav-item,
  body > nav.liquid-dock .nav-item {
    min-height: 40px !important;
    padding: 0 11px !important;
    gap: 6px !important;
  }
  body > .liquid-dock .nav-icon,
  body > .dock-nav.liquid-dock .nav-icon,
  body > nav.liquid-dock .nav-icon,
  body > .liquid-dock .nav-icon svg,
  body > .dock-nav.liquid-dock .nav-icon svg,
  body > nav.liquid-dock .nav-icon svg {
    width: 14px !important;
    height: 14px !important;
  }
  body > .liquid-dock .nav-label,
  body > .dock-nav.liquid-dock .nav-label,
  body > nav.liquid-dock .nav-label {
    font-size: 9.5px !important;
  }
}
@media (max-width: 850px) {
  body > .liquid-dock,
  body > .dock-nav.liquid-dock,
  body > nav.liquid-dock {
    width: min(88vw, 400px) !important;
    min-height: 54px !important;
    padding: 8px !important;
  }
}

/* Keep the desktop dock language on phones too */
@media (max-width: 850px) {
  body > .liquid-dock,
  body > .dock-nav.liquid-dock,
  body > nav.liquid-dock {
    width: min(calc(100vw - 12px), 620px) !important;
    min-width: 0 !important;
    height: 50px !important;
    min-height: 50px !important;
    padding: 5px !important;
    gap: 2px !important;
    justify-content: center !important;
    overflow: hidden !important;
    border: 1px solid rgba(255,255,255,.09) !important;
    background: rgba(8,8,8,.42) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 16px 40px rgba(0,0,0,.18) !important;
    backdrop-filter: blur(18px) saturate(1.25) !important;
    -webkit-backdrop-filter: blur(18px) saturate(1.25) !important;
  }
  body > .liquid-dock .nav-item,
  body > .dock-nav.liquid-dock .nav-item,
  body > nav.liquid-dock .nav-item {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    min-height: 40px !important;
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 clamp(2px, 1.4vw, 11px) !important;
    gap: clamp(2px, .9vw, 6px) !important;
    border-radius: 999px !important;
    background: transparent !important;
    color: rgba(245, 240, 232, .62) !important;
  }
  body > .liquid-dock .nav-item.active,
  body > .dock-nav.liquid-dock .nav-item.active,
  body > nav.liquid-dock .nav-item.active,
  body > .liquid-dock .nav-item:hover,
  body > .dock-nav.liquid-dock .nav-item:hover,
  body > nav.liquid-dock .nav-item:hover {
    color: #fff !important;
    background: rgba(255,255,255,.09) !important;
    box-shadow: none !important;
  }
  body > .liquid-dock .nav-icon,
  body > .dock-nav.liquid-dock .nav-icon,
  body > nav.liquid-dock .nav-icon,
  body > .liquid-dock .nav-icon svg,
  body > .dock-nav.liquid-dock .nav-icon svg,
  body > nav.liquid-dock .nav-icon svg {
    width: 14px !important;
    height: 14px !important;
  }
  body > .liquid-dock .nav-label,
  body > .dock-nav.liquid-dock .nav-label,
  body > nav.liquid-dock .nav-label {
    min-width: 0 !important;
    overflow: hidden !important;
    text-overflow: clip !important;
    font-size: clamp(6px, 1.55vw, 9.5px) !important;
    letter-spacing: .02em !important;
  }
}

/* Stable dock slots: active page changes should never resize the dock */
body > .liquid-dock,
body > .dock-nav.liquid-dock,
body > nav.liquid-dock {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
}
body > .liquid-dock .nav-item,
body > .dock-nav.liquid-dock .nav-item,
body > nav.liquid-dock .nav-item {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  flex: none !important;
}
@media (min-width: 851px) {
  body > .liquid-dock,
  body > .dock-nav.liquid-dock,
  body > nav.liquid-dock {
    width: min(86vw, 620px) !important;
  }
}
@media (max-width: 850px) {
  body > .liquid-dock,
  body > .dock-nav.liquid-dock,
  body > nav.liquid-dock {
    width: min(calc(100vw - 12px), 620px) !important;
    top: auto !important;
    bottom: calc(14px + env(safe-area-inset-bottom)) !important;
  }
}


/* ============================================
   BIOGRAPHY PAGE STYLES
   ============================================ */

/* Centered Biography Hero */
.bio-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bio-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.6) saturate(1.1);
}

.bio-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(3,3,3,0.2) 0%,
    rgba(3,3,3,0.05) 40%,
    rgba(3,3,3,0.25) 75%,
    rgba(3,3,3,0.45) 100%
  );
}

.bio-hero-title {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  margin: 0;
  text-align: center;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  padding-bottom: 8vh;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.9s cubic-bezier(0.25, 1, 0.5, 1) 0.3s forwards;
}

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

/* Bio Layout - Sticky Image + Scrolling Content */
.bio-section {
  padding: 0 clamp(20px, 5vw, 72px);
  margin-bottom: clamp(80px, 10vw, 140px);
}

.bio-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

/* Sticky Image Carousel */
.bio-images {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.bio-image-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
}

.bio-image-carousel .carousel-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.bio-image-carousel .carousel-image.active {
  opacity: 1;
}

/* Bio Content */
.bio-content {
  padding-top: 20px;
}

.bio-content p {
  color: rgba(245, 240, 232, 0.8);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.8;
  margin-bottom: 28px;
  font-family: var(--font-body);
}

.bio-content p:last-child {
  margin-bottom: 0;
}

/* Gallery Section */
.gallery-section {
  padding: clamp(60px, 8vw, 120px) clamp(20px, 5vw, 72px);
  text-align: center;
}

.gallery-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 clamp(40px, 6vw, 70px);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.5s forwards;
}

.gallery-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
}

.gallery-carousel .gallery-carousel-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.gallery-carousel .gallery-carousel-image.active {
  opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .bio-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bio-images {
    position: relative;
    top: 0;
    max-width: 500px;
    margin: 0 auto;
  }

  .bio-content {
    text-align: left;
  }

  .gallery-carousel {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 520px) {
  .bio-hero {
    height: 100svh;
    min-height: 500px;
  }

  .bio-hero-bg {
    object-position: center 20%;
    filter: brightness(0.6) saturate(1.1);
  }

  .bio-hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(3,3,3,0.5) 0%,
      rgba(3,3,3,0.1) 30%,
      rgba(3,3,3,0.25) 60%,
      rgba(3,3,3,0.9) 100%
    );
  }

  .bio-hero-title {
    font-size: clamp(14px, 3vw, 22px);
    letter-spacing: 0.4em;
  }

  .gallery-carousel {
    aspect-ratio: 1 / 1;
    border-radius: 8px;
  }
}

@media (max-width: 520px) {
  .bio-hero {
    padding-top: 100px;
  }

  .bio-hero-title {
    font-size: 14px;
    letter-spacing: 0.35em;
  }

  .gallery-carousel {
    aspect-ratio: 1 / 1;
    border-radius: 8px;
  }
}


/* ============================================
   STUDENT STORIES SECTION — Academy Page
   ============================================ */

.student-stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.student-story {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.story-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0a0a0a;
}

.story-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.student-story:hover .story-img-wrap img {
  transform: scale(1.04);
}

.story-logo {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 52px;
  height: 52px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.story-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.story-text {
  padding: 22px 24px 26px;
}

.story-text p {
  color: rgba(245, 240, 232, 0.72);
  font-size: 14px;
  line-height: 1.78;
  margin: 0;
}

/* Reveal animation for scroll */
.student-story.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.student-story.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for each card */
.student-stories-grid .student-story:nth-child(1).reveal {
  transition-delay: 0ms;
}
.student-stories-grid .student-story:nth-child(2).reveal {
  transition-delay: 100ms;
}
.student-stories-grid .student-story:nth-child(3).reveal {
  transition-delay: 200ms;
}

@media (max-width: 960px) {
  .student-stories-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 520px;
    margin: 0 auto;
  }

  .story-img-wrap {
    aspect-ratio: 4 / 3;
  }

  .story-img-wrap img {
    object-position: center;
  }

  .story-text {
    padding: 18px 20px 22px;
  }

  .student-story.reveal {
    transform: translateY(24px);
  }

  .student-stories-grid .student-story:nth-child(1).reveal { transition-delay: 0ms; }
  .student-stories-grid .student-story:nth-child(2).reveal { transition-delay: 80ms; }
  .student-stories-grid .student-story:nth-child(3).reveal { transition-delay: 160ms; }
}

@media (max-width: 520px) {
  .story-img-wrap {
    aspect-ratio: 4 / 3;
  }

  .story-img-wrap img {
    object-position: center;
  }

  .story-logo {
    width: 44px;
    height: 44px;
    bottom: 10px;
    right: 10px;
  }

  .story-text {
    padding: 16px 18px 20px;
  }

  .story-text p {
    font-size: 13px;
  }
}

/* Academy Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-hidden {
  display: none;
}

.gallery-toggle-wrap {
  text-align: center;
  margin-top: 24px;
}

.gallery-toggle-btn {
  background: transparent;
  border: 1px solid rgba(245, 240, 232, 0.4);
  color: var(--ink);
  padding: 12px 32px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 999px;
}

.gallery-toggle-btn:hover {
  border-color: var(--ink);
  background: rgba(245, 240, 232, 0.05);
}

.gallery-toggle-btn:active {
  background: rgba(245, 240, 232, 0.08);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* Student Stories Carousel */
.student-carousel {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.student-carousel-track {
  position: relative;
  overflow: hidden;
}

.student-carousel-track .student-story {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.student-carousel-track .student-story.active {
  display: block;
  opacity: 1;
}

.student-carousel-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(245, 240, 232, 0.4);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot:hover {
  border-color: var(--ink);
}

.carousel-dot.active {
  background: var(--hot);
  border-color: var(--hot);
}

/* Academy & Music hero responsive (matching bio hero) */
@media (max-width: 850px) {
  .academy-hero .hero-title,
  .music-hero .hero-title {
    font-size: clamp(14px, 3vw, 22px);
    letter-spacing: 0.4em;
  }
}

@media (max-width: 520px) {
  .academy-hero .hero-title,
  .music-hero .hero-title {
    font-size: 14px;
    letter-spacing: 0.35em;
  }
}

/* Final responsive pass: academy stories + fixed dock */
body > .liquid-dock,
body > .dock-nav.liquid-dock,
body > nav.liquid-dock {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  align-items: center !important;
  left: 50% !important;
  right: auto !important;
  top: auto !important;
  transform: translate3d(-50%, 0, 0) !important;
  overflow: hidden !important;
}

body > .liquid-dock .nav-item,
body > .dock-nav.liquid-dock .nav-item,
body > nav.liquid-dock .nav-item {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
}

body > .liquid-dock .nav-label,
body > .dock-nav.liquid-dock .nav-label,
body > nav.liquid-dock .nav-label {
  min-width: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

@media (min-width: 851px) {
  body {
    padding-bottom: 118px !important;
  }

  body > .liquid-dock,
  body > .dock-nav.liquid-dock,
  body > nav.liquid-dock {
    width: min(88vw, 620px) !important;
    height: 54px !important;
    min-height: 54px !important;
    bottom: max(18px, env(safe-area-inset-bottom)) !important;
    padding: 6px !important;
    gap: 4px !important;
    border-radius: 999px !important;
  }

  body > .liquid-dock .nav-item,
  body > .dock-nav.liquid-dock .nav-item,
  body > nav.liquid-dock .nav-item {
    min-height: 42px !important;
    padding: 0 10px !important;
    gap: 7px !important;
  }
}

@media (max-width: 850px) {
  body {
    padding-bottom: calc(112px + env(safe-area-inset-bottom)) !important;
  }

  body > .liquid-dock,
  body > .dock-nav.liquid-dock,
  body > nav.liquid-dock {
    width: min(calc(100vw - 22px), 520px) !important;
    height: 52px !important;
    min-height: 52px !important;
    bottom: calc(8px + env(safe-area-inset-bottom)) !important;
    padding: 5px !important;
    gap: 3px !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 999px !important;
    background: rgba(8,8,8,.78) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 48px rgba(0,0,0,.36) !important;
    backdrop-filter: blur(20px) saturate(1.2) !important;
    -webkit-backdrop-filter: blur(20px) saturate(1.2) !important;
  }

  body > .liquid-dock .nav-item,
  body > .dock-nav.liquid-dock .nav-item,
  body > nav.liquid-dock .nav-item {
    min-height: 42px !important;
    padding: 0 4px !important;
    gap: 4px !important;
    border-radius: 999px !important;
  }

  body > .liquid-dock .nav-icon,
  body > .dock-nav.liquid-dock .nav-icon,
  body > nav.liquid-dock .nav-icon,
  body > .liquid-dock .nav-icon svg,
  body > .dock-nav.liquid-dock .nav-icon svg,
  body > nav.liquid-dock .nav-icon svg {
    width: 15px !important;
    height: 15px !important;
  }

  body > .liquid-dock .nav-label,
  body > .dock-nav.liquid-dock .nav-label,
  body > nav.liquid-dock .nav-label {
    font-size: clamp(7px, 1.8vw, 9px) !important;
    letter-spacing: 0 !important;
  }

  #student-stories.section {
    padding-bottom: calc(140px + env(safe-area-inset-bottom));
  }

  .student-stories-grid {
    width: min(100%, 680px);
    max-width: none;
    gap: 28px;
  }

  .student-story {
    background: rgba(255,255,255,.035);
  }

  .story-img-wrap {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .story-img-wrap img {
    height: 100%;
    object-fit: contain;
    object-position: center top;
    transform: none !important;
  }

  .story-text {
    padding: clamp(18px, 4vw, 28px);
  }

  .story-text p {
    font-size: clamp(14px, 3.1vw, 18px);
    line-height: 1.8;
  }
}

@media (max-width: 430px) {
  body > .liquid-dock,
  body > .dock-nav.liquid-dock,
  body > nav.liquid-dock {
    width: min(calc(100vw - 14px), 420px) !important;
    height: 50px !important;
    min-height: 50px !important;
    bottom: calc(6px + env(safe-area-inset-bottom)) !important;
    padding: 5px !important;
    gap: 2px !important;
  }

  body > .liquid-dock .nav-item,
  body > .dock-nav.liquid-dock .nav-item,
  body > nav.liquid-dock .nav-item {
    min-height: 40px !important;
    padding-inline: 2px !important;
    gap: 3px !important;
  }

  body > .liquid-dock .nav-label,
  body > .dock-nav.liquid-dock .nav-label,
  body > nav.liquid-dock .nav-label {
    font-size: clamp(6.5px, 1.9vw, 8px) !important;
  }

  .student-stories-grid {
    gap: 22px;
  }

  .story-text p {
    font-size: 14px;
    line-height: 1.72;
  }
}

