:root {
  --ink:        #1A1216;
  --ink-2:      #221A1E;
  --ink-3:      #2B2128;
  --cream:      #F6F1E8;
  --cream-dim:  #C8C0B8;
  --red:        #F80812;
  --red-deep:   #C50710;
  --line:       rgba(246,241,232,0.12);
  --line-strong:rgba(246,241,232,0.25);
}

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

body {
  background: var(--ink);
  color: var(--cream);
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.display {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 0.92;
  text-transform: uppercase;
}

.italic-serif {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.01em;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}

/* ==================== NAV ==================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease, padding 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(26,18,22,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 64px;
  border-bottom: 1px solid var(--line);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav-mark {
  width: 38px; height: 38px;
  border: 1.5px solid var(--red);
  display: grid;
  place-items: center;
  font-family: 'Bebas Neue', sans-serif;
  color: var(--red);
  font-size: 15px;
  letter-spacing: 0.02em;
}
.nav-wordmark { line-height: 1; }
.nav-wordmark .top {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.14em;
  color: var(--cream);
}
.nav-wordmark .top .red { color: var(--red); }
.nav-wordmark .bot {
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--cream-dim);
  margin-top: 3px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--red); }
.nav-links a.active { color: var(--red); }
.nav-links a.cta {
  background: var(--red);
  color: var(--cream);
  padding: 11px 22px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-links a.cta:hover {
  background: var(--red-deep);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: rgba(26,18,22,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 80px;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  color: var(--cream);
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease;
  padding: 4px 0;
}
.nav-drawer a:hover,
.nav-drawer a.active { color: var(--red); }
.nav-drawer a.cta {
  margin-top: 16px;
  background: var(--red);
  color: var(--cream);
  padding: 16px 40px;
  font-size: 28px;
}
.nav-drawer a.cta:hover { background: var(--red-deep); }

/* ==================== HERO (homepage) ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center 20%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 75% 25%, rgba(248,8,18,0.32) 0%, transparent 65%),
    linear-gradient(180deg, rgba(26,18,22,0.50) 0%, rgba(26,18,22,0.15) 30%, rgba(26,18,22,0.88) 80%, var(--ink) 100%),
    linear-gradient(90deg, rgba(26,18,22,0.72) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-dim);
  font-weight: 500;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--red); border-radius: 50%;
  box-shadow: 0 0 12px var(--red);
}
.hero-eyebrow .line { height: 1px; width: 64px; background: var(--line-strong); }
.hero-eyebrow .est { color: var(--red); }

.hero-h1 {
  font-size: clamp(72px, 11vw, 188px);
  color: var(--cream);
  margin-bottom: 0;
}
.hero-h1 .line-1, .hero-h1 .line-2, .hero-h1 .line-3 { display: block; }
.hero-h1 .dance {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--red);
  letter-spacing: -0.03em;
}

.hero-foot {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 40px;
  align-items: end;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-tagline {
  max-width: 480px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--cream);
  font-weight: 300;
}
.hero-tagline strong { font-weight: 600; color: var(--red); }
.hero-meta {
  text-align: right;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.hero-meta .num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: var(--cream);
  line-height: 0.9;
  margin-bottom: 4px;
  letter-spacing: 0;
}
.hero-meta.red .num { color: var(--red); }

/* ==================== PAGE HERO (inner pages) ==================== */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%; height: 70%;
  background: radial-gradient(ellipse at 90% 10%, rgba(248,8,18,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-content { position: relative; }
.page-hero h1 {
  font-size: clamp(54px, 7.5vw, 130px);
  color: var(--cream);
  line-height: 0.92;
  margin-bottom: 28px;
}
.page-hero h1 .accent {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--red);
  letter-spacing: -0.02em;
}
.page-hero .sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--cream-dim);
  font-weight: 300;
  max-width: 640px;
}

/* ==================== CREDENTIALS STRIP ==================== */
.creds {
  background: var(--red);
  color: var(--cream);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.18);
  border-bottom: 1px solid rgba(0,0,0,0.18);
}
.creds-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 42s linear infinite;
  width: max-content;
}
.creds-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 64px;
  font-weight: 400;
}
.creds-item::after { content: '★'; color: var(--cream); font-size: 14px; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@media (prefers-reduced-motion: reduce) { .creds-track { animation: none; } }

/* ==================== SECTION LABEL ==================== */
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 32px;
}
.section-label .num {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--cream-dim);
  font-weight: 400;
  letter-spacing: 0.1em;
  font-size: 14px;
}
.section-label .bar { width: 32px; height: 1px; background: var(--red); }

/* ==================== ABOUT ==================== */
.about {
  padding: 140px 0;
  position: relative;
}
.about::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 65%; height: 55%;
  background: radial-gradient(ellipse at 90% 5%, rgba(248,8,18,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: start;
}
.about-headline {
  font-size: clamp(48px, 5.6vw, 92px);
  color: var(--cream);
}
.about-headline .accent {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--red);
  letter-spacing: -0.02em;
}
.about-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--cream);
  font-weight: 300;
}
.about-body p + p { margin-top: 22px; }
.about-body .lead {
  font-size: 21px;
  line-height: 1.55;
  font-weight: 400;
  margin-bottom: 28px;
}
.about-body .lead::first-letter { color: var(--red); font-weight: 600; }
.about-signature {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.sig-line { width: 40px; height: 1px; background: var(--red); }
.about-signature .name {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--red);
}
.about-signature .role {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* stats strip */
.stats-strip {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 36px 28px 36px 0;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; padding-right: 0; }
.stat .figure {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 84px;
  line-height: 0.9;
  color: var(--cream);
  margin-bottom: 14px;
}
.stat .figure .sub { font-size: 36px; color: var(--red); margin-left: 4px; }
.stat .label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  line-height: 1.5;
  font-weight: 500;
}

/* ==================== SOMETHING FOR EVERYONE ==================== */
.everyone {
  padding: 120px 0;
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.everyone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.everyone h2 {
  font-size: clamp(44px, 5vw, 80px);
  color: var(--cream);
  margin-bottom: 28px;
}
.everyone h2 .accent {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--red);
  letter-spacing: -0.02em;
}
.everyone .blurb {
  font-size: 17px;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.7;
  max-width: 460px;
}
.everyone .blurb strong { color: var(--cream); font-weight: 500; }
.age-bands {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line);
}
.age-band {
  padding: 24px 32px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: center;
  transition: background 0.2s ease;
  cursor: default;
}
.age-band:last-child { border-bottom: none; }
.age-band:hover { background: var(--ink-3); }
.age-band .age-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 5px 8px;
  text-align: center;
  line-height: 1.2;
}
.age-band .age-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 3px;
}
.age-band .age-desc {
  font-size: 12px;
  color: var(--cream-dim);
  font-weight: 300;
  letter-spacing: 0.03em;
}

/* ==================== OFFER (classes) ==================== */
.offer {
  padding: 140px 0 160px;
  background: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.offer-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 72px;
}
.offer-head h2 { font-size: clamp(48px,5.6vw,92px); color: var(--cream); }
.offer-head h2 .accent {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--red);
  letter-spacing: -0.02em;
}
.offer-head .blurb {
  font-size: 16px;
  color: var(--cream-dim);
  font-weight: 300;
  line-height: 1.7;
  max-width: 460px;
  justify-self: end;
}

.genre-grid {
  display: grid;
  grid-template-columns: repeat(12,1fr);
  gap: 18px;
}
.genre {
  position: relative;
  background: var(--ink-3);
  border: 1px solid var(--line);
  padding: 32px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s ease, transform 0.4s cubic-bezier(0.2,0.8,0.2,1), background 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}
.genre:hover { border-color: var(--red); transform: translateY(-4px); background: #1a1220; }
.genre .ix { font-family: 'Bebas Neue', sans-serif; font-size: 14px; color: var(--red); letter-spacing: 0.15em; }
.genre h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  letter-spacing: 0.02em;
  line-height: 0.95;
  color: var(--cream);
  margin-top: 60px;
}
.genre .desc { font-size: 13px; color: var(--cream-dim); margin-top: 14px; line-height: 1.55; font-weight: 300; }
.genre .age {
  margin-top: 24px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid var(--red);
  align-self: flex-start;
}
.genre .scholar {
  margin-top: 8px;
  font-size: 9.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.genre .scholar::before {
  content: '★';
  color: var(--red);
  font-size: 10px;
}
.genre.hero-card {
  grid-column: span 6;
  background:
    linear-gradient(180deg, rgba(26,18,22,0.5), rgba(26,18,22,0.95)),
    repeating-linear-gradient(45deg, #3a1a20 0, #3a1a20 2px, #2a1218 2px, #2a1218 14px);
  min-height: 380px;
}
.genre.hero-card h3 { font-size: 64px; }
.genre.span-3  { grid-column: span 3; }
.genre.span-4  { grid-column: span 4; }
.genre.span-6  { grid-column: span 6; }
.genre.span-12 { grid-column: span 12; min-height: 200px; }
.genre.span-12 h3 { font-size: 52px; margin-top: 20px; }
.genre .arrow {
  position: absolute;
  top: 28px; right: 28px;
  width: 32px; height: 32px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.3s ease;
  color: var(--cream-dim);
  font-size: 14px;
}
.genre:hover .arrow {
  background: var(--red);
  border-color: var(--red);
  color: var(--ink);
  transform: rotate(-45deg);
}

/* ==================== ACHIEVEMENTS ==================== */
.achievements {
  padding: 160px 0;
  position: relative;
}
.achievements::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 55%; height: 50%;
  background: radial-gradient(ellipse at 0% 100%, rgba(248,8,18,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.achv-head { text-align: center; margin-bottom: 96px; }
.achv-head h2 {
  font-size: clamp(54px,7vw,120px);
  color: var(--cream);
  line-height: 0.95;
}
.achv-head h2 .accent {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--red);
  letter-spacing: -0.02em;
}
.achv-head .sub {
  margin-top: 24px;
  font-size: 15px;
  color: var(--cream-dim);
  letter-spacing: 0.05em;
  max-width: 580px;
  margin-left: auto; margin-right: auto;
  line-height: 1.7;
  font-weight: 300;
}

.achv-grid {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 0;
  border: 1px solid var(--line);
}
.achv {
  padding: 44px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  transition: background 0.3s ease;
}
.achv:hover { background: var(--ink-2); }
.achv.span-3 { grid-column: span 3; }
.achv.span-2 { grid-column: span 2; }
.achv.span-4 { grid-column: span 4; }
.achv.feature { background: linear-gradient(180deg, rgba(248,8,18,0.10), rgba(248,8,18,0.02)); }
.achv .venue {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--red);
  margin-bottom: 14px;
}
.achv h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
.achv.feature h3 { font-size: 56px; }
.achv .body {
  font-size: 14px;
  color: var(--cream-dim);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: auto;
}
.achv .result {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.5;
}
.achv .result .highlight { color: var(--red); }
.achv .stamp {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 500;
}
.achv .stamp::before { content: ''; width: 6px; height: 6px; background: var(--red); border-radius: 50%; }
.achv .yr {
  position: absolute;
  top: 36px; right: 36px;
  font-family: 'Bebas Neue', sans-serif;
  color: var(--cream-dim);
  font-size: 16px;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

/* IDTA scholarship banner */
.scholarship {
  margin-top: 0;
  padding: 56px 48px;
  background: linear-gradient(135deg, rgba(248,8,18,0.12), rgba(248,8,18,0.03));
  border: 1px solid var(--line);
  border-top: none;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 40px;
  align-items: center;
}
.scholarship .icon {
  width: 64px; height: 64px;
  border: 1.5px solid var(--red);
  color: var(--red);
  display: grid; place-items: center;
  font-size: 22px;
  border-radius: 50%;
}
.scholarship-body .title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 10px;
}
.scholarship-body .desc {
  font-size: 14px;
  color: var(--cream-dim);
  line-height: 1.6;
  font-weight: 300;
}
.scholarship-badge {
  text-align: center;
  padding: 18px 24px;
  border: 1px solid var(--line-strong);
}
.scholarship-badge .style {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--red);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 4px;
}
.scholarship-badge .cap {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  font-weight: 500;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
  padding: 120px 0;
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.testi-head { margin-bottom: 72px; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  border: 1px solid var(--line);
}
.testi {
  padding: 44px 36px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.2s ease;
  cursor: default;
}
.testi:last-child { border-right: none; }
.testi:hover { background: var(--ink-3); }
.testi .stars {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--red);
  letter-spacing: 0.3em;
  font-size: 13px;
}
.testi blockquote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--cream);
  font-weight: 300;
  font-style: italic;
  border-left: 2px solid var(--red);
  padding-left: 18px;
}
.testi .author {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.testi .author .name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.05em;
  color: var(--cream);
  margin-bottom: 2px;
}
.testi .author .role {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  font-weight: 500;
}

/* ==================== ENROL CTA ==================== */
.enrol {
  padding: 160px 0;
  background: var(--red);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.enrol-bg {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-10deg, transparent 0, transparent 40px, rgba(0,0,0,0.05) 40px, rgba(0,0,0,0.05) 41px);
  pointer-events: none;
}
.enrol-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 96px;
  align-items: end;
  position: relative;
}
.enrol h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px,10vw,168px);
  line-height: 0.88;
  letter-spacing: 0.005em;
  color: var(--cream);
  text-transform: uppercase;
}
.enrol h2 .accent {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.enrol .term {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--cream);
  padding: 10px 18px;
  font-size: 12px;
  letter-spacing: 0.25em;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.enrol .term .pulse {
  width: 8px; height: 8px;
  background: var(--cream);
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--cream);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0%  { box-shadow: 0 0 0 0 rgba(246,241,232,0.75); }
  100%{ box-shadow: 0 0 0 14px rgba(246,241,232,0); }
}
@media (prefers-reduced-motion: reduce) { .enrol .term .pulse { animation: none; } }
.enrol .actions { margin-top: 56px; display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--ink);
  color: var(--cream);
  padding: 22px 32px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, gap 0.2s ease;
}
.btn-primary:hover { background: #0a0508; gap: 22px; }
.btn-primary .arrow-svg { transition: transform 0.3s ease; }
.btn-primary:hover .arrow-svg { transform: translateX(4px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 12px;
  background: transparent;
  color: var(--cream);
  padding: 22px 32px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.15em;
  text-decoration: none;
  border: 1.5px solid var(--cream);
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-secondary:hover { background: var(--cream); color: var(--red); }
.enrol-side {
  border-left: 1.5px solid rgba(246,241,232,0.35);
  padding-left: 48px;
}
.enrol-side .item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(246,241,232,0.22);
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  align-items: baseline;
}
.enrol-side .item:last-child { border-bottom: none; }
.enrol-side .item .k {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  font-weight: 700; color: var(--cream); opacity: 0.75;
}
.enrol-side .item .v {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; letter-spacing: 0.06em; color: var(--cream);
}
.enrol-side .item .v small {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 12px; letter-spacing: 0.02em;
  color: var(--cream); opacity: 0.85;
  font-weight: 500; text-transform: none;
  margin-top: 2px;
}

/* ==================== TIMETABLE (classes page) ==================== */
.timetable {
  padding: 100px 0 160px;
}
.timetable-intro {
  max-width: 640px;
  margin-bottom: 72px;
}
.timetable-intro p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--cream-dim);
  font-weight: 300;
}
.timetable-intro p + p { margin-top: 16px; }

.day-block {
  margin-bottom: 56px;
}
.day-block:last-child { margin-bottom: 0; }
.day-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 2px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-strong);
}
.day-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--cream);
  letter-spacing: 0.04em;
  line-height: 1;
}
.day-venue {
  font-size: 13px;
  color: var(--cream-dim);
  font-weight: 300;
  line-height: 1.55;
}
.day-venue strong {
  display: block;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 2px;
}

.class-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease;
}
.class-row:last-child { border-bottom: none; }
.class-row:hover { background: var(--ink-2); margin: 0 -24px; padding: 20px 24px; }
.class-time {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: var(--red);
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.class-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--cream);
}
.class-name .note {
  display: block;
  font-size: 12px;
  color: var(--cream-dim);
  font-weight: 300;
  margin-top: 2px;
}
.class-tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 10px;
  border: 1px solid var(--line-strong);
  color: var(--cream-dim);
  white-space: nowrap;
}
.class-tag.comp { border-color: var(--red); color: var(--red); }
.class-tag.adult { border-color: rgba(246,241,232,0.4); color: var(--cream); }
.class-tag.fitness { border-color: rgba(100,200,100,0.5); color: #a0e0a0; }
.class-tag.sen { border-color: rgba(200,160,100,0.6); color: #e0c880; }

.timetable-note {
  margin-top: 64px;
  padding: 32px 40px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  font-size: 15px;
  line-height: 1.7;
  color: var(--cream-dim);
}
.timetable-note strong { color: var(--cream); }

/* ==================== CONTACT (contact page) ==================== */
.contact-section {
  padding: 100px 0 160px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 96px;
  align-items: start;
}
.contact-info .item {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: start;
}
.contact-info .item:first-child { border-top: 1px solid var(--line); }
.contact-info .item .k {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--cream-dim);
  padding-top: 3px;
}
.contact-info .item .v {
  font-size: 15px;
  color: var(--cream);
  line-height: 1.65;
}
.contact-info .item .v a {
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact-info .item .v a:hover { color: var(--red); }
.contact-info .item .v strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.contact-form {
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: 48px;
}
.form-row {
  margin-bottom: 24px;
}
.form-row label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cream-dim);
  margin-bottom: 10px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--line-strong);
  color: var(--cream);
  padding: 14px 18px;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 400;
  outline: none;
  transition: border-color 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--red);
}
.form-row textarea {
  min-height: 120px;
  resize: vertical;
}
.form-row select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C8C0B8' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--cream-dim); opacity: 0.6; }
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--red);
  color: var(--cream);
  padding: 18px 32px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.15em;
  border: none;
  cursor: pointer;
  width: 100%;
  justify-content: center;
  transition: background 0.2s ease;
}
.form-submit:hover { background: var(--red-deep); }
.form-success {
  display: none;
  padding: 20px 24px;
  background: rgba(0,160,0,0.12);
  border: 1px solid rgba(0,200,0,0.3);
  color: #90e090;
  font-size: 14px;
  margin-top: 16px;
  text-align: center;
}
.form-success.visible { display: block; }

/* Map embed */
.venue-maps {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.venue-map-block {}
.venue-map-block .venue-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.06em;
  color: var(--cream);
  margin-bottom: 8px;
}
.venue-map-block .venue-address {
  font-size: 13px;
  color: var(--cream-dim);
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1.55;
}
.venue-map-block iframe {
  width: 100%;
  height: 300px;
  border: 1px solid var(--line);
  display: block;
  filter: grayscale(0.4) invert(0.9) hue-rotate(180deg);
}

/* ==================== FOOTER ==================== */
footer {
  background: var(--ink);
  padding: 80px 0 32px;
  border-top: 1px solid var(--line);
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}
.foot-brand .mark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.foot-brand .mark .red { color: var(--red); }
.foot-brand .tag {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--red);
  margin-bottom: 28px;
  font-size: 18px;
}
.foot-brand .body {
  font-size: 13px;
  color: var(--cream-dim);
  line-height: 1.7;
  max-width: 360px;
  font-weight: 300;
}
.foot-social {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}
.foot-social a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--line-strong);
  padding: 8px 14px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.foot-social a:hover { color: var(--red); border-color: var(--red); }
.foot-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 20px;
}
.foot-col ul { list-style: none; }
.foot-col li {
  font-size: 13px;
  color: var(--cream-dim);
  margin-bottom: 10px;
  font-weight: 300;
}
.foot-col a {
  color: var(--cream-dim);
  text-decoration: none;
  transition: color 0.2s ease;
}
.foot-col a:hover { color: var(--red); }
.foot-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
  font-weight: 500;
}
.foot-bottom .stars { color: var(--red); letter-spacing: 0.4em; }

/* ==================== PHOTO BLOCKS ==================== */
.photo-full {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  margin-top: 72px;
}
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  height: 440px;
  overflow: hidden;
}
.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.photo-strip img:hover { transform: scale(1.04); }

/* ==================== ACHIEVEMENTS PAGE ==================== */

/* Hero */
.achv-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}
.achv-hero-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center 30%;
  background-image: url('../images/achievement-hero.png');
}
.achv-hero-photo-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 30%, rgba(248,8,18,0.28) 0%, transparent 65%),
    repeating-linear-gradient(135deg, #3a1a20 0, #3a1a20 2px, #1a1216 2px, #1a1216 18px);
}
.achv-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(26,18,22,0.45) 0%, rgba(26,18,22,0.1) 40%, rgba(26,18,22,0.92) 80%, var(--ink) 100%),
    linear-gradient(90deg, rgba(26,18,22,0.65) 0%, transparent 55%);
}
.achv-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}
.achv-hero h1 {
  font-size: clamp(64px, 10vw, 172px);
  color: var(--cream);
  line-height: 0.88;
  margin-bottom: 0;
}
.achv-hero h1 .accent {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--red);
  letter-spacing: -0.02em;
}
.achv-hero-foot {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 40px;
  align-items: end;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.achv-hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--cream-dim);
  font-weight: 300;
  max-width: 440px;
}
.achv-hero-stat {
  text-align: right;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
  font-weight: 500;
}
.achv-hero-stat .n {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--cream);
  line-height: 0.9;
  letter-spacing: 0;
  margin-bottom: 4px;
}
.achv-hero-stat.red .n { color: var(--red); }

/* Numbers wall */
.numbers-wall {
  background: var(--red);
  padding: 80px 0;
  border-top: 1px solid rgba(0,0,0,0.15);
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.number-block {
  padding: 24px 28px;
  border-right: 1px solid rgba(246,241,232,0.2);
  text-align: center;
}
.number-block:last-child { border-right: none; }
.number-block .fig {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 5.5vw, 88px);
  color: var(--cream);
  line-height: 0.88;
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 10px;
}
.number-block .fig .sup { font-size: 0.45em; vertical-align: super; color: rgba(246,241,232,0.7); }
.number-block .cap {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--cream);
  opacity: 0.85;
  line-height: 1.5;
}

/* Venue showcase */
.stages {
  padding: 140px 0;
  position: relative;
}
.stages::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 40%;
  background: radial-gradient(ellipse at 100% 0%, rgba(248,8,18,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.stages-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  margin-top: 64px;
}
.stage-card {
  position: relative;
  overflow: hidden;
  cursor: default;
  border: 1px solid var(--line);
}
.stage-card::before {
  content: '';
  display: block;
}
.stage-card.tall { min-height: 480px; }
.stage-card.mid  { min-height: 340px; }
.stage-card.wide { min-height: 240px; }

.stage-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.2,0.8,0.2,1);
}
.stage-card:hover .stage-photo { transform: scale(1.04); }

/* Placeholder gradient per venue */
.stage-photo.ph-hmt {
  background-image: url('../images/venue-hmtheatre.webp');
  background-color: #1a0810;
}
.stage-photo.ph-shaftesbury {
  background-image: url('../images/venue-shaftesbury.webp');
  background-color: #180a10;
}
.stage-photo.ph-roh {
  background-image: url('../images/venue-royalopera.webp');
  background-color: #120812;
}
.stage-photo.ph-blackpool-tower {
  background-image: url('../images/venue-blackpool-tower.webp');
  background-color: #0a0e18;
}
.stage-photo.ph-blackpool-hotel {
  background-image: url('../images/venue-blackpool-hotel.webp');
  background-color: #160c0a;
}
.stage-photo.ph-ms-arena {
  background-image: url('../images/venue-ms-arena.webp');
  background-color: #080e14;
}
/* Gradient fallbacks so cards look designed even without photos */
.stage-photo.ph-hmt         { background-image: url('../images/venue-hmtheatre.webp'), linear-gradient(160deg, #3a1520 0%, #1a0810 100%); }
.stage-photo.ph-shaftesbury  { background-image: url('../images/venue-shaftesbury.webp'), linear-gradient(200deg, #2a1018 0%, #18080e 100%); }
.stage-photo.ph-roh          { background-image: url('../images/venue-royalopera.webp'), linear-gradient(130deg, #280c28 0%, #120812 100%); }
.stage-photo.ph-blackpool-tower { background-image: url('../images/venue-blackpool-tower.webp'), linear-gradient(170deg, #0c1230 0%, #0a0e18 100%); }
.stage-photo.ph-blackpool-hotel { background-image: url('../images/venue-blackpool-hotel.webp'), linear-gradient(150deg, #2c1208 0%, #180a06 100%); }
.stage-photo.ph-ms-arena     { background-image: url('../images/venue-ms-arena.webp'), linear-gradient(180deg, #0a1020 0%, #080c14 100%); }

.stage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,18,22,0.1) 0%, rgba(26,18,22,0.35) 40%, rgba(26,18,22,0.92) 100%);
}
.stage-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 28px 28px;
}
.stage-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--cream);
  background: var(--red);
  padding: 5px 10px;
  margin-bottom: 10px;
}
.stage-badge::before { content: '★'; font-size: 9px; }
.stage-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin-bottom: 6px;
}
.stage-card.tall .stage-name { font-size: clamp(36px, 3.5vw, 54px); }
.stage-card.wide .stage-name { font-size: clamp(26px, 2.5vw, 36px); }
.stage-location {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  font-weight: 500;
}
.stage-photo-tag {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  background: rgba(26,18,22,0.75);
  padding: 4px 8px;
  font-weight: 500;
}
.stage-times {
  position: absolute;
  top: 14px; right: 14px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--red);
  letter-spacing: 0.04em;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

/* 34/34 feature */
.season-feature {
  padding: 0;
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.season-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.season-number-side {
  padding: 100px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-right: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.season-number-side::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(248,8,18,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.season-fraction {
  position: relative;
}
.season-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(100px, 14vw, 220px);
  color: var(--cream);
  line-height: 0.88;
  letter-spacing: -0.02em;
  display: block;
}
.season-rule {
  width: 100%;
  max-width: 320px;
  height: 3px;
  background: var(--red);
  margin: 8px 0;
}
.season-num.denom { color: var(--red); }
.season-label-row {
  display: flex;
  justify-content: space-between;
  max-width: 320px;
  width: 100%;
  margin-top: 8px;
}
.season-label-row span {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
  font-weight: 600;
}
.season-subline {
  margin-top: 32px;
  font-size: 15px;
  color: var(--cream-dim);
  font-weight: 300;
  line-height: 1.65;
  max-width: 340px;
}
.season-subline strong { color: var(--cream); font-weight: 600; }

.season-winners-side {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.winner-card {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  transition: background 0.2s ease;
}
.winner-card:first-child { border-top: 1px solid var(--line); }
.winner-card:hover { background: var(--ink-3); margin: 0 -24px; padding: 28px 24px; }
.winner-medal {
  width: 44px; height: 44px;
  border: 1.5px solid var(--red);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
  color: var(--red);
  flex-shrink: 0;
}
.winner-name {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 28px;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 4px;
}
.winner-category {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  font-weight: 500;
}
.winner-result {
  text-align: right;
}
.winner-result .title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  color: var(--red);
  letter-spacing: 0.1em;
  line-height: 1.3;
}

.season-results-bar {
  background: var(--red);
  padding: 28px 64px;
  display: flex;
  justify-content: center;
  gap: 64px;
  align-items: center;
  border-top: 1px solid rgba(0,0,0,0.15);
}
.result-pill {
  text-align: center;
}
.result-pill .n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: var(--cream);
  line-height: 0.88;
  display: block;
}
.result-pill .l {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--cream);
  opacity: 0.85;
}
.result-pill-divider {
  width: 1px;
  height: 56px;
  background: rgba(246,241,232,0.25);
}

/* IDTA excellence */
.idta-section {
  padding: 140px 0;
  position: relative;
}
.idta-section::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 50%; height: 50%;
  background: radial-gradient(ellipse at 0% 100%, rgba(248,8,18,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.idta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  margin-top: 64px;
}
.idta-panel {
  padding: 56px 48px;
  border-right: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.idta-panel:last-child { border-right: none; }
.idta-panel.feature {
  background: linear-gradient(160deg, rgba(248,8,18,0.1), rgba(248,8,18,0.02));
}
.idta-panel-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 96px;
  color: var(--cream);
  line-height: 0.88;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.idta-panel-num .unit { font-size: 0.45em; color: var(--red); margin-left: 4px; }
.idta-panel h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.04em;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 16px;
}
.idta-panel .body {
  font-size: 14px;
  line-height: 1.75;
  color: var(--cream-dim);
  font-weight: 300;
}
.idta-panel .body + .body { margin-top: 14px; }
.idta-discipline-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.idta-tag {
  padding: 8px 14px;
  border: 1px solid var(--red);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--red);
}

/* Giving back */
.giving-back {
  padding: 100px 0;
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.charity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  margin-top: 56px;
}
.charity-card {
  padding: 44px 36px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s ease;
}
.charity-card:last-child { border-right: none; }
.charity-card:hover { background: var(--ink-3); }
.charity-icon {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--red);
  margin-bottom: 4px;
}
.charity-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 0.95;
}
.charity-body {
  font-size: 13px;
  color: var(--cream-dim);
  font-weight: 300;
  line-height: 1.65;
}

/* Long service */
.long-service {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.long-service::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, transparent 0, transparent 40px, rgba(248,8,18,0.025) 40px, rgba(248,8,18,0.025) 42px);
  pointer-events: none;
}
.service-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(120px, 18vw, 300px);
  color: var(--cream);
  line-height: 0.8;
  letter-spacing: -0.03em;
  opacity: 0.06;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.long-service-content { position: relative; }
.long-service h2 {
  font-size: clamp(44px, 6vw, 100px);
  color: var(--cream);
  line-height: 0.92;
  margin-bottom: 28px;
}
.long-service h2 .accent {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--red);
  letter-spacing: -0.02em;
}
.long-service p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--cream-dim);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

/* Counter animation */
.count-up { display: inline; }

/* ==================== RESPONSIVE — achievements ==================== */
@media (max-width: 1100px) {
  .numbers-grid { grid-template-columns: repeat(3, 1fr); }
  .number-block:nth-child(3) { border-right: none; }
  .number-block:nth-child(4) { border-top: 1px solid rgba(246,241,232,0.2); }
  .stages-grid { grid-template-columns: repeat(6,1fr); gap: 8px; }
  .stage-card.tall, .stage-card.mid, .stage-card.wide { min-height: 280px; }
  .season-split { grid-template-columns: 1fr; }
  .season-number-side { border-right: none; border-bottom: 1px solid var(--line); padding: 64px 32px; }
  .season-winners-side { padding: 48px 32px; }
  .season-results-bar { gap: 32px; padding: 20px 32px; }
  .idta-grid { grid-template-columns: 1fr; }
  .idta-panel { border-right: none; border-bottom: 1px solid var(--line); }
  .idta-panel:last-child { border-bottom: none; }
  .charity-grid { grid-template-columns: 1fr; }
  .charity-card { border-right: none; border-bottom: 1px solid var(--line); }
  .charity-card:last-child { border-bottom: none; }
  .achv-hero-foot { grid-template-columns: 1fr; gap: 28px; }
  .achv-hero-stat { text-align: left; }
}
@media (max-width: 720px) {
  .achv-hero { padding-bottom: 56px; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .number-block:nth-child(2) { border-right: none; }
  .number-block:nth-child(3) { border-right: 1px solid rgba(246,241,232,0.2); border-top: 1px solid rgba(246,241,232,0.2); }
  .number-block:nth-child(4), .number-block:nth-child(5) { border-top: 1px solid rgba(246,241,232,0.2); }
  .number-block:nth-child(6) { border-right: none; border-top: 1px solid rgba(246,241,232,0.2); }
  .stages-grid { grid-template-columns: 1fr; gap: 8px; }
  .stage-card.tall, .stage-card.mid, .stage-card.wide { min-height: 220px; }
  .season-number-side { padding: 48px 22px; }
  .season-winners-side { padding: 32px 22px; }
  .winner-card { grid-template-columns: auto 1fr; }
  .winner-result { display: none; }
  .season-results-bar { gap: 16px; flex-wrap: wrap; padding: 20px 22px; }
  .result-pill-divider { display: none; }
  .idta-panel { padding: 36px 22px; }
  .stages { padding: 80px 0; }
  .idta-section, .giving-back, .long-service { padding: 80px 0; }
}

/* ==================== MODALS ==================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(26,18,22,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--ink-2);
  border: 1px solid var(--line-strong);
  max-width: 760px;
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  max-height: calc(100vh - 48px);
  overflow: hidden;
}

.modal-photo-wrap {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: var(--ink-3);
}
.modal-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: absolute;
  inset: 0;
}
.modal-photo.hidden { display: none; }
.modal-photo-placeholder {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(248,8,18,0.18) 0%, rgba(26,18,22,0.9) 100%),
    repeating-linear-gradient(45deg, #3a1a20 0, #3a1a20 2px, #2a1218 2px, #2a1218 16px);
}
.modal-photo-placeholder.hidden { display: none; }
.modal-photo-label {
  position: absolute;
  bottom: 20px; left: 20px;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream-dim);
  font-weight: 500;
  opacity: 0.7;
}

.modal-body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.modal-discipline-label {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 16px;
}
.modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  letter-spacing: 0.02em;
  line-height: 0.92;
  color: var(--cream);
  margin-bottom: 24px;
}
.modal-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--cream-dim);
  font-weight: 300;
  flex: 1;
}
.modal-desc p + p { margin-top: 14px; }
.modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.modal-tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 10px;
  border: 1px solid var(--line-strong);
  color: var(--cream-dim);
}
.modal-tag.red { border-color: var(--red); color: var(--red); }
.modal-cta {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--red);
  color: var(--cream);
  padding: 14px 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: background 0.2s ease;
}
.modal-cta:hover { background: var(--red-deep); }

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 10;
  width: 36px; height: 36px;
  border: 1px solid var(--line-strong);
  background: var(--ink-2);
  color: var(--cream);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.modal-close:hover { background: var(--red); border-color: var(--red); }

@media (max-width: 720px) {
  .modal {
    grid-template-columns: 1fr;
    max-height: none;
    margin: auto 0 0;
    border-bottom: none;
  }
  .modal-overlay { align-items: flex-end; padding: 0; }
  .modal-photo-wrap { min-height: 240px; }
  .modal-body { padding: 28px 22px 36px; }
  .modal-title { font-size: 40px; }
}

/* Make genre cards pointer with opening hint */
.genre[data-modal] { cursor: pointer; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1100px) {
  .container { padding: 0 32px; }
  .nav, .nav.scrolled { padding-left: 32px; padding-right: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .stats-strip { grid-template-columns: repeat(2,1fr); }
  .stat { border-right: none; border-bottom: 1px solid var(--line); padding: 28px 0; }
  .stat:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 28px; }
  .stat:nth-child(2n) { padding-left: 28px; }
  .everyone-grid { grid-template-columns: 1fr; gap: 48px; }
  .offer-head { grid-template-columns: 1fr; gap: 28px; }
  .offer-head .blurb { justify-self: start; }
  .genre-grid { grid-template-columns: repeat(6,1fr); }
  .genre.hero-card, .genre.span-6 { grid-column: span 6; }
  .genre.span-4, .genre.span-3 { grid-column: span 3; }
  .achv-grid { grid-template-columns: repeat(4,1fr); }
  .achv.span-3, .achv.span-4 { grid-column: span 4; }
  .achv.span-2 { grid-column: span 2; }
  .scholarship { grid-template-columns: auto 1fr; grid-template-rows: auto auto; }
  .scholarship-badge { grid-row: 2; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi { border-right: none; border-bottom: 1px solid var(--line); }
  .testi:last-child { border-bottom: none; }
  .enrol-grid { grid-template-columns: 1fr; gap: 56px; }
  .enrol-side { border-left: none; padding-left: 0; border-top: 1.5px solid rgba(246,241,232,0.35); padding-top: 32px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .venue-maps { grid-template-columns: 1fr; }
  .class-row { grid-template-columns: 120px 1fr auto; gap: 16px; }
}
@media (max-width: 720px) {
  .container { padding: 0 22px; }
  .nav, .nav.scrolled { padding: 16px 22px; }
  .nav-links { gap: 16px; }
  .nav-links a:not(.cta) { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding-bottom: 64px; }
  .hero-foot { grid-template-columns: 1fr; gap: 28px; }
  .hero-meta { text-align: left; }
  .creds-item { font-size: 18px; gap: 40px; }
  .creds-track { gap: 40px; }
  .about, .offer, .achievements, .enrol, .everyone, .testimonials, .timetable, .contact-section { padding: 80px 0; }
  .stats-strip { grid-template-columns: 1fr; }
  .stat { border-right: none !important; padding: 24px 0 !important; }
  .age-band { grid-template-columns: 70px 1fr; }
  .genre-grid { grid-template-columns: 1fr; }
  .genre.hero-card, .genre.span-3, .genre.span-4, .genre.span-6, .genre.span-12 { grid-column: span 1; }
  .achv-grid { grid-template-columns: 1fr; }
  .achv.span-2, .achv.span-3, .achv.span-4 { grid-column: span 1; }
  .scholarship { grid-template-columns: 1fr; gap: 24px; }
  .scholarship-badge { grid-row: auto; }
  .foot-grid { grid-template-columns: 1fr; gap: 40px; }
  .foot-bottom { flex-direction: column; gap: 16px; }
  .enrol .actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { justify-content: center; }
  .photo-full { height: 260px; margin-top: 48px; }
  .photo-strip { grid-template-columns: 1fr; height: auto; }
  .photo-strip img { height: 240px; }
  .contact-form { padding: 28px 22px; }
  .class-row { grid-template-columns: 110px 1fr; }
  .class-tag { display: none; }
  .day-name { font-size: 36px; }
  .page-hero { padding: 130px 0 60px; }
  .venue-maps { grid-template-columns: 1fr; }
}

/* Blackpool break section */
.blackpool-break { height: 420px; }
.blackpool-break-logo { flex-shrink: 0; opacity: 0.92; max-width: min(300px, 35vw); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2,0.8,0.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ==================== RESPONSIVE — about & gallery shells ==================== */
@media (max-width: 720px) {
  .blackpool-break { height: auto; min-height: 260px; padding: 56px 0; }
  .blackpool-break-logo { display: none; }
  .blackpool-break-inner { height: auto !important; }
  .venues-grid-2col { grid-template-columns: 1fr !important; }
}
