:root {
  --bg: #050505;
  --bg-elevated: #111111;
  --bg-card: #161616;
  --text: #ffffff;
  --muted: #a8a8a8;
  --accent: #ffcc99;
  --accent-dark: #1a1a1a;
  --line: rgba(255, 255, 255, 0.12);
  --radius: 1.25rem;
  --radius-pill: 999px;
  --max: 1180px;
  --header: 4.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(ellipse 70% 45% at 18% 18%, rgba(80, 55, 35, 0.22), transparent 60%),
    var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 0;
}

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
}

.logo {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
}

.nav {
  display: flex;
  gap: 1.75rem;
  justify-content: center;
}

.nav a,
.footer-nav a,
.footer-social a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 400;
  transition: color 0.2s ease;
}

.nav a.is-active {
  color: var(--text);
}

.nav a:hover,
.footer-nav a:hover,
.footer-social a:hover {
  color: var(--text);
}

.header-cta {
  justify-self: end;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: transparent;
  color: var(--text);
  padding: 0.65rem;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  cursor: pointer;
  justify-self: end;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-pill);
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-sm {
  min-height: 2.5rem;
  padding: 0.55rem 1.15rem;
  font-size: 0.88rem;
}

.btn-primary {
  background: var(--accent);
  color: #111;
}

.btn-primary:hover {
  background: #ffd9b0;
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--text);
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  color: var(--accent);
  font-size: 0.95rem;
}

.hero-kicker p {
  color: var(--accent);
}

.icon-headphones {
  width: 3.1rem;
  height: 3.1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}

.icon-headphones__inner {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.icon-headphones svg {
  width: 1.05rem;
  height: 1.05rem;
}

.btn-with-icon svg {
  width: 0.85rem;
  height: 0.85rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  max-width: 10ch;
  margin-bottom: 1.25rem;
}

.hero-lead {
  color: var(--muted);
  max-width: 34rem;
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-actions .btn {
  white-space: nowrap;
}

.hero-media {
  position: relative;
  min-width: 0;
  width: 100%;
  background: #0a0a0a;
  border-radius: 1.5rem;
}

.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 1.5rem;
  overflow: hidden;
  background: #0a0a0a;
}

.hero-slide {
  margin: 0;
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-media img,
.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  border-radius: 1.5rem;
  filter: grayscale(0.15) contrast(1.05);
}

.hero-slider-nav {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(8px);
}

.hero-slider-btn {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
}

.hero-slider-btn:hover,
.hero-slider-btn:focus-visible {
  border-color: var(--accent);
  outline: none;
}

.hero-slider-btn svg {
  width: 1rem;
  height: 1rem;
}

.hero-slider-dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-slider-dots button {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.hero-slider-dots button.is-active {
  background: var(--accent);
}

.play-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 6.75rem;
  height: 6.75rem;
  border: 0;
  border-radius: 50%;
  background: #0a0a0a;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  text-decoration: none;
}

.play-badge__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin 12s linear infinite;
}

.play-badge__ring text {
  fill: #fff;
  font-size: 9.2px;
  font-weight: 700;
  letter-spacing: 1.5px;
  font-family: "Outfit", sans-serif;
}

.play-badge__icon {
  position: relative;
  z-index: 1;
  width: 1.15rem;
  height: 1.15rem;
  margin-left: 0.15rem;
}

.play-badge__icon svg {
  width: 100%;
  height: 100%;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.stats {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto 4.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-top: 0.5rem;
}

.stat-value {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.55rem;
}

.stat-value span {
  color: var(--accent);
}

.stat-label {
  color: var(--muted);
  font-size: 0.95rem;
}

.about,
.contact {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto 6rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: center;
}

.about {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
}

.about-media {
  width: 100%;
  min-width: 0;
  max-width: none;
}

.about-media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  border-radius: 1.5rem;
  background: #0a0a0a;
  filter: grayscale(0.2) contrast(1.05);
}

.accent-line {
  display: block;
  width: 2.5rem;
  height: 2px;
  background: var(--accent);
  margin-bottom: 1.25rem;
}

.accent-line--center {
  margin-inline: auto;
}

.about-copy h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 12ch;
  margin-bottom: 1.25rem;
}

.about-copy p,
.contact-copy p {
  color: var(--muted);
  margin-bottom: 1rem;
  max-width: 36rem;
}

.about-copy .btn {
  margin-top: 0.75rem;
}

.section-heading {
  text-align: left;
  margin-bottom: 2.5rem;
}

.section-heading--center {
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.contact-icon {
  width: 1.35rem;
  height: 1.35rem;
  color: var(--accent);
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.services,
.music,
.events,
.academy,
.live,
.in-the-mix {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto 6rem;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.event-card {
  display: grid;
  grid-template-columns: minmax(5.5rem, 38%) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
  min-width: 0;
  padding: 0.85rem;
  background:
    linear-gradient(165deg, rgba(255, 204, 153, 0.06), transparent 55%),
    var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.event-card__media {
  position: relative;
  min-width: 0;
  background: #0a0a0a;
  border-radius: calc(var(--radius) - 0.35rem);
  overflow: hidden;
  align-self: stretch;
}

.event-card__media img {
  width: 100%;
  height: 100%;
  min-height: 7.5rem;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  border-radius: calc(var(--radius) - 0.35rem);
}

.event-card__media .adaptive-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: calc(var(--radius) - 0.35rem);
  background: transparent;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.event-card__media.is-playing .adaptive-video {
  opacity: 1;
}

.event-card--past {
  grid-template-columns: minmax(5.75rem, 34%) minmax(0, 1fr);
}

.event-card--past .event-card__media {
  min-height: 0;
  aspect-ratio: 3 / 4;
  align-self: start;
}

.event-card--past .event-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center top;
}

.event-card__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.55rem 0.55rem 0.55rem 0;
}

.event-card__date {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-card__date time {
  font-family: "Outfit", sans-serif;
}

.event-card h3 {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.15;
}

.event-card__meta {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 0.15rem;
}

.tour-feature--secondary {
  margin-top: 0.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
  opacity: 0.92;
}

.tour-feature--secondary .tour-feature__media {
  max-width: 22rem;
}

.tour-feature--secondary .tour-feature__body h3 {
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  margin-bottom: 1.1rem;
}

.academy-brand {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  letter-spacing: 0.04em;
  color: var(--accent);
  margin: 0.35rem 0 0.75rem;
}

.academy .section-heading h2 {
  margin-top: 0.15rem;
}

.page-main {
  padding-top: 1.5rem;
}

.section-promo {
  max-width: 34rem;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 1.25rem;
  justify-items: center;
}

.section-promo p {
  color: var(--muted);
}

.academy-teaser,
.academy-intro {
  max-width: 40rem;
  margin: 0 auto 2.25rem;
  text-align: center;
  color: var(--muted);
}

.academy-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 0 auto 2.75rem;
  max-width: var(--max);
}

.academy-highlights article {
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}

.academy-highlights h3 {
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
}

.academy-highlights p {
  color: var(--muted);
  font-size: 0.95rem;
}

.academy-curriculum--public {
  max-width: 48rem;
  margin: 0 auto 2.5rem;
}

.academy-includes {
  max-width: 40rem;
  margin: 0 auto 2.75rem;
}

.academy-includes h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  text-align: center;
}

.academy-includes ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.academy-includes li {
  position: relative;
  padding: 0.85rem 1rem 0.85rem 2.35rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.85rem;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.25);
}

.academy-includes li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.15rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}

.academy-enroll {
  max-width: 40rem;
  margin: 0 auto 2.75rem;
  text-align: center;
  padding: 1.85rem 1.5rem;
  border: 1px solid rgba(255, 204, 153, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(255, 204, 153, 0.1), transparent 60%),
    var(--bg-elevated);
}

.academy-enroll h3 {
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  margin-bottom: 0.75rem;
}

.academy-gate {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elevated);
}

.academy-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 0 0 2.5rem;
}

.academy-media-grid__item {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  aspect-ratio: 9 / 16;
  border-radius: 2px;
  max-height: 28rem;
}

.academy-media-grid__item video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #000;
  pointer-events: none;
}

@media (max-width: 640px) {
  .academy-media-grid {
    grid-template-columns: 1fr;
  }

  .academy-media-grid__item {
    max-height: none;
    max-width: 18rem;
    margin-inline: auto;
    width: 100%;
  }
}

.academy-gate--vault {
  min-height: 0;
}

.academy-gate.is-unlocked .academy-paywall {
  display: none;
}

.academy-locked {
  padding: 1.75rem 1.5rem 2rem;
}

.academy-curriculum__title {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
}

.academy-modules {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.academy-modules li {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.85rem;
  background: rgba(0, 0, 0, 0.35);
}

.academy-modules__label {
  display: block;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.academy-modules strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.academy-modules p {
  color: var(--muted);
  font-size: 0.92rem;
}

.academy-video-placeholder {
  display: grid;
  place-items: center;
  min-height: 11rem;
  border-radius: 0.85rem;
  border: 1px dashed rgba(255, 204, 153, 0.35);
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(255, 204, 153, 0.08), transparent 70%),
    #0a0a0a;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.academy-video-placeholder--open {
  border-style: solid;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.academy-paywall {
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.academy-paywall--inline {
  position: relative;
  inset: auto;
  background: transparent;
}

.academy-paywall__panel {
  width: min(100%, 32rem);
  text-align: center;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(255, 204, 153, 0.22);
  border-radius: var(--radius);
  background: rgba(12, 12, 12, 0.72);
}

.academy-paywall__eyebrow {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.academy-paywall__panel h3,
.academy-modal__dialog h3 {
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  margin-bottom: 0.75rem;
}

.academy-paywall__copy {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.academy-paywall__price {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.65rem;
  margin-bottom: 0.45rem;
}

.academy-paywall__price span {
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  margin: 0 0.35rem;
}

.academy-paywall__price-note {
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 1.25rem;
}

.academy-paywall__actions,
.academy-modal__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.academy-modal__price {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 0.75rem !important;
}

.academy-content {
  padding: 1.75rem 1.5rem 2rem;
}

.academy-content[hidden] {
  display: none;
}

.academy-curriculum--open .academy-modules li {
  background: rgba(255, 255, 255, 0.03);
}

.academy-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.academy-modal[hidden] {
  display: none;
}

.academy-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
}

.academy-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 28rem);
  max-height: min(92vh, 44rem);
  overflow-y: auto;
  padding: 2rem 1.6rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(255, 204, 153, 0.1), transparent 55%),
    #111;
}

.academy-modal__dialog--remote {
  width: min(100%, 32rem);
}

.academy-modal__dialog p {
  color: var(--muted);
  margin-bottom: 1.35rem;
}

.academy-remote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  text-align: left;
}

.academy-remote-form label {
  display: grid;
  gap: 0.4rem;
}

.academy-remote-form label.full,
.academy-remote-form .full {
  grid-column: 1 / -1;
}

.academy-remote-form span {
  color: var(--muted);
  font-size: 0.85rem;
}

.academy-remote-form input,
.academy-remote-form textarea,
.academy-remote-form select {
  width: 100%;
  max-width: 100%;
  border: 1px solid var(--line);
  background: #0c0c0c;
  color: var(--text);
  border-radius: 0.85rem;
  padding: 0.85rem 1rem;
  font: inherit;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.academy-remote-form select {
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 1.15rem) calc(50% - 0.15rem), calc(100% - 0.85rem) calc(50% - 0.15rem);
  background-size: 0.35rem 0.35rem, 0.35rem 0.35rem;
  background-repeat: no-repeat;
  padding-right: 2.4rem;
}

.academy-remote-form select option {
  background: #111;
  color: var(--text);
}

.academy-remote-form input:focus,
.academy-remote-form textarea:focus,
.academy-remote-form select:focus {
  border-color: rgba(255, 204, 153, 0.55);
}

.academy-remote-form textarea {
  resize: vertical;
  min-height: 6rem;
}

.academy-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.academy-modal__close:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.academy-modal__close svg {
  width: 1rem;
  height: 1rem;
}

body.academy-modal-open {
  overflow: hidden;
}

.live .section-lead strong {
  color: var(--text);
  font-weight: 600;
}

.live-rows {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.live-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}

.live-row__media {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  aspect-ratio: 9 / 16;
  min-width: 0;
  border-radius: 2px;
}

.live-row__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #000;
  pointer-events: none;
}

.live-row__label {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  padding: 0 0.25rem;
}

.live-row__label img {
  display: block;
  width: 100%;
  max-width: 16rem;
  height: auto;
  object-fit: contain;
  object-position: center;
  /* Chrome PNG has solid black bg — screen blend drops black on dark site */
  mix-blend-mode: screen;
}

/* EADN Fridays asset is taller (1024×414 vs 1024×321) — scale to match Sat/Sun */
.live-row__label--friday img {
  max-width: 12.4rem;
  max-height: 5rem;
}

.live-row.is-loading .live-row__media::after,
.adaptive-media.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      110deg,
      transparent 30%,
      rgba(255, 204, 153, 0.08) 50%,
      transparent 70%
    );
  background-size: 200% 100%;
  animation: live-shimmer 1.2s ease-in-out infinite;
  pointer-events: none;
}

.video-mute-btn {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.72);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.video-mute-btn:hover {
  background: rgba(20, 20, 20, 0.88);
  border-color: rgba(255, 204, 153, 0.55);
  color: var(--accent);
}

.video-mute-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.video-mute-btn:active {
  transform: scale(0.96);
}

.video-mute-btn.is-unmuted {
  border-color: rgba(255, 204, 153, 0.7);
  color: var(--accent);
  background: rgba(26, 20, 12, 0.85);
}

.video-mute-btn__icon {
  width: 1.15rem;
  height: 1.15rem;
  display: none;
}

.video-mute-btn:not(.is-unmuted) .video-mute-btn__icon--muted,
.video-mute-btn.is-unmuted .video-mute-btn__icon--unmuted {
  display: block;
}

.event-card__media .video-mute-btn {
  right: 0.45rem;
  bottom: 0.45rem;
  width: 2.15rem;
  height: 2.15rem;
}

.event-card__media .video-mute-btn__icon {
  width: 1rem;
  height: 1rem;
}

@keyframes live-shimmer {
  to { background-position: -200% 0; }
}

.section-lead {
  color: var(--muted);
  margin-top: 0.85rem;
  max-width: 34rem;
  margin-inline: auto;
}

.section-lead--left {
  margin-inline: 0;
  text-align: left;
}

.mix-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: start;
}

.mix-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.mix-card__media {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  aspect-ratio: 9 / 16;
  border-radius: 2px;
}

.mix-card__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #000;
  pointer-events: none;
}

.mix-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0 0.15rem;
}

.mix-card__eyebrow {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mix-card__body h3 {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.15;
}

.mix-card__body p:last-child {
  color: var(--muted);
  font-size: 0.9rem;
}

.music-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  padding-right: 0.35rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 204, 153, 0.45) transparent;
}

.music-grid--teaser {
  max-height: none;
  overflow: visible;
}

.music-grid--all {
  max-height: none;
  overflow: visible;
}

.music-grid:not(.music-grid--teaser):not(.music-grid--all) {
  max-height: min(70vh, 52rem);
  overflow-y: auto;
}

.music-grid::-webkit-scrollbar {
  width: 6px;
}

.music-grid::-webkit-scrollbar-thumb {
  background: rgba(255, 204, 153, 0.45);
  border-radius: 999px;
}

.music-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: 1.15rem 1.15rem 0.85rem;
  min-width: 0;
}

.music-card h3 {
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  margin-bottom: 0.85rem;
  color: var(--accent);
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  line-height: 1.35;
}

.music-embed {
  border-radius: 0.75rem;
  overflow: hidden;
  background: #0a0a0a;
}

.music-embed iframe {
  display: block;
  border: 0;
}

.music-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2rem;
}

/* Let's Party: full-bleed stack — SoundCloud players on the page, no card chrome */
.music--party {
  width: min(52rem, calc(100% - 2rem));
  margin-inline: auto;
}

.music--party .section-heading {
  margin-bottom: 2rem;
}

.mix-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  width: 100%;
}

.mix-list__item {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-width: 0;
}

.mix-list__title {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.35;
  color: var(--accent);
}

.mix-list__item iframe {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
}

.genre-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.genre-list li {
  display: grid;
  grid-template-columns: minmax(13rem, 16rem) minmax(0, 1fr) auto;
  column-gap: 2rem;
  row-gap: 0.75rem;
  align-items: center;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
}

.genre-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.genre-list h3 {
  font-size: 1.15rem;
  min-width: 0;
  line-height: 1.2;
}

.genre-list p {
  color: var(--muted);
  max-width: 34rem;
  min-width: 0;
  margin: 0;
}

.genre-link {
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.genre-link:hover {
  border-color: var(--accent);
  background: rgba(255, 204, 153, 0.08);
}

.genre-link svg {
  width: 1rem;
  height: 1rem;
}

.tour-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.tour-feature__media {
  min-width: 0;
  background: #0a0a0a;
  border-radius: 1.25rem;
  overflow: hidden;
}

.tour-feature__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 1.25rem;
}

.tour-feature__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tour-feature__eyebrow {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.tour-feature__body h3 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  margin-bottom: 1.5rem;
}

.tour-dates {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tour-dates li {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.tour-dates li:last-child {
  border-bottom: 1px solid var(--line);
}

.tour-dates time {
  color: var(--text);
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.tour-dates__venue {
  color: var(--muted);
  font-size: 0.95rem;
}

.past-events {
  margin-top: 3.25rem;
  padding-top: 2.75rem;
  border-top: 1px solid var(--line);
}

.past-events__heading {
  margin-bottom: 2rem;
}

.past-events-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

/* Past events page uses infinite scroll ([data-past-infinite]); home teaser
   injects only N cards via JS. Do not hide cards with nth-child — that left
   View All leftovers feeling like an incomplete “full roster”. */

.past-events-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}

.past-events-actions[hidden] {
  display: none;
}

.past-events-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.past-events-loader[hidden] {
  display: none;
}

.past-events-loader__spinner {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--accent);
  animation: past-spin 0.7s linear infinite;
}

@keyframes past-spin {
  to {
    transform: rotate(360deg);
  }
}

.past-events-sentinel {
  height: 1px;
  margin-top: 1rem;
}

.past-events-end {
  text-align: center;
  color: var(--muted);
  margin-top: 1.5rem;
  font-size: 0.92rem;
}

.past-events-end[hidden] {
  display: none;
}

.past-events--teaser {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.past-events--teaser .past-events__heading {
  margin-bottom: 1.75rem;
}

.past-events--teaser .past-events-grid {
  margin-bottom: 0;
}

.past-events--teaser .past-events-actions {
  margin-top: 1.75rem;
}

.past-events--teaser .section-promo {
  margin-top: 1.5rem;
  justify-items: center;
  text-align: center;
}

.mix-grid:not(.is-expanded) > .mix-card:nth-child(n + 5) {
  display: none;
}

.mix-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}

.mix-actions[hidden] {
  display: none;
}

.events-footer {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 2rem 0;
  margin-bottom: 5rem;
  color: var(--accent);
  opacity: 0.4;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 2rem;
  animation: marquee 28s linear infinite;
  font-family: "Syne", sans-serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.contact-meta {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.contact-meta li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
}

.contact-meta a:hover {
  color: var(--text);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  padding: 1.5rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form label.full,
.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form span {
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  max-width: 100%;
  border: 1px solid var(--line);
  background: #0c0c0c;
  color: var(--text);
  border-radius: 0.85rem;
  padding: 0.9rem 1rem;
  font: inherit;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23a8a8a8' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.contact-form select option {
  background: #111;
  color: var(--text);
}

.contact-form input[type="date"] {
  color-scheme: dark;
  min-height: 3.15rem;
}

.contact-form input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.85;
  filter: invert(1) brightness(1.1);
  padding: 0.2rem;
}

.contact-form input[type="date"]::-webkit-datetime-edit {
  color: var(--text);
}

.contact-form input[type="date"]:invalid::-webkit-datetime-edit {
  color: var(--muted);
}

.contact-form .custom-event-field[hidden] {
  display: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(255, 204, 153, 0.7);
}

.site-footer {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--line);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  align-items: flex-start;
  gap: clamp(2.5rem, 6vw, 4.5rem);
}

.footer-nav,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-social {
  min-width: 6.5rem;
}

.footer-bottom {
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-bottom a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.footer-bottom a:hover {
  color: var(--text, #fff);
}

@media (max-width: 1100px) and (min-width: 961px) {
  .mix-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mix-card__media {
    aspect-ratio: 9 / 14;
  }
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .logo {
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
  }

  .nav.is-open {
    display: flex;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem 1.5rem 1.5rem;
    background: #0a0a0a;
    border-bottom: 1px solid var(--line);
    z-index: 60;
  }

  .nav-toggle {
    display: flex;
  }

  .hero,
  .about,
  .contact,
  .tour-feature,
  .music-grid,
  .stats,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .hero {
    width: min(var(--max), calc(100% - 2rem));
    padding-top: 1.5rem;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  .hero-media {
    min-width: 0;
    width: 100%;
  }

  .hero-slider,
  .hero-media img,
  .hero-slide img {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
  }

  .hero-slider-nav {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .play-badge {
    width: 5.5rem;
    height: 5.5rem;
  }

  .about {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-media,
  .about-media img {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .genre-list li {
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 1rem;
    row-gap: 0.65rem;
  }

  .genre-list h3 {
    grid-column: 1;
    grid-row: 1;
  }

  .genre-list p {
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: none;
  }

  .genre-link {
    grid-column: 2;
    grid-row: 1;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
    width: min(var(--max), calc(100% - 2rem));
    margin-bottom: 3.5rem;
  }

  .events,
  .academy,
  .services,
  .music,
  .live,
  .in-the-mix,
  .about,
  .contact {
    width: min(var(--max), calc(100% - 2rem));
  }

  .events-grid,
  .past-events-grid {
    grid-template-columns: 1fr;
  }

  .mix-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
  }

  .mix-card {
    flex: 0 0 min(72vw, 16rem);
    scroll-snap-align: start;
  }

  .tour-feature--secondary {
    padding-top: 2rem;
  }

  .tour-feature--secondary .tour-feature__media {
    max-width: none;
  }

  .academy-highlights {
    grid-template-columns: 1fr;
  }

  .academy-paywall__actions,
  .academy-modal__actions {
    flex-direction: column;
  }

  .academy-paywall__actions .btn,
  .academy-modal__actions .btn {
    width: 100%;
  }

  .academy-remote-form {
    grid-template-columns: 1fr;
  }

  .live-rows {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
  }

  .live-row {
    flex: 0 0 min(72vw, 16rem);
    scroll-snap-align: start;
  }

  .live-row__label img {
    max-width: none;
  }

  .live-row__label--friday img {
    max-width: 77.5%;
    max-height: 4.5rem;
  }

  .footer-top {
    flex-direction: column;
    gap: 1.75rem;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
    align-items: start;
  }

  .footer-nav,
  .footer-social {
    gap: 0.5rem;
  }

  .site-footer {
    width: min(var(--max), calc(100% - 2rem));
  }
}

@media (max-width: 560px) {
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .stats {
    gap: 1.25rem;
  }

  .stat-value {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .music-cta .btn {
    width: 100%;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .marquee-track {
    font-size: clamp(1.8rem, 10vw, 2.8rem);
  }
}
