/* ==============================================
   SHAY BACA — styles.css
   Dark · Minimal · Club
   ============================================== */

#mixes { display: none; }

:root {
  --bg:              #080808;
  --surface:         #0d0d0d;
  --card:            #121212;
  --card-hover:      #181818;
  --border:          #1c1c1c;
  --border-mid:      #252525;
  --text:            #f0f0f0;
  --text-dim:        #aaaaaa;
  --text-muted:      #777777;
  --neon-blue:       #00c8ff;
  --neon-purple:     #b44dff;
  --neon-blue-a15:   rgba(0, 200, 255, 0.15);
  --neon-blue-a07:   rgba(0, 200, 255, 0.07);
  --neon-purple-a15: rgba(180, 77, 255, 0.15);
  --neon-purple-a07: rgba(180, 77, 255, 0.07);
  --font-head:       'Space Grotesk', sans-serif;
  --font-body:       'Inter', sans-serif;
  --max-w:           1080px;
  --pad-x:           48px;
  --pad-section:     128px;
  --radius:          2px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
button { cursor: pointer; font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--font-head); }

/* ============================================
   NAV
   ============================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 28px var(--pad-x);
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 18px var(--pad-x);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.75; }
.nav-logo-img {
  height: 30px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links .nav-cta {
  color: var(--text);
  border: 1px solid var(--border-mid);
  padding: 9px 22px;
  border-radius: var(--radius);
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.nav-links .nav-cta:hover {
  border-color: var(--neon-blue);
  color: var(--neon-blue);
  box-shadow: 0 0 16px var(--neon-blue-a15);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  z-index: 201;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
#hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 80px var(--pad-x) 0;
  overflow: hidden;
}
.hero-bg-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 18% 65%, rgba(0, 200, 255, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 45% 55% at 82% 28%, rgba(180, 77, 255, 0.05) 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 1; }
.hero-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.hero-logo-wrap {
  margin-bottom: 36px;
}
.hero-logo-img {
  width: clamp(280px, 42vw, 560px);
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.hero-genres {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 52px;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(1); }
  50%       { opacity: 0.8;  transform: scaleY(1.1); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s, transform 0.2s, border-color 0.25s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--neon-blue);
  color: #000;
  font-weight: 600;
  box-shadow: 0 0 24px rgba(0, 200, 255, 0.18);
}
.btn-primary:hover {
  background: #fff;
  box-shadow: 0 0 36px rgba(0, 200, 255, 0.35);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-mid);
}
.btn-ghost:hover {
  border-color: var(--neon-blue);
  color: var(--neon-blue);
  box-shadow: 0 0 18px var(--neon-blue-a07);
  transform: translateY(-2px);
}
.btn-full { width: 100%; }

/* ============================================
   SECTION BASE
   ============================================ */
.section { padding: var(--pad-section) var(--pad-x); }
.section-surface { background: var(--surface); }
.container { max-width: var(--max-w); margin: 0 auto; }

.section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--neon-blue);
  margin-bottom: 24px;
}
h2 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.section-sub {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 64px;
}

/* Neon gradient text */
.neon-text {
  background: linear-gradient(130deg, var(--neon-blue) 0%, var(--neon-purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text h2 { margin-bottom: 24px; }
.about-text p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.85;
  margin-bottom: 16px;
}
.genre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
}
.tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  color: var(--text-dim);
  transition: border-color 0.2s, color 0.2s;
}
.tag:hover { border-color: var(--text-muted); color: var(--text); }
.tag-accent {
  border-color: rgba(180, 77, 255, 0.3);
  color: var(--neon-purple);
}
.tag-accent:hover { border-color: var(--neon-purple); color: var(--neon-purple); }

/* About photo */
.about-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  display: block;
}

/* Photo placeholder */
.photo-placeholder {
  aspect-ratio: 3 / 4;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.photo-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(0, 200, 255, 0.03) 0%,
    rgba(180, 77, 255, 0.04) 100%);
  pointer-events: none;
}
.photo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 1;
}
.photo-icon { opacity: 0.4; }

/* ============================================
   experience
   ============================================ */
.experience-header { margin-bottom: 48px; }
.experience-header h2 { margin-bottom: 12px; }

/* Tab nav */
.experience-tab-nav {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
  overflow-x: auto;
  scrollbar-width: none;
}
.experience-tab-nav::-webkit-scrollbar { display: none; }
.experience-tab-btn {
  padding: 10px 24px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.experience-tab-btn:hover { color: var(--text-dim); }
.experience-tab-btn.active {
  color: var(--text);
  border-bottom-color: var(--neon-blue);
}

/* Panels */
.experience-panel { display: none; }
.experience-panel.active { display: block; }
.experience-panel-intro {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.experience-panel-note {
  margin-top: 32px;
  font-size: 13px;
  color: var(--text-muted);
}
.experience-panel-note strong { color: var(--text); }

/* Venues */
.venue-categories {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
.venue-cat-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neon-blue);
  margin-bottom: 20px;
}
.venue-list {
  list-style: none;
  columns: 3;
  column-gap: 24px;
}
.venue-list li {
  font-size: 12px;
  color: var(--text-dim);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  break-inside: avoid;
  line-height: 1.4;
}
.venue-loc {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
}
.venue-categories > .venue-cat:last-child .venue-list { columns: 1; }

/* Artists */
.artist-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.artist-tags span {
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dim);
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--card);
}

/* Music */
.music-cats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.music-cat {
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.music-cat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neon-purple);
  margin-bottom: 10px;
}
.music-cat p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.7;
  margin: 0;
}

/* Experience */
.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.exp-col-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neon-blue);
  margin-bottom: 20px;
}
.exp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.exp-list li {
  font-size: 13px;
  color: var(--text-dim);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

/* experience responsive */
@media (max-width: 960px) {
  .venue-categories { grid-template-columns: 1fr; gap: 40px; }
  .venue-list { columns: 2; }
  .music-cats { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 540px) {
  .venue-list { columns: 1; }
  .experience-tab-btn { padding: 10px 16px; }
}

/* ============================================
   EVENTS
   ============================================ */
.event-feature { margin-bottom: 72px; }
.event-feature-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.event-title {
  font-size: clamp(52px, 9vw, 108px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 44px;
}
.event-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 52px;
}
.event-meta-item { display: flex; flex-direction: column; gap: 5px; }
.meta-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.meta-value {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
}
.event-meta-divider {
  width: 1px;
  height: 32px;
  background: var(--border-mid);
}

/* Schedule */
.event-schedule {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 680px;
}
.schedule-block {
  flex: 1;
  padding: 32px 36px;
}
.schedule-block:first-child { border-right: 1px solid var(--border); }
.schedule-time {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--neon-blue);
  margin-bottom: 10px;
}
.schedule-name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.schedule-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.schedule-apply-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--neon-purple);
  text-decoration: none;
  transition: opacity 0.2s;
}
.schedule-apply-link:hover { opacity: 0.75; }
.schedule-divider { display: none; }

/* Lineup */
.lineup-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
}
.lineup-header h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}
.lineup-date {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.lineup-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.lineup-card {
  background: var(--card);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: background 0.2s;
}
.lineup-card:hover { background: var(--card-hover); }
.lineup-card--featured {
  background: linear-gradient(135deg,
    rgba(0, 200, 255, 0.06) 0%,
    rgba(180, 77, 255, 0.06) 100%);
}
.lineup-card--featured:hover {
  background: linear-gradient(135deg,
    rgba(0, 200, 255, 0.1) 0%,
    rgba(180, 77, 255, 0.1) 100%);
}
.lineup-slot {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  min-width: 24px;
}
.lineup-info { flex: 1; }
.lineup-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}
.lineup-card--featured .lineup-name { color: var(--neon-blue); }
.lineup-time { font-size: 12px; color: var(--text-muted); }
.lineup-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 4px 10px;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  white-space: nowrap;
}
.lineup-tag--neon {
  color: var(--neon-blue);
  border-color: rgba(0, 200, 255, 0.25);
}

/* ============================================
   OPEN DECKS DETAIL
   ============================================ */
.open-decks {
  margin-top: 64px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.odd-header {
  padding: 36px 40px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 24px;
}
.odd-title {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.odd-body {
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr;
  gap: 0;
}

/* Sessions */
.odd-sessions {
  padding: 32px 36px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 200px;
}
.odd-session { padding: 16px 0; }
.odd-session + .odd-session { border-top: 1px solid var(--border); }
.odd-session-sep { display: none; }
.odd-session-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.odd-session-time {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--neon-blue);
  margin-bottom: 4px;
  white-space: nowrap;
}
.odd-session-signup {
  font-size: 12px;
  color: var(--text-muted);
}

/* Rules */
.odd-rules {
  padding: 32px 32px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}
.odd-rule {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}
.odd-rule-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
  margin-top: 6px;
}
.odd-rule--highlight { color: var(--text); }
.odd-rule--highlight .odd-rule-dot { background: var(--neon-blue); }

/* Logistics */
.odd-logistics {
  padding: 32px 32px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: center;
}
.odd-logistics-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.odd-logistics-value {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}
.odd-logistics-note {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Why play */
.odd-why {
  padding: 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg,
    rgba(0, 200, 255, 0.03) 0%,
    rgba(180, 77, 255, 0.03) 100%);
}
.odd-why-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-purple);
  margin-bottom: 14px;
}
.odd-why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.odd-why-list li {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.4;
  padding-left: 14px;
  position: relative;
}
.odd-why-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--neon-purple);
  opacity: 0.6;
}

/* Footer */
.odd-footer {
  padding: 16px 40px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
}
.odd-host, .odd-credit {
  font-size: 12px;
  color: var(--text-muted);
}
.odd-host strong, .odd-credit strong {
  font-weight: 600;
}
.odd-credit-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.odd-credit-link:hover { color: var(--neon-purple); }
.odd-credit-link strong { color: inherit; }
.odd-sep {
  color: var(--text-muted);
  font-size: 12px;
}

/* Responsive */
@media (max-width: 960px) {
  .odd-body {
    grid-template-columns: 1fr 1fr;
  }
  .odd-sessions { border-bottom: 1px solid var(--border); }
  .odd-rules    { border-bottom: 1px solid var(--border); }
  .odd-logistics { border-right: none; }
  .odd-why { border-top: 1px solid var(--border); grid-column: 1 / -1; }
  .odd-header { padding: 28px 28px 22px; gap: 16px; }
  .odd-sessions, .odd-rules, .odd-logistics, .odd-why { padding: 24px 28px; }
  .odd-footer { padding: 14px 28px; }
}
@media (max-width: 540px) {
  .odd-body { grid-template-columns: 1fr; }
  .odd-sessions { border-right: none; }
  .odd-rules { border-right: none; }
  .odd-logistics { border-right: none; }
  .odd-header { flex-direction: column; gap: 6px; padding: 24px 20px 18px; }
  .odd-sessions, .odd-rules, .odd-logistics, .odd-why { padding: 20px 20px; }
  .odd-footer { padding: 14px 20px; flex-wrap: wrap; gap: 8px; }
}

/* ============================================
   SHOWS
   ============================================ */
.shows-header { margin-bottom: 52px; }
.shows-header h2 { margin-bottom: 12px; }
.shows-header-link {
  color: var(--neon-blue);
  text-decoration: none;
  transition: opacity 0.2s;
}
.shows-header-link:hover { opacity: 0.7; }

.shows-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}

.shows-month-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-mid);
}
.shows-month-emoji { font-size: 18px; line-height: 1; }
.shows-month-name {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

.show-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.show-date {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}
.show-venue {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.3;
}
.show-venue a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
.show-note {
  display: block;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neon-purple);
  margin-top: 2px;
}
.show-time {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  text-align: right;
}

/* House Wednesday — muted so recurring shows don't dominate */
.show--hw .show-venue { color: var(--text-muted); }
.show--hw .show-date { color: var(--text-muted); opacity: 0.6; }

/* Notable shows — venue name pops */
.show--notable .show-venue { color: var(--text); }
.show--notable .show-date { color: var(--neon-blue); }

/* Open for booking */
.show--open { background: rgba(0, 200, 255, 0.03); border-radius: 4px; padding-left: 8px; padding-right: 8px; }
.show--open .show-date { color: var(--neon-blue); }
.show--open .show-venue a { color: var(--neon-blue); font-weight: 500; }
.show--open .show-venue a:hover { opacity: 0.7; }

@media (max-width: 960px) {
  .shows-grid { grid-template-columns: 1fr; gap: 52px; }
}

/* ============================================
   VIDEOS
   ============================================ */
.videos-header { margin-bottom: 52px; }
.videos-header h2 { margin-bottom: 12px; }
.videos-header .section-sub { margin-bottom: 0; }

.videos-grid-wrap {
  position: relative;
  max-height: 680px;
  overflow: hidden;
  transition: max-height 0.6s ease;
}
.videos-grid-wrap.expanded {
  max-height: 9999px;
}
.videos-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.videos-grid-wrap.expanded .videos-fade {
  opacity: 0;
}
.videos-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.videos-more-wrap.hidden {
  display: none;
}

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

.video-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.25s, transform 0.25s;
}
.video-card:hover {
  border-color: var(--border-mid);
  transform: translateY(-4px);
}

.video-thumb {
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
  background: #0d0d0d;
}
/* YouTube thumbnails */
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s ease, opacity 0.3s ease;
  opacity: 0.8;
}
.video-card:hover .video-thumb img { transform: scale(1.03); opacity: 1; }

/* Dropbox / no-thumbnail placeholder */
.video-thumb-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #0e1a1f 0%, #0a0e14 100%);
}
.video-thumb-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%,
    rgba(0, 200, 255, 0.07) 0%,
    rgba(180, 77, 255, 0.06) 60%,
    transparent 100%);
}

/* Play button overlay */
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.video-play-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  padding-left: 3px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.video-card:hover .video-play-circle {
  border-color: var(--neon-blue);
  background: rgba(0, 200, 255, 0.08);
  transform: scale(1.1);
  color: var(--neon-blue);
}

/* Duration badge */
.video-duration {
  position: absolute;
  bottom: 9px;
  right: 11px;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--text);
  background: rgba(0,0,0,0.65);
  padding: 2px 7px;
  border-radius: 2px;
  z-index: 2;
}

.video-info { padding: 14px 16px 18px; }
.video-date {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neon-blue);
  margin-bottom: 5px;
}
.video-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 4px;
}
.video-meta { font-size: 11px; color: var(--text-muted); }

/* ============================================
   VIDEO MODAL
   ============================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal[hidden] { display: none; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.modal-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  background: var(--card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  overflow: hidden;
  animation: modalIn 0.22s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.96) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}
.modal-eyebrow {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon-blue);
  margin-bottom: 3px;
}
.modal-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
.modal-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.modal-external-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--border-mid);
  padding: 7px 14px;
  border-radius: var(--radius);
  transition: color 0.2s, border-color 0.2s;
}
.modal-external-link:hover { color: var(--neon-blue); border-color: var(--neon-blue); }
.modal-close {
  background: none;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  color: var(--text-dim);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, border-color 0.2s;
}
.modal-close:hover { color: var(--text); border-color: var(--text-muted); }

.modal-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.modal-player video,
.modal-player iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

/* ============================================
   MIXES
   ============================================ */
.mixes-header { margin-bottom: 52px; }
.mixes-header h2 { margin-bottom: 12px; }
.mixes-header .section-sub { margin-bottom: 0; }

.mixes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.mix-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.25s, transform 0.25s;
}
.mix-card:hover {
  border-color: var(--border-mid);
  transform: translateY(-4px);
}
.mix-cover {
  aspect-ratio: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* Subtle unique gradients per cover */
.mix-cover--1 { background: linear-gradient(145deg, #0d1a1f 0%, #0a0f14 100%); }
.mix-cover--2 { background: linear-gradient(145deg, #130d1f 0%, #0c0a14 100%); }
.mix-cover--3 { background: linear-gradient(145deg, #1a1a0d 0%, #111108 100%); }
.mix-cover--4 { background: linear-gradient(145deg, #0d181a 0%, #080e10 100%); }
.mix-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%,
    rgba(0, 200, 255, 0.06) 0%,
    rgba(180, 77, 255, 0.06) 60%,
    transparent 100%);
}
.mix-play {
  background: none;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  opacity: 0.35;
  transition: opacity 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
  z-index: 1;
  padding-left: 3px; /* visual center for play icon */
}
.mix-card:hover .mix-play {
  opacity: 1;
  border-color: var(--neon-blue);
  color: var(--neon-blue);
  transform: scale(1.08);
}
.mix-duration {
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  z-index: 1;
}
.mix-info { padding: 14px 16px 18px; }
.mix-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.3;
}
.mix-meta { font-size: 11px; color: var(--text-muted); }
.mixes-cta { text-align: center; }

/* ============================================
   BOOKING
   ============================================ */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 80px;
  align-items: start;
}
.booking-info h2 { margin-bottom: 20px; }
.booking-info p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.85;
  margin-bottom: 44px;
}
.contact-block { display: flex; flex-direction: column; gap: 20px; }
.contact-email {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 500;
  color: var(--neon-blue);
  transition: opacity 0.2s;
}
.contact-email:hover { opacity: 0.7; }
.social-links { display: flex; gap: 24px; }
.social-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border-mid);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.social-link:hover { color: var(--neon-purple); border-color: var(--neon-purple); }

/* Form */
.booking-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 13px 16px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23444' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group select option { background: #111; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--neon-blue);
  box-shadow: 0 0 0 3px rgba(0, 200, 255, 0.06);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { resize: vertical; min-height: 110px; }
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.25) brightness(2);
  cursor: pointer;
  opacity: 0.4;
}
.form-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: -4px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  padding: 52px var(--pad-x);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text);
}
.footer-tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  gap: 32px;
  margin-top: 4px;
}
.footer-links a {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-copy {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE — Tablet (≤ 960px)
   ============================================ */
@media (max-width: 960px) {
  :root {
    --pad-x: 28px;
    --pad-section: 88px;
  }

  /* Nav — slide-in mobile menu */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 270px;
    background: rgba(8, 8, 8, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 44px;
    gap: 30px;
    transform: translateX(110%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 200;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 13px; }
  .nav-links .nav-cta { border: none; padding: 0; font-size: 13px; }

  /* Layouts */
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
  .modal { padding: 16px; }
  .about-grid { grid-template-columns: 1fr; gap: 52px; }
  .about-visual { max-width: 380px; }
  .booking-grid { grid-template-columns: 1fr; gap: 52px; }
  .mixes-grid { grid-template-columns: repeat(2, 1fr); }
  .lineup-grid { grid-template-columns: 1fr; }
  .event-schedule {
    flex-direction: column;
    max-width: 100%;
  }
  .schedule-block:first-child { border-right: none; border-bottom: 1px solid var(--border); }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================
   RESPONSIVE — Mobile (≤ 540px)
   ============================================ */
@media (max-width: 540px) {
  :root { --pad-x: 20px; }
  #hero { padding: 80px var(--pad-x) 0; }
  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .videos-grid { grid-template-columns: 1fr; }
  .mixes-grid { grid-template-columns: 1fr; }
  .event-meta { flex-wrap: wrap; gap: 20px; }
  .event-meta-divider { display: none; }
  .lineup-header { flex-direction: column; gap: 6px; }
  footer { padding: 44px var(--pad-x); }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 18px; }
}
