/* ============================================
   SUNEERA SUMANGA — Dark Luxury Design System
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Poppins:wght@300;400;500;600&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --black-deep: #070707;
  --black-soft: #0d0d0d;
  --charcoal: #141414;
  --charcoal-light: #1a1a1a;
  --charcoal-mid: #222222;
  --gold: #D4AF37;
  --gold-light: #e6c860;
  --gold-dim: rgba(212, 175, 55, 0.15);
  --gold-glow: rgba(212, 175, 55, 0.25);
  --white: #f5f5f0;
  --white-soft: #d4d4d0;
  --white-muted: #8a8a85;
  --white-dim: rgba(245, 245, 240, 0.06);
  
  /* Typography */
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --section-pad: clamp(80px, 10vw, 140px);
  --container-max: 1200px;
  --container-wide: 1400px;
  
  /* Transitions */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 0.3s;
  --duration-med: 0.5s;
  --duration-slow: 0.8s;
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--black-deep);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.container--wide {
  max-width: var(--container-wide);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--duration-slow) var(--ease-smooth),
              transform var(--duration-slow) var(--ease-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: background-color var(--duration-fast) var(--ease-smooth),
              padding var(--duration-fast) var(--ease-smooth),
              backdrop-filter var(--duration-fast) var(--ease-smooth);
}

.navbar.scrolled {
  background-color: rgba(7, 7, 7, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.navbar__logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--white);
  text-transform: uppercase;
  transition: color var(--duration-fast);
}

.navbar__logo:hover {
  color: var(--gold);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.navbar__link {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-soft);
  position: relative;
  padding: 4px 0;
  transition: color var(--duration-fast);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--duration-fast) var(--ease-smooth);
}

.navbar__link:hover {
  color: var(--gold);
}

.navbar__link:hover::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--duration-fast) var(--ease-smooth);
}

.navbar__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.navbar__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.05);
  transition: transform 12s linear;
}

.hero.loaded .hero__bg img {
  transform: scale(1.12);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 7, 7, 0.3) 0%,
    rgba(7, 7, 7, 0.15) 40%,
    rgba(7, 7, 7, 0.5) 70%,
    rgba(7, 7, 7, 0.95) 100%
  );
  z-index: 1;
}

/* Subtle spotlight effect */
.hero__spotlight {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  animation: spotlightPulse 8s ease-in-out infinite alternate;
}

@keyframes spotlightPulse {
  0% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  100% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.hero__label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1s var(--ease-out) 0.3s forwards;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1s var(--ease-out) 0.5s forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  padding: 16px 40px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 0;
  background: transparent;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1s var(--ease-out) 0.7s forwards;
  transition: border-color var(--duration-fast),
              color var(--duration-fast),
              box-shadow var(--duration-fast);
}

.hero__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-med) var(--ease-out);
  z-index: -1;
}

.hero__cta:hover {
  border-color: var(--gold);
  color: var(--black-deep);
  background-color: var(--gold);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
}

.hero__cta:hover::before {
  transform: scaleX(1);
}

.hero__cta-arrow {
  display: inline-block;
  transition: transform var(--duration-fast) var(--ease-smooth);
  font-size: 1rem;
}

.hero__cta:hover .hero__cta-arrow {
  transform: translateX(6px);
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-out) 1.2s forwards;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   SECTION: FEATURED MUSIC
   ============================================ */
.section {
  padding: var(--section-pad) 0;
}

.section--music {
  background: var(--black-soft);
  position: relative;
}

.section--music::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), transparent);
}

.music-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.music-feature__artwork {
  position: relative;
}

.music-feature__artwork img {
  width: 100%;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: transform var(--duration-med) var(--ease-smooth),
              box-shadow var(--duration-med) var(--ease-smooth);
}

.music-feature__artwork:hover img {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6),
              0 0 40px rgba(212, 175, 55, 0.06);
}

/* Gold corner accent */
.music-feature__artwork::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  width: 60px;
  height: 60px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  opacity: 0.4;
  transition: opacity var(--duration-fast);
}

.music-feature__artwork::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 60px;
  height: 60px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  opacity: 0.4;
  transition: opacity var(--duration-fast);
}

.music-feature__artwork:hover::before,
.music-feature__artwork:hover::after {
  opacity: 0.8;
}

/* Responsive Video Embed */
.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.music-feature__artwork:hover .video-embed {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6),
              0 0 40px rgba(212, 175, 55, 0.06);
}

.music-feature__info {
  padding-right: 20px;
}

.music-feature__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.music-feature__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 8px;
}

.music-feature__title em {
  font-style: italic;
  color: var(--gold-light);
}

.music-feature__desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--white-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 440px;
}

/* ========== Floating Audio Player ========== */
.floating-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.floating-player.visible {
  transform: translateY(0);
  pointer-events: auto;
}

/* Playlist Panel */
.playlist-panel {
  max-height: 0;
  overflow: hidden;
  background: rgba(15, 15, 15, 0.97);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.playlist-panel.open {
  max-height: 400px;
}

.playlist-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px 8px;
}

.playlist-panel__title {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.playlist-panel__count {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.05em;
}

.playlist-panel__list {
  list-style: none;
  padding: 0 8px 12px;
  margin: 0;
}

.playlist-panel__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background var(--duration-fast);
  font-family: var(--font-sans);
}

.playlist-panel__item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.playlist-panel__item.active {
  background: rgba(212, 175, 55, 0.1);
}

.playlist-panel__item.active .playlist-panel__name {
  color: var(--gold);
}

.playlist-panel__item.active .playlist-panel__num {
  color: var(--gold);
}

.playlist-panel__num {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  min-width: 20px;
  font-variant-numeric: tabular-nums;
}

.playlist-panel__name {
  flex: 1;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.playlist-panel__dur {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  font-variant-numeric: tabular-nums;
}

.floating-player__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 28px;
  background: rgba(18, 18, 18, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 -4px 40px rgba(0, 0, 0, 0.5);
}

.floating-player__info {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
}

.floating-player__art {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.floating-player__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.floating-player__title {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--white-soft);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

.floating-player__artist {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.floating-player__controls {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
}

.floating-player__close {
  background: none;
  border: none;
  color: var(--white-muted);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: color var(--duration-fast), background var(--duration-fast);
  flex-shrink: 0;
}

.floating-player__close:hover {
  color: var(--white-soft);
  background: rgba(255, 255, 255, 0.08);
}

.floating-player__close svg {
  width: 14px;
  height: 14px;
}

/* Player Controls (shared) */
.player__controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.player__skip-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all var(--duration-fast);
}

.player__skip-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: scale(1.1);
}

.player__skip-btn svg {
  width: 14px;
  height: 14px;
}

.player__play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--duration-fast),
              transform var(--duration-fast),
              box-shadow var(--duration-fast);
}

.player__play-btn:hover {
  background: var(--gold-light);
  transform: scale(1.08);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.35);
}

.player__play-btn svg {
  width: 16px;
  height: 16px;
  fill: var(--black-deep);
}

.player__track {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.player__progress-wrap {
  position: relative;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  cursor: pointer;
  overflow: hidden;
}

.player__progress-wrap:hover {
  height: 6px;
}

.player__progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: width 0.1s linear;
  position: relative;
}

.player__time {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--white-muted);
  font-variant-numeric: tabular-nums;
}

/* Equalizer animation */
.player__eq {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 20px;
  margin-left: 12px;
}

.player__eq-bar {
  width: 3px;
  background: var(--gold);
  border-radius: 1px;
  animation: eqBounce 0.8s ease-in-out infinite alternate;
}

.player__eq-bar:nth-child(1) { height: 8px; animation-delay: 0s; }
.player__eq-bar:nth-child(2) { height: 14px; animation-delay: 0.15s; }
.player__eq-bar:nth-child(3) { height: 6px; animation-delay: 0.3s; }
.player__eq-bar:nth-child(4) { height: 18px; animation-delay: 0.1s; }
.player__eq-bar:nth-child(5) { height: 10px; animation-delay: 0.25s; }

.player__eq.paused .player__eq-bar {
  animation-play-state: paused;
}

@keyframes eqBounce {
  0% { transform: scaleY(0.4); }
  100% { transform: scaleY(1); }
}

/* Mini Player Bubble */
.player-bubble {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none;
  color: var(--black-deep);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(212, 175, 55, 0.35),
              0 0 0 0 rgba(212, 175, 55, 0.3);
  transition: transform 0.3s var(--ease-out),
              box-shadow 0.3s var(--ease-out),
              opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.5);
  animation: bubblePulse 2.5s ease-in-out infinite;
}

.player-bubble.visible {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.player-bubble:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 32px rgba(212, 175, 55, 0.5);
  animation: none;
}

.player-bubble svg {
  width: 26px;
  height: 26px;
}

@keyframes bubblePulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(212, 175, 55, 0.35), 0 0 0 0 rgba(212, 175, 55, 0.3); }
  50% { box-shadow: 0 4px 24px rgba(212, 175, 55, 0.35), 0 0 0 10px rgba(212, 175, 55, 0); }
}

/* Responsive floating player */
@media (max-width: 768px) {
  .floating-player__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    padding: 10px 12px;
    gap: 6px 0;
    align-items: center;
  }

  .floating-player__info {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .floating-player__close {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    margin-top: 2px;
  }

  .floating-player__controls {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    gap: 10px;
  }

  .floating-player__title {
    max-width: 200px;
    font-size: 0.82rem;
  }

  .floating-player__art {
    width: 42px;
    height: 42px;
  }

  .player__play-btn {
    width: 38px;
    height: 38px;
  }

  .player__skip-btn {
    width: 28px;
    height: 28px;
  }

  .player__skip-btn svg {
    width: 12px;
    height: 12px;
  }

  .player__eq {
    display: none;
  }
}

/* Music buttons */
.music-feature__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  transition: all var(--duration-fast) var(--ease-smooth);
}

.btn--primary {
  background: var(--gold);
  color: var(--black-deep);
}

.btn--primary:hover {
  background: var(--gold-light);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}

.btn--secondary {
  background: transparent;
  color: var(--white-soft);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn--secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================
   SECTION: DISCOGRAPHY
   ============================================ */
.section--disco {
  background: var(--black-deep);
}

.section__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
}

.section__link {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--white-muted);
  transition: color var(--duration-fast);
  white-space: nowrap;
}

.section__link:hover {
  color: var(--gold);
}

.disco-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.disco-card {
  position: relative;
  cursor: pointer;
  border-radius: 2px;
  transition: transform var(--duration-fast) var(--ease-smooth);
}

.disco-card:hover {
  transform: scale(1.03);
}

.disco-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: border-color var(--duration-fast),
              box-shadow var(--duration-fast);
}

.disco-card::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  width: 40px;
  height: 40px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  opacity: 0.3;
  transition: opacity var(--duration-fast);
  z-index: 2;
  pointer-events: none;
}

.disco-card::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 40px;
  height: 40px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  opacity: 0.3;
  transition: opacity var(--duration-fast);
  z-index: 2;
  pointer-events: none;
}

.disco-card:hover::before,
.disco-card:hover::after {
  opacity: 0.8;
}

.disco-card:hover .disco-card__img-wrap {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.08);
}

.disco-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-med) var(--ease-smooth);
}

.disco-card:hover .disco-card__img-wrap img {
  transform: scale(1.06);
}

.disco-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 7, 7, 0.5);
  opacity: 0;
  transition: opacity var(--duration-fast);
}

.disco-card:hover .disco-card__play {
  opacity: 1;
}

.disco-card__play-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: transform var(--duration-fast) var(--ease-smooth);
}

.disco-card:hover .disco-card__play-icon {
  transform: scale(1);
}

.disco-card__play-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--black-deep);
  margin-left: 2px;
}

.disco-card__info {
  padding: 14px 4px 4px;
}

.disco-card__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}

.disco-card__year {
  font-size: 0.75rem;
  color: var(--white-muted);
  font-weight: 300;
}

/* ---- Video Lightbox ---- */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.video-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.video-lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.video-lightbox__content {
  position: relative;
  width: 90%;
  max-width: 960px;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-lightbox.active .video-lightbox__content {
  transform: scale(1) translateY(0);
}

.video-lightbox__frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6),
              0 0 60px rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.video-lightbox__frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-lightbox__close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-lightbox__close:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold);
  color: var(--gold);
  transform: rotate(90deg);
}

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

.video-thumb {
  cursor: pointer;
}

/* ============================================
   SECTION: ARTIST STORY
   ============================================ */
.section--story {
  background: var(--black-soft);
  position: relative;
  overflow: hidden;
}

.section--story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.12), transparent);
}

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}

.story__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.story__image-wrap img {
  width: 100%;
  filter: grayscale(0.6) contrast(1.1);
  transition: filter var(--duration-med);
}

.story__image-wrap:hover img {
  filter: grayscale(0.3) contrast(1.05);
}

.story__content {
  padding: 20px 0;
}

.story__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.story__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.2;
}

.story__text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--white-muted);
  line-height: 1.85;
  max-width: 480px;
}

.story__text + .story__text {
  margin-top: 20px;
}

/* Large quote accent */
.story__quote-mark {
  font-family: var(--font-serif);
  font-size: 6rem;
  color: rgba(212, 175, 55, 0.12);
  line-height: 1;
  margin-bottom: -20px;
  display: block;
}

/* ============================================
   SECTION: EVENTS
   ============================================ */
.section--events {
  background: var(--black-deep);
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.event-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--duration-fast);
}

.event-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.event-item:hover {
  background: rgba(212, 175, 55, 0.02);
}

.event-item__date {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold);
  min-width: 140px;
}

.event-item__date-month {
  font-size: 0.7rem;
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-muted);
  display: block;
  margin-top: 4px;
}

.event-item__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.event-item__venue {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
}

.event-item__city {
  font-size: 0.85rem;
  color: var(--white-muted);
  font-weight: 300;
}

.event-item__detail {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0.03em;
  opacity: 0.8;
}

.event-item__cta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-soft);
  padding: 10px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  transition: all var(--duration-fast);
  white-space: nowrap;
}

.event-item__cta:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
}

/* ---- Event Cards (poster grid) ---- */
.event-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.event-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
              0 0 40px rgba(212, 175, 55, 0.06);
  border-color: rgba(212, 175, 55, 0.15);
}

.event-card__cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.event-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.event-card:hover .event-card__cover img {
  transform: scale(1.05);
}

.event-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(7, 7, 7, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 4px;
}

.event-card__body {
  padding: 24px;
}

.event-card__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.event-card__venue,
.event-card__time {
  font-size: 0.85rem;
  color: var(--white-muted);
  font-weight: 300;
  margin-bottom: 4px;
  line-height: 1.5;
}

.event-card__price {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 500;
  margin-top: 8px;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  opacity: 0.9;
}

.event-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 24px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black-deep);
  background: var(--gold);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.event-card__btn:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 24px rgba(212, 175, 55, 0.3);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .event-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .event-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---- Past Events ---- */
.section--past {
  padding-top: 0;
}

.section--past .section__title {
  color: var(--white-muted);
}

.event-card--past {
  opacity: 0.55;
  transition: opacity 0.4s ease,
              transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
}

.event-card--past:hover {
  opacity: 0.8;
}

.event-card--past .event-card__cover img {
  filter: grayscale(40%);
  transition: filter 0.4s ease,
              transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.event-card--past:hover .event-card__cover img {
  filter: grayscale(0%);
}

.event-card__badge--past {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--white-muted);
}


/* ============================================
   SECTION: GALLERY
   ============================================ */
.section--gallery {
  background: var(--black-soft);
  position: relative;
}

.section--gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.12), transparent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
  margin-bottom: 48px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}

.gallery-item:nth-child(1) { grid-column: 1 / 8; grid-row: 1 / 3; }
.gallery-item:nth-child(2) { grid-column: 8 / 13; grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 8 / 13; grid-row: 2; }
.gallery-item:nth-child(4) { grid-column: 1 / 5; grid-row: 3; }
.gallery-item:nth-child(5) { grid-column: 5 / 13; grid-row: 3; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-smooth);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 7, 0.0);
  transition: background var(--duration-med);
}

.gallery-item:hover .gallery-item__overlay {
  background: rgba(7, 7, 7, 0.25);
}

.gallery__cta {
  text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 60px 0 40px;
  text-align: center;
  position: relative;
  background: var(--black-deep);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(200px, 40%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.footer__name {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 28px;
}

.footer__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 36px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white-muted);
  transition: all var(--duration-fast);
}

.footer__social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--white-muted);
  font-weight: 300;
  letter-spacing: 0.05em;
}

.footer__credit {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-top: 6px;
}

.footer__credit a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__credit a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .disco-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .music-feature {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .story {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .story__image-wrap {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .navbar__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    padding: 60px 40px;
    transition: right var(--duration-med) var(--ease-out);
    border-left: 1px solid rgba(212, 175, 55, 0.08);
  }
  
  .navbar__links.open {
    right: 0;
  }
  
  .navbar__toggle {
    display: flex;
    z-index: 1001;
  }
  
  .hero__title {
    font-size: clamp(2.8rem, 12vw, 4.5rem);
  }
  
  .event-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0;
  }
  
  .event-item__date {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: unset;
  }
  
  .event-item__date-month {
    display: inline;
    margin-top: 0;
  }
  
  .event-item__cta {
    justify-self: start;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  
  .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: auto; }
  .gallery-item:nth-child(2) { grid-column: 1; grid-row: auto; }
  .gallery-item:nth-child(3) { grid-column: 2; grid-row: auto; }
  .gallery-item:nth-child(4) { grid-column: 1; grid-row: auto; }
  .gallery-item:nth-child(5) { grid-column: 2; grid-row: auto; }
  
  .section__header {
    flex-direction: column;
    gap: 12px;
  }
  
  .music-feature__buttons {
    flex-direction: column;
  }
  
  .music-feature__buttons .btn {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .disco-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .hero__label {
    font-size: 0.65rem;
  }
  
  .hero__cta {
    padding: 14px 28px;
    font-size: 0.72rem;
  }
  
  .player__controls {
    flex-wrap: wrap;
  }
  
  .player__eq {
    display: none;
  }
}

/* ============================================
   SUB-PAGES: SHARED STYLES
   ============================================ */

/* Page Hero Banner */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 360px;
  max-height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  background: var(--charcoal);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: grayscale(0.4);
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7,7,7,0.5) 0%,
    rgba(7,7,7,0.3) 40%,
    rgba(7,7,7,0.85) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(40px, 6vw, 72px);
}

.page-hero__label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0;
  animation: heroFadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  opacity: 0;
  animation: heroFadeUp 0.8s var(--ease-out) 0.4s forwards;
}

.page-hero__subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--white-muted);
  margin-top: 16px;
  max-width: 500px;
  line-height: 1.6;
  opacity: 0;
  animation: heroFadeUp 0.8s var(--ease-out) 0.6s forwards;
}

/* Section subtitle / description */
.section__desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--white-muted);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 48px;
}

.section__desc--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Gold divider */
.gold-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
  margin: 48px 0;
}

.gold-divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   MUSIC PAGE
   ============================================ */

/* Track List */
.tracklist {
  list-style: none;
}

.tracklist__item {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 16px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  border-radius: 4px;
  transition: background var(--duration-fast);
  cursor: pointer;
}

.tracklist__item:hover {
  background: rgba(212, 175, 55, 0.04);
}

.tracklist__num {
  font-size: 0.85rem;
  color: var(--white-muted);
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.tracklist__item:hover .tracklist__num {
  color: var(--gold);
}

.tracklist__name {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--white);
}

.tracklist__duration {
  font-size: 0.8rem;
  color: var(--white-muted);
  font-variant-numeric: tabular-nums;
}

.tracklist__item.playing {
  background: rgba(212, 175, 55, 0.08);
}

.tracklist__item.playing .tracklist__num,
.tracklist__item.playing .tracklist__name {
  color: var(--gold);
}

/* Album detail */
.album-detail {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}

.album-detail__cover {
  position: sticky;
  top: 100px;
}

.album-detail__cover img {
  width: 100%;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.album-detail__meta {
  margin-bottom: 24px;
}

.album-detail__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}

.album-detail__year {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
}

.album-detail__desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--white-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

/* Streaming Links */
.stream-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.stream-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-soft);
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  transition: all var(--duration-fast);
}

.stream-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.stream-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ============================================
   STORY PAGE
   ============================================ */

.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  margin-bottom: 80px;
}

.story-section--reversed {
  direction: rtl;
}

.story-section--reversed > * {
  direction: ltr;
}

.story-section__image {
  overflow: hidden;
  border-radius: 2px;
}

.story-section__image img {
  width: 100%;
  border-radius: 2px;
  transition: transform var(--duration-med) var(--ease-smooth);
}

.story-section__image:hover img {
  transform: scale(1.03);
}

.story-section__text h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.25;
}

.story-section__text p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--white-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

/* Pull quote */
.pull-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--white-soft);
  line-height: 1.5;
  padding: 40px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  margin: 60px 0;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.pull-quote span {
  color: var(--gold);
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), rgba(212,175,55,0.1));
}

.timeline__item {
  position: relative;
  padding-bottom: 48px;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -44px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}

.timeline__year {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.timeline__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}

.timeline__desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--white-muted);
  line-height: 1.7;
}

/* ============================================
   TOUR PAGE
   ============================================ */

.tour-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-left: 16px;
}

.tour-status--live {
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold);
}

.tour-status--live::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.tour-status--past {
  background: rgba(255,255,255,0.05);
  color: var(--white-muted);
}

.event-item--past {
  opacity: 0.5;
}

.event-item--past .event-item__cta {
  pointer-events: none;
  opacity: 0.4;
}

/* Booking CTA */
.booking-cta {
  text-align: center;
  padding: 60px 0;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.booking-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 12px;
}

.booking-cta__text {
  font-size: 0.95rem;
  color: var(--white-muted);
  font-weight: 300;
  margin-bottom: 28px;
}

/* ============================================
   GALLERY PAGE (Full)
   ============================================ */

.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-full-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-full-item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-full-item--wide {
  grid-column: span 2;
}

.gallery-full-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-smooth);
}

.gallery-full-item:hover img {
  transform: scale(1.06);
}

.gallery-full-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7,7,7,0.6) 100%);
  opacity: 0;
  transition: opacity var(--duration-med);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-full-item:hover .gallery-full-item__overlay {
  opacity: 1;
}

.gallery-full-item__caption {
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 400;
}

/* Instagram Feed Placeholder */
.instagram-feed {
  min-height: 400px;
}

.instagram-feed__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 4px;
  background: rgba(20, 20, 20, 0.6);
  padding: 60px 20px;
}

.instagram-feed__icon {
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.7;
  animation: instaPulse 2s ease-in-out infinite;
}

@keyframes instaPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.05); }
}

.instagram-feed__text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 8px;
}

.instagram-feed__subtext {
  font-size: 0.85rem;
  color: var(--white-muted);
  letter-spacing: 0.1em;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-med);
}

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

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--duration-fast);
  background: none;
  border: none;
}

.lightbox__close:hover {
  color: var(--gold);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--duration-fast);
  background: none;
  border: none;
}

.lightbox__nav:hover {
  color: var(--gold);
}

.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
}

.contact-info__item {
  margin-bottom: 36px;
}

.contact-info__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-info__value {
  font-size: 1rem;
  font-weight: 300;
  color: var(--white-soft);
  line-height: 1.6;
}

.contact-info__value a {
  color: var(--white-soft);
  transition: color var(--duration-fast);
}

.contact-info__value a:hover {
  color: var(--gold);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  padding: 14px 18px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--white);
  transition: border-color var(--duration-fast);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--white-muted);
  opacity: 0.5;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: var(--charcoal);
  color: var(--white);
}

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

/* ============================================
   SUB-PAGE RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .album-detail {
    grid-template-columns: 280px 1fr;
  }
  
  .story-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .story-section--reversed {
    direction: ltr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .gallery-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-full-item--tall {
    grid-row: span 1;
    aspect-ratio: 4/3;
  }
}

@media (max-width: 768px) {
  .album-detail {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .album-detail__cover {
    position: static;
    max-width: 320px;
  }
  
  .page-hero {
    height: 40vh;
    min-height: 280px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .gallery-full-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  
  .gallery-full-item--wide {
    grid-column: span 1;
  }

  .tracklist__item {
    grid-template-columns: 28px 1fr auto;
    gap: 12px;
    padding: 12px 8px;
  }
}
