/* ==========================================
   MINDGROAN — Main Stylesheet
   ========================================== */

/* ---------- CUSTOM FONTS ---------- */
@font-face {
  font-family: 'Bad Suabia Swing';
  src: url('fonts/BadSuabiaSwing-Regular.ttf.eot');
  src: url('fonts/BadSuabiaSwing-Regular.ttf.eot?#iefix') format('embedded-opentype'),
       url('fonts/BadSuabiaSwing-Regular.ttf.woff') format('woff'),
       url('fonts/BadSuabiaSwing-Regular.ttf.svg#BadSuabiaSwing-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #0a0a0a;
  --color-surface: #111111;
  --color-text: #ffffff;
  --color-text-muted: #999999;
  --color-accent: #cc0000;
  --color-accent-hover: #ff1a1a;
  --color-border: #2a2a2a;
  --font-heading: 'Bad Suabia Swing', 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --header-height: 60px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-accent);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

.hidden {
  display: none !important;
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: none;
  height: var(--header-height);
  transition: background 0.3s ease, border-bottom 0.3s ease;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-text);
  text-decoration: none;
  text-transform: uppercase;
  flex-shrink: 0;
}

.logo:hover {
  color: var(--color-text);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  text-transform: uppercase;
  transition: color 0.2s ease;
}

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

.header-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-socials a {
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}

.header-socials a:hover {
  color: var(--color-text);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- MOBILE MENU ---------- */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  height: 100dvh;
  background: var(--color-bg);
  z-index: 1060;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 40px;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-text);
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.mobile-nav-link:hover {
  color: var(--color-accent);
}

.mobile-socials {
  display: flex;
  gap: 18px;
  margin-top: 48px;
}

.mobile-socials a {
  color: var(--color-text-muted);
  display: flex;
  transition: color 0.2s ease;
}

.mobile-socials a:hover {
  color: var(--color-text);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg video,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) grayscale(0.2);
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 15%;
  background: linear-gradient(to bottom, transparent, var(--color-surface));
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-text);
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1;
  display: flex;
  justify-content: center;
}

.hero-letter {
  display: inline-block;
}

.hero-letter.shaking {
  animation: bassShake 0.12s infinite alternate;
}

@keyframes bassShake {
  0%   { transform: translate(0, 0) rotate(0deg); }
  10%  { transform: translate(-2px, 2px) rotate(-1deg); }
  20%  { transform: translate(2px, -2px) rotate(1deg); }
  30%  { transform: translate(-2px, 0px) rotate(0deg); }
  40%  { transform: translate(2px, 2px) rotate(-0.6deg); }
  50%  { transform: translate(0px, -2px) rotate(0.6deg); }
  60%  { transform: translate(-2px, 2px) rotate(-1deg); }
  70%  { transform: translate(2px, 0px) rotate(1deg); }
  80%  { transform: translate(0px, -2px) rotate(0deg); }
  90%  { transform: translate(-2px, 2px) rotate(-0.6deg); }
  100% { transform: translate(2px, -2px) rotate(0.6deg); }
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 3vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--color-text);
  text-transform: uppercase;
  margin-bottom: 32px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 2px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-outline {
  border: 1px solid var(--color-text);
  color: var(--color-text);
  background: transparent;
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--color-text);
  color: var(--color-bg);
}

.btn-sm {
  font-size: 0.75rem;
  padding: 6px 18px;
  background: var(--color-accent);
  color: var(--color-text);
  border: none;
  text-decoration: none;
}

.btn-sm:hover {
  background: var(--color-accent-hover);
  color: var(--color-text);
}

.btn-tickets {
  color: var(--color-text-muted);
  padding: 4px;
}

.btn-tickets:hover {
  color: var(--color-text);
}

/* ---------- SECTION TITLE ---------- */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 40px;
}

/* ---------- LIVE SECTION ---------- */
.live-section {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}

.live-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.live-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.18) grayscale(0.4);
}

.live-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.live-tabs {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.live-tab {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.live-tab.active {
  color: var(--color-text);
  border-bottom-color: var(--color-accent);
}

.live-tab:hover {
  color: var(--color-text);
}

.tab-divider {
  color: var(--color-text-muted);
  font-size: 0.8rem;
}

/* Show Rows */
.shows-list {
  display: flex;
  flex-direction: column;
}

.show-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}

.show-row:first-child {
  border-top: 1px solid var(--color-border);
}

.show-row.past {
  opacity: 0.5;
}

.show-date {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: block;
  color: var(--color-accent);
}

.show-venue {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  display: block;
  margin-top: 2px;
}

.show-city {
  font-size: 0.85rem;
  color: var(--color-text);
}

.show-action-col {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}

.sold-out {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.request-show {
  text-align: center;
  margin-top: 48px;
}

.request-show p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

/* ---------- BIO SECTION ---------- */
.bio-section {
  padding: 100px 0;
  background: var(--color-surface);
}

.bio-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.bio-image {
  overflow: hidden;
  border-radius: 4px;
}

.bio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  filter: grayscale(0.2);
  transition: filter 0.5s ease;
}

.bio-image:hover img {
  filter: grayscale(0);
}

.bio-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--color-text);
}

.bio-text p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

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

.bio-text em {
  color: var(--color-text);
  font-style: italic;
}

@media (max-width: 768px) {
  .bio-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bio-section {
    padding: 72px 0;
  }

  .bio-image img {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 600px) {
  .bio-inner {
    padding: 0 16px;
  }

  .bio-text p {
    font-size: 0.88rem;
  }
}

/* ---------- MUSIC / STORE SECTION ---------- */
.music-section {
  padding: 80px 0;
  background: var(--color-bg);
}

.music-grid {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.music-card {
  text-align: center;
  cursor: pointer;
}

.music-img {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1;
  margin-bottom: 16px;
}

.music-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.music-card:hover .music-img img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.music-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spotify-icon {
  transition: transform 0.2s ease;
}

.music-card:hover .spotify-icon {
  transform: scale(1.1);
}

.music-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.music-card-sub {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

/* ---------- VIDEO SECTION ---------- */
.video-section {
  padding: 80px 0;
  background: var(--color-surface);
}

.video-featured {
  max-width: 1100px;
  margin: 0 auto 24px;
  padding: 0 24px;
  cursor: pointer;
}

.video-featured-img {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.video-featured img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-featured:hover img {
  transform: scale(1.05);
}

.video-featured-title {
  position: absolute;
  bottom: 16px;
  left: 40px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
  z-index: 2;
  pointer-events: none;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
}

.play-overlay:hover {
  background: rgba(0, 0, 0, 0.15);
}

.play-btn {
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.9;
}

.play-btn:hover {
  transform: scale(1.1);
  opacity: 1;
}

.video-thumbs {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.video-thumb {
  cursor: pointer;
}

.video-thumb-img {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.video-thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-thumb:hover img {
  transform: scale(1.05);
}

.video-thumb-title {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-top: 8px;
}

.play-overlay.small {
  margin: 0;
  background: rgba(0, 0, 0, 0.4);
}

.play-overlay.small:hover {
  background: rgba(0, 0, 0, 0.2);
}

/* ---------- GALLERY SECTION ---------- */
.gallery-section {
  padding: 80px 0;
  background: var(--color-bg);
}

.gallery-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-credit {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 24px;
  letter-spacing: 0.03em;
}

.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: grayscale(0.3);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: grayscale(0);
}

/* ---------- MINDGROAN CLUB ---------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.club-section {
  padding: 100px 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.club-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.club-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

.club-perks {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-bottom: 36px;
  padding: 0;
}

.club-perks li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-text);
}

.club-perk-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(204, 0, 0, 0.12);
  color: var(--color-accent);
  flex-shrink: 0;
}

.club-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 520px;
  margin: 0 auto;
}

.club-input {
  flex: 1 1 260px;
  min-width: 0;
  padding: 14px 16px;
  background: var(--color-bg);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.club-input::placeholder {
  color: var(--color-text-muted);
}

.club-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.2);
}

.club-input.is-invalid {
  border-color: var(--color-accent);
}

.club-submit {
  padding: 14px 28px;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.club-submit:hover {
  background: var(--color-accent-hover);
}

.club-submit:active {
  transform: translateY(1px);
}

.club-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.club-message {
  flex-basis: 100%;
  min-height: 1.2em;
  margin-top: 4px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.club-message.is-error {
  color: var(--color-accent-hover);
}

.club-message.is-success {
  color: #4ade80;
}

.club-fineprint {
  margin-top: 20px;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

@media (max-width: 600px) {
  .club-section {
    padding: 72px 0;
  }

  .club-perks {
    flex-direction: column;
    align-items: flex-start;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .club-form {
    flex-direction: column;
  }

  .club-submit {
    width: 100%;
  }
}

/* ---------- FOOTER ---------- */
.site-footer {
  padding: 48px 24px 32px;
  text-align: center;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
}

.footer-socials a {
  color: var(--color-text-muted);
  display: flex;
  transition: color 0.2s ease;
}

.footer-socials a:hover {
  color: var(--color-text);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 16px;
  margin-bottom: 24px;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.footer-sep {
  color: var(--color-text-muted);
  font-size: 0.8rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.footer-copy a {
  color: var(--color-text-muted);
  text-decoration: underline;
}

/* ---------- LEGAL PAGES ---------- */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 140px 24px 80px;
}

.legal-page h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.legal-date {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 48px;
}

.legal-page h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-page p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.legal-page a {
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page a:hover {
  color: #fff;
}

.legal-back {
  display: inline-block;
  margin-top: 48px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-back:hover {
  color: #fff;
}

/* ==========================================
   RESPONSIVE — TABLET
   ========================================== */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .header-socials {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .show-row {
    grid-template-columns: 1fr auto;
    gap: 8px;
  }

  .show-location-col {
    display: none;
  }

  .music-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .music-grid .music-card:last-child {
    grid-column: 1 / -1;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* ==========================================
   RESPONSIVE — MOBILE
   ========================================== */
@media (max-width: 600px) {
  :root {
    --header-height: 56px;
  }

  .header-inner {
    padding: 0 16px;
  }

  .hero-content {
    padding: 0 16px;
  }

  .hero-title {
    letter-spacing: 0.1em;
  }

  .live-content {
    padding: 0 16px;
  }

  .live-section {
    padding: 80px 0 60px;
  }

  .show-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 0;
  }

  .show-action-col {
    justify-content: flex-start;
    margin-top: 4px;
  }

  .show-location-col {
    display: block;
  }

  .show-city {
    font-size: 0.8rem;
    color: var(--color-text-muted);
  }

  .music-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 16px;
  }

  .music-grid .music-card:last-child {
    grid-column: 1 / -1;
    max-width: 200px;
  }

  .music-card-title {
    font-size: 1rem;
  }

  .video-featured {
    padding: 0 16px;
  }

  .video-featured-title {
    bottom: 12px;
    left: 28px;
    font-size: 0.8rem;
  }

  .video-thumbs {
    padding: 0 16px;
    gap: 10px;
  }

  .video-thumb-title {
    font-size: 0.7rem;
    margin-top: 6px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 0 16px;
  }

  .section-title {
    margin-bottom: 28px;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }

  .footer-sep {
    display: none;
  }
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 70vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: var(--header-height);
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
}

.lightbox-close {
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  border-radius: 50%;
  transition: color 0.2s ease, background 0.2s ease;
  z-index: 10;
}

.lightbox-arrow:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

@media (max-width: 600px) {
  .lightbox img {
    max-width: 85vw;
  }

  .lightbox-header {
    padding: 0 16px;
  }

  .lightbox-logo {
    font-size: 1.4rem;
  }

  .lightbox-arrow {
    width: 40px;
    height: 40px;
  }

  .lightbox-arrow svg {
    width: 18px;
    height: 18px;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }
}

/* ---------- VIDEO MODAL ---------- */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: var(--header-height);
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.video-modal-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
}

.video-modal-close {
  color: var(--color-text);
  font-size: 1.6rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
  background: none;
  border: none;
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.08);
}

.video-modal-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--header-height) 0 0;
  gap: 0;
}

.video-modal-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  border-radius: 50%;
  transition: color 0.2s ease, background 0.2s ease;
}

.video-modal-arrow:hover {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.06);
}

.video-modal-center {
  flex: 1;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-modal-player {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  flex-shrink: 0;
}

.video-modal-player iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal-title {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-text-muted);
  text-align: center;
  padding: 14px 24px 0;
}

@media (max-width: 600px) {
  .video-modal-header {
    padding: 0 16px;
  }

  .video-modal-logo {
    font-size: 1.4rem;
  }

  .video-modal-title {
    font-size: 0.8rem;
    padding: 12px 16px;
  }

  .video-modal-arrow {
    width: 40px;
    height: 40px;
  }

  .video-modal-arrow svg {
    width: 18px;
    height: 18px;
  }
}
