html,
body {
  scroll-behavior: smooth;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
}

:root {
  --bg: #090b10;
  --panel: #11151d;
  --panel-2: #171c26;
  --text: #eef2ff;
  --muted: #9aa4bd;
  --line: rgba(255,255,255,0.08);
  --gold: #f3b33d;
  --gold-2: #ffcb6b;
  --blue: #5aa7ff;
  --shadow: 0 20px 50px rgba(0,0,0,0.35);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(90,167,255,0.12), transparent 28%),
    radial-gradient(circle at top left, rgba(243,179,61,0.16), transparent 24%),
    linear-gradient(180deg, #07090d 0%, #0b0f16 100%);
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.wrap { width: min(var(--max), calc(100% - 28px)); margin: 0 auto; }

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(9,11,16,0.7);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-badge {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(243,179,61,0.2), rgba(90,167,255,0.18));
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--gold-2);
  box-shadow: var(--shadow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
  padding: 11px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.menu-toggle {
  display: none;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-weight: 700;
}

.hero {
  padding: 72px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-2);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 12px;
  border: 1px solid rgba(243,179,61,0.24);
  border-radius: 999px;
  background: rgba(243,179,61,0.08);
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 0.95;
  margin: 0 0 18px;
  letter-spacing: -0.05em;
}

.hero p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 620px;
  margin: 0 0 26px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.btn {
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: 0.22s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #101114;
  box-shadow: var(--shadow);
}

.btn-primary:hover { transform: translateY(-2px); }

.btn-secondary {
  background: rgba(255,255,255,0.03);
  border-color: var(--line);
  color: var(--text);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 640px;
}

.stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
}

.stat strong {
  display: block;
  font-size: 1.35rem;
  color: var(--gold-2);
  margin-bottom: 4px;
}

.stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-card {
  position: relative;
  min-height: 580px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(17,21,29,0.12), rgba(17,21,29,0.92));
  box-shadow: var(--shadow);
}

.hero-video,
.media-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #000;
}

.media-video {
  object-fit: contain;
  background: #000;
}

.video-shell {
  position: relative;
  overflow: hidden;
  background: #040507;
}

.vertical-reel-shell {
  aspect-ratio: 9 / 16;
}

.hero-card.overlay-hidden .hero-overlay {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
}

.hero-overlay-toggle {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(9,11,16,0.72);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.28);
  cursor: pointer;
}

.hero-overlay {
  position: absolute;
  top: 18px;
  left: 18px;
  max-width: min(320px, calc(100% - 36px));
  background: rgba(9,11,16,0.72);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 14px 16px;
  backdrop-filter: blur(10px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.hero-overlay h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.hero-overlay p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-overlay strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.hero-overlay strong::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold-2);
  box-shadow: 0 0 0 6px rgba(255,203,107,0.14);
}

section {
  padding: 34px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 620px;
}

.about-card,
.service-card,
.media-card,
.testimonial,
.booking-card,
.contact-card,
.cta-band {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  overflow: hidden;
}

.about-image {
  min-height: 380px;
  background: linear-gradient(180deg, rgba(8,10,14,0.18), rgba(8,10,14,0.42)), url('atpark.PNG') center/cover no-repeat;
}

.about-copy {
  padding: 28px;
}

.about-copy h3 {
  margin-top: 0;
  font-size: 1.5rem;
}

.about-copy p { color: var(--muted); }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.chip {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: #dfe7ff;
  font-size: 0.92rem;
}

.services-grid,
.media-grid,
.testimonials-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

.services-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  padding: 22px;
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(243,179,61,0.18), rgba(90,167,255,0.18));
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--gold-2);
  font-weight: 900;
}

.service-card h3 { margin: 0 0 8px; }
.service-card p { margin: 0 0 12px; color: var(--muted); }
.service-card ul {
  padding-left: 18px;
  margin: 0;
  color: #d7def4;
}

.service-card li + li { margin-top: 8px; }

.media-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.media-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.02)),
    radial-gradient(circle at top, rgba(243,179,61,0.08), transparent 45%);
}

.media-thumb {
  position: relative;
  aspect-ratio: 16 / 11;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.62)),
    url('drum.jpg') center/cover no-repeat;
}

.media-reel-thumb {
  justify-content: center;
  align-items: center;
  padding: 22px;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.08), transparent 42%),
    linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.52)),
    #090b10;
}

.media-card:nth-child(2) .media-thumb {
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.55)),
    url('hiphop-session.jpg') center/cover no-repeat;
}

.media-video-shell {
  width: min(100%, 220px);
  aspect-ratio: 9 / 16;
  min-height: 0;
  max-height: min(62vh, 390px);
  margin: 0 auto;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.06), transparent 40%),
    #06080c;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.stage-energy-shell {
  aspect-ratio: 9 / 16;
}

.stage-energy-video {
  object-fit: contain;
  object-position: center;
}

.media-card:first-child .media-copy {
  padding-top: 18px;
}

.media-card:first-child .media-copy {
  min-height: 0;
}

.media-card:nth-child(3) .media-thumb {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.55)),
    url('drum.jpg') center/cover no-repeat;
}

.media-copy {
  padding: 22px 20px 24px;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
}

.media-copy h3 {
  margin: 0;
  font-size: 1.14rem;
}

.media-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.media-copy .btn {
  margin-top: auto;
  width: fit-content;
}

.media-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(9,11,16,0.72);
  border: 1px solid rgba(255,255,255,0.1);
  color: #f7f8ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.media-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: #dfe7ff;
  font-size: 0.82rem;
  line-height: 1;
}

.media-note {
  color: #dfe7ff;
  font-size: 0.92rem;
  font-weight: 700;
}

.class-spotlight {
  padding: 0;
}

.class-spotlight-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(243,179,61,0.10), rgba(90,167,255,0.08));
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.class-spotlight-image {
  min-height: 520px;
  background: linear-gradient(180deg, rgba(8,10,14,0.15), rgba(8,10,14,0.55)), url('hiphop-session.jpg') center/cover no-repeat;
}

.class-spotlight-copy {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spotlight-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-2);
  border: 1px solid rgba(243,179,61,0.22);
  background: rgba(243,179,61,0.08);
  margin-bottom: 16px;
}

.class-spotlight-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.class-spotlight-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
}

.spotlight-points {
  display: grid;
  gap: 12px;
  margin: 10px 0 22px;
}

.spotlight-points div {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: #dfe7ff;
}

.spotlight-points strong {
  color: var(--gold-2);
}

.spotlight-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.testimonials-grid {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial {
  padding: 22px;
}

.testimonial p {
  margin: 0 0 16px;
  color: #dfe5f8;
}

.testimonial strong {
  display: block;
  margin-bottom: 4px;
}

.testimonial span { color: var(--muted); font-size: 0.92rem; }

.booking-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  overflow: hidden;
}

.booking-copy {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.booking-copy h3 {
  margin-top: 0;
  font-size: 1.6rem;
}

.booking-copy p,
.booking-copy li { color: var(--muted); }

.booking-copy ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.booking-form {
  padding: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.field label {
  font-weight: 700;
  color: #d6def6;
  font-size: 0.92rem;
}

.video-shell:fullscreen,
.video-shell:-webkit-full-screen {
  width: 100vw;
  height: 100vh;
  max-width: none;
  border-radius: 0;
  background: #000;
  display: grid;
  place-items: center;
}

.video-shell:fullscreen::after,
.video-shell:-webkit-full-screen::after {
  display: none;
}

.video-shell:fullscreen .hero-video,
.video-shell:fullscreen .media-video,
.video-shell:-webkit-full-screen .hero-video,
.video-shell:-webkit-full-screen .media-video {
  position: static;
  inset: auto;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  background: #000;
}

.video-shell:fullscreen .hero-overlay,
.video-shell:-webkit-full-screen .hero-overlay,
.video-shell:fullscreen .hero-overlay-toggle,
.video-shell:-webkit-full-screen .hero-overlay-toggle {
  display: none;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  outline: none;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(243,179,61,0.6);
  box-shadow: 0 0 0 3px rgba(243,179,61,0.12);
}

.full { grid-column: 1 / -1; }

.cta-band {
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
}

.cta-band h3 {
  margin: 0 0 6px;
  font-size: 1.4rem;
}

.cta-band p {
  margin: 0;
  color: var(--muted);
}

.contact-card {
  padding: 24px;
}

.pricing-grid,
.social-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.price-card,
.social-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.price-card {
  padding: 24px;
}

.price-label {
  color: var(--muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.price-amount {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--gold-2);
  line-height: 1;
  margin-bottom: 14px;
}

.price-card p {
  color: var(--muted);
  margin: 0 0 14px;
}

.price-card ul {
  margin: 0 0 18px;
  padding-left: 18px;
  color: #dfe7ff;
}

.price-card ul li + li {
  margin-top: 8px;
}

.social-card {
  padding: 0;
}

.social-preview {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.15rem;
  color: #fff;
  background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.55)), url('drum.jpg') center/cover no-repeat;
}

.social-card:nth-child(2) .social-preview {
  background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.55)), url('hiphop-session.jpg') center/cover no-repeat;
}

.social-card:nth-child(3) .social-preview {
  background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.55)), url('drum.jpg') center/cover no-repeat;
}

.social-copy {
  padding: 18px;
}

.social-copy h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.social-copy p {
  margin: 0 0 14px;
  color: var(--muted);
}

.footer-grid {
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.contact-item {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
}

.contact-item small {
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
}

.site-footer {
  padding: 20px 0 max(20px, env(safe-area-inset-bottom));
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.auth-modal.open {
  display: flex;
}

.auth-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(10px);
}

.auth-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  padding: 26px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(17,21,29,0.96), rgba(11,15,22,0.98));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.auth-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.auth-copy {
  margin: 0 0 18px;
  color: var(--muted);
}

.auth-form .btn {
  width: 100%;
}

.auth-close {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  cursor: pointer;
}

@media (max-width: 1080px) {
  .hero-grid,
  .about-card,
  .booking-card,
  .footer-grid,
  .services-grid,
  .media-grid,
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-card,
  .about-image { min-height: 420px; }

  .booking-copy { border-right: 0; border-bottom: 1px solid var(--line); }

  .media-grid {
    grid-auto-rows: auto;
  }
}

@media (max-width: 900px) {
  .class-spotlight-card {
    grid-template-columns: 1fr;
  }

  .class-spotlight-image {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .nav-inner,
  .section-head,
  .cta-band,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-inner {
    width: 100%;
    align-items: stretch;
  }

  .nav-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
    width: 100%;
    gap: 10px;
    padding-top: 10px;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links .nav-cta {
    text-align: center;
  }

  .hero-grid,
  .about-card,
  .services-grid,
  .media-grid,
  .testimonials-grid,
  .booking-card,
  .footer-grid,
  .hero-stats,
  .form-grid,
  .pricing-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-card { min-height: 430px; }
  .about-image { min-height: 300px; }
  .container, .wrap { width: min(var(--max), calc(100% - 20px)); }
  body { padding-bottom: 92px; }

  .hero-overlay-toggle {
    top: 14px;
    right: 14px;
  }

  .media-video-shell {
    width: min(100%, 240px);
    max-height: min(60vh, 420px);
  }
  .auth-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
