/* ===========================
   JESSIE DANS — Global Styles
   =========================== */

:root {
  --gold: #8B1A1A;
  --gold-light: #A82020;
  --gold-dark: #5C0F0F;
  --black: #080808;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #222222;
  --white: #f5f5f0;
  --grey: #888888;
  --grey-light: #cccccc;
  --nav-height: 80px;
  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-sans: 'Barlow', 'Helvetica Neue', sans-serif;
  --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ─── Selection ─── */
::selection { background: var(--gold); color: var(--black); }

/* ═══════════════════════════════
   NAVIGATION
   ═══════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  transition: background 0.5s var(--transition), backdrop-filter 0.5s;
}

.nav.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(158, 68, 101, 0.2);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #f5f0e8;
  transition: color 0.3s;
}

.nav-logo span { color: var(--gold); }
.nav-logo:hover { color: var(--gold); }

/* Once scrolled, switch logo to dark theme color */
.nav.scrolled .nav-logo { color: var(--white); }

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

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.82);
  transition: color 0.3s;
  position: relative;
}

/* Once scrolled, switch links to dark theme color */
.nav.scrolled .nav-links a { color: var(--grey-light); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

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

.nav-social a {
  color: rgba(245, 240, 232, 0.75);
  font-size: 1rem;
  transition: color 0.3s, transform 0.3s;
}

.nav-social a:hover { color: var(--gold); transform: translateY(-2px); }

/* Once scrolled, switch icons to dark theme color */
.nav.scrolled .nav-social a { color: var(--grey); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #f5f0e8;
  transition: all 0.3s var(--transition);
}

.nav.scrolled .hamburger span { background: var(--white); }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(30px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--transition);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--gold); }

.mobile-menu .mobile-social {
  display: flex;
  gap: 24px;
  margin-top: 20px;
}

.mobile-menu .mobile-social a {
  font-size: 1.4rem;
  color: var(--grey);
}

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

.hero-bg {
  position: absolute;
  inset: -15%;
  will-change: transform;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 8, 8, 0.60) 0%,
    rgba(8, 8, 8, 0.35) 35%,
    rgba(8, 8, 8, 0.30) 60%,
    rgba(8, 8, 8, 0.75) 100%
  );
  z-index: 1;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  will-change: transform;
  z-index: 2;
}

.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(139,26,26,0.55), transparent 70%);
  top: -10%; left: -5%;
}

.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139,26,26,0.28), transparent 70%);
  bottom: 10%; right: 10%;
}

.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(92,15,15,0.2), transparent 70%);
  top: 40%; left: 50%;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particle-float linear infinite;
}

@keyframes particle-float {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-100px) translateX(60px); opacity: 0; }
}

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

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 1s var(--transition) 0.3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 12rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(30px);
  animation: fade-up 1s var(--transition) 0.5s forwards;
}

.hero-title em {
  font-style: normal;
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--grey-light);
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 1s var(--transition) 0.7s forwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 1s var(--transition) 0.9s forwards;
}

.hero-eyebrow { color: var(--gold) !important; }
.hero-title { color: #f5f0e8 !important; }
.hero-title em { color: var(--gold) !important; }
.hero-subtitle { color: rgba(245,240,232,0.75) !important; }

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--grey);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: fade-up 1s var(--transition) 1.2s forwards;
}

.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* ═══════════════════════════════
   BUTTONS
   ═══════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateX(-100%);
  transition: transform 0.4s var(--transition);
}

.btn:hover::before { transform: translateX(0); }

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

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.35);
}

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

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline-hero {
  background: transparent;
  color: #f5f0e8;
  border: 1px solid rgba(245,240,232,0.55);
}

.btn-outline-hero:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-ghost:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* ═══════════════════════════════
   SECTION COMMONS
   ═══════════════════════════════ */
.section {
  padding: 120px 60px;
  position: relative;
}

.section-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--white);
}

.section-title em { color: var(--gold); font-style: normal; }

.section-subtitle {
  font-size: 1rem;
  color: var(--grey);
  max-width: 500px;
  line-height: 1.8;
  margin-top: 16px;
}

.divider {
  width: 60px; height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 24px 0;
}

/* ─── Reveal animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.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; }

/* ─── Keyframes ─── */
@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ═══════════════════════════════
   HOME — FEATURED SECTION
   ═══════════════════════════════ */
.featured {
  background: var(--dark);
  padding: 120px 60px;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.featured-visual {
  position: relative;
}

.featured-image-frame {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  background: var(--dark-2);
}

.featured-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.15) 0%, transparent 60%);
  z-index: 1;
}

.featured-image-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #1c1408 0%, #0f0f0f 50%, #1a1008 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-image-placeholder svg {
  width: 80px; height: 80px;
  opacity: 0.15;
}

.featured-image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--transition);
}

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

.featured-badge {
  position: absolute;
  top: -20px; right: -20px;
  width: 100px; height: 100px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.3;
  animation: spin-slow 12s linear infinite;
  z-index: 2;
}

.featured-badge-inner {
  animation: spin-slow 12s linear infinite reverse;
}

.featured-accent {
  position: absolute;
  bottom: -15px; left: -15px;
  width: 60%; height: 60%;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  z-index: -1;
}

.featured-content .section-tag { margin-top: 0; }

.featured-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.stat-item {}
.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--grey);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

.featured-platforms {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.platform-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s;
  color: var(--grey-light);
}

.platform-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  background: rgba(201,168,76,0.05);
}

.platform-link i { font-size: 1.1rem; }
.platform-link.spotify i { color: #1DB954; }
.platform-link.apple i { color: #fc3c44; }

/* ═══════════════════════════════
   HOME — LATEST RELEASE
   ═══════════════════════════════ */
.latest-release {
  padding: 120px 60px;
  background: var(--black);
  text-align: center;
}

.latest-release-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.latest-release-header {
  margin-bottom: 60px;
}

.release-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.release-card {
  background: var(--dark);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.4s var(--transition);
  cursor: pointer;
  group: true;
}

.release-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.release-card-art {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1c1408, #0f0a02);
  position: relative;
  overflow: hidden;
}

.release-card-art-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(201,168,76,0.2);
}

.release-card-art img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}

.release-card:hover .release-card-art img {
  transform: scale(1.08);
}

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

.release-card:hover .release-card-play { opacity: 1; }

.release-card-play-btn {
  width: 60px; height: 60px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1.2rem;
  transition: transform 0.2s;
}

.release-card-play-btn:hover { transform: scale(1.1); }

.release-card-info {
  padding: 24px;
  text-align: left;
}

.release-card-type {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.release-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.release-card-date {
  font-size: 0.8rem;
  color: var(--grey);
}

.release-card-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.release-card-links a {
  font-size: 1.1rem;
  color: var(--grey);
  transition: color 0.3s, transform 0.3s;
}

.release-card-links a:hover { color: var(--gold); transform: scale(1.2); }

/* ═══════════════════════════════
   HOME — UPCOMING EVENTS STRIP
   ═══════════════════════════════ */
.events-strip {
  background: var(--gold);
  padding: 60px;
  overflow: hidden;
  position: relative;
}

.events-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.events-strip h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
}

.events-strip-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 40px;
  border-left: 1px solid rgba(255,255,255,0.12);
}

.event-strip-date {
  text-align: center;
}

.event-strip-month {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
}

.event-strip-day {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.event-strip-info .event-strip-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--black);
}

.event-strip-info .event-strip-venue {
  font-size: 0.8rem;
  color: rgba(0,0,0,0.55);
}

/* ═══════════════════════════════
   PAGE HERO (inner pages)
   ═══════════════════════════════ */
.page-hero {
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.page-hero-bg {
  position: absolute;
  inset: -10%;
  will-change: transform;
  overflow: hidden;
}

.page-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  display: block;
}

.page-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 8, 8, 0.95) 0%,
    rgba(8, 8, 8, 0.55) 40%,
    rgba(8, 8, 8, 0.30) 100%
  );
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 0.95;
}

/* ═══════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════ */
.about-section {
  padding: 100px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.about-image-wrap {
  position: relative;
  aspect-ratio: 2/3;
  border-radius: 4px;
  overflow: hidden;
  background: var(--dark-2);
}

.about-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-image-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #1c1408, #0f0f0f);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(201,168,76,0.15);
}

.about-side-frame {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 60%; height: 40%;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 4px;
  pointer-events: none;
}

.about-body p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--grey-light);
  margin-bottom: 24px;
}

.about-body p:first-of-type {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  line-height: 1.7;
}

.about-quote {
  border-left: 2px solid var(--gold);
  padding: 20px 30px;
  margin: 40px 0;
  background: rgba(201,168,76,0.04);
  border-radius: 0 4px 4px 0;
}

.about-quote p {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 500;
  color: var(--white);
  margin: 0;
}

.about-quote cite {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 12px;
  font-style: normal;
}

.influences {
  margin-top: 40px;
  padding: 40px;
  background: var(--dark);
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.05);
}

.influences h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--gold);
}

.influences-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 8px 18px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--grey-light);
  transition: all 0.3s;
}

.tag:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

/* ═══════════════════════════════
   MUSIC PAGE
   ═══════════════════════════════ */
.music-section {
  padding: 80px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.music-filter {
  display: flex;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  cursor: pointer;
  background: none;
  transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

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

.music-card {
  background: var(--dark);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.4s var(--transition);
}

.music-card:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.music-card-art {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1c1408, #111);
  position: relative;
  overflow: hidden;
}

.music-art-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(201,168,76,0.15);
}

.music-card-art img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--transition);
}

.music-card:hover .music-card-art img { transform: scale(1.05); }

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

.music-card:hover .music-overlay { opacity: 1; }

.play-circle {
  width: 56px; height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1rem;
  transition: transform 0.2s;
}

.play-circle:hover { transform: scale(1.1); }

.music-card-body {
  padding: 20px;
}

.music-card-type {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.music-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.music-card-meta {
  font-size: 0.78rem;
  color: var(--grey);
  margin-bottom: 16px;
}

.music-card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.music-platform-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.music-platform-btn.spotify {
  background: rgba(29,185,84,0.1);
  color: #1DB954;
  border-color: rgba(29,185,84,0.2);
}

.music-platform-btn.spotify:hover {
  background: #1DB954;
  color: var(--black);
}

.music-platform-btn.apple {
  background: rgba(252,60,68,0.1);
  color: #fc3c44;
  border-color: rgba(252,60,68,0.2);
}

.music-platform-btn.apple:hover {
  background: #fc3c44;
  color: var(--white);
}

/* ═══════════════════════════════
   EVENTS PAGE
   ═══════════════════════════════ */
.events-section {
  padding: 80px 60px;
  max-width: 1000px;
  margin: 0 auto;
}

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

.event-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 32px 40px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 4px;
  transition: all 0.3s var(--transition);
  cursor: pointer;
}

.event-row:hover {
  background: var(--dark-2);
  border-color: rgba(201,168,76,0.2);
  transform: translateX(8px);
}

.event-row-date {
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  padding-right: 40px;
}

.event-row-month {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.event-row-day {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}

.event-row-year {
  font-size: 0.7rem;
  color: var(--grey);
}

.event-row-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.event-row-details {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.event-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--grey);
}

.event-detail i { color: var(--gold); font-size: 0.75rem; }

.event-row-action { white-space: nowrap; }

.event-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.event-badge.sold-out {
  background: rgba(255,60,60,0.15);
  color: #ff4444;
  border: 1px solid rgba(255,60,60,0.2);
}

.event-badge.available {
  background: rgba(29,185,84,0.1);
  color: #1DB954;
  border: 1px solid rgba(29,185,84,0.2);
}

.event-badge.coming-soon {
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.2);
}

/* ═══════════════════════════════
   STORE PAGE
   ═══════════════════════════════ */
.store-section {
  padding: 80px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.store-categories {
  display: flex;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

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

.store-card {
  background: var(--dark);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.4s var(--transition);
}

.store-card:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.store-card-image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #2a2520, #1a1510);
  position: relative;
  overflow: hidden;
}

.store-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--transition);
}

.store-card:hover .store-card-image img { transform: scale(1.05); }

.store-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(201,168,76,0.15);
}

.store-card-badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 14px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
}

.store-card-body {
  padding: 24px;
}

.store-card-category {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.store-card-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.store-card-desc {
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 20px;
}

.store-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.store-card-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}

.store-card-price span {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--grey);
  text-decoration: line-through;
  margin-left: 8px;
  font-weight: 400;
}

.add-to-cart {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.add-to-cart:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ═══════════════════════════════
   BOOKINGS PAGE
   ═══════════════════════════════ */
.bookings-section {
  padding: 80px 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.bookings-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.booking-info {}

.booking-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--white);
}

.booking-info p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 32px;
}

.booking-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.booking-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--dark);
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.05);
}

.booking-detail-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.booking-detail-text h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.booking-detail-text p {
  font-size: 0.8rem;
  color: var(--grey);
  margin: 0;
}

.booking-manager {
  padding: 28px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
}

.booking-manager h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.booking-manager p {
  font-size: 0.85rem;
  color: var(--grey-light);
  margin: 0 0 4px 0;
}

.booking-manager a {
  color: var(--gold);
  font-size: 0.85rem;
}

/* Form */
.booking-form {
  background: var(--dark);
  border-radius: 4px;
  padding: 48px;
  border: 1px solid rgba(255,255,255,0.06);
}

.booking-form h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 24px;
}

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

label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 8px;
}

input, select, textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 2px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
  appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.06);
}

input::placeholder, textarea::placeholder { color: var(--grey); }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  cursor: pointer;
}

select option { background: var(--dark-2); }

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

.form-submit {
  margin-top: 8px;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 0.85rem;
}

.form-note {
  font-size: 0.75rem;
  color: var(--grey);
  text-align: center;
  margin-top: 16px;
}

/* ═══════════════════════════════
   FOOTER
   ═══════════════════════════════ */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 80px 60px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand h3 span { color: var(--gold); }

.footer-brand p {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: 0.9rem;
  transition: all 0.3s;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  background: rgba(201,168,76,0.08);
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col li a {
  font-size: 0.85rem;
  color: var(--grey);
  transition: color 0.3s;
}

.footer-col li a:hover { color: var(--white); }

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

.footer-platform-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--grey);
  transition: color 0.3s;
}

.footer-platform-link i { font-size: 1rem; }
.footer-platform-link:hover { color: var(--white); }
.footer-platform-link.spotify i { color: #1DB954; }
.footer-platform-link.apple i { color: #fc3c44; }
.footer-platform-link.youtube i { color: #ff0000; }

.footer-bottom {
  max-width: 1200px;
  margin: 60px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--grey);
}

.footer-bottom a { color: var(--gold); }

/* ═══════════════════════════════
   RESPONSIVE
   ═══════════════════════════════ */
@media (max-width: 1100px) {
  .music-grid { grid-template-columns: repeat(3, 1fr); }
  .store-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .nav-links, .nav-social { display: none; }
  .hamburger { display: flex; }
  .hero-bg-img { object-position: 70% center; }
  .mobile-menu { display: flex; }

  .section { padding: 80px 30px; }
  .page-hero { padding: 80px 30px; }
  .featured { padding: 80px 30px; }
  .latest-release { padding: 80px 30px; }
  .events-strip { padding: 40px 30px; }
  .events-strip-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .events-strip-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.12); padding: 24px 0 0; }

  .featured-grid { grid-template-columns: 1fr; gap: 40px; }
  .featured-badge { display: none; }
  .release-cards { grid-template-columns: 1fr 1fr; }
  .music-grid { grid-template-columns: repeat(2, 1fr); }
  .music-grid .music-card[style*="grid-column"] > div { grid-template-columns: 1fr !important; }
  .music-grid .music-card[style*="grid-column"] .music-card-art { min-height: 220px !important; }
  .music-grid .music-card[style*="grid-column"] .music-card-body { padding: 28px !important; }
  .store-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .bookings-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .booking-form { padding: 30px; }
  .footer-grid { grid-template-columns: 1fr; }

  .about-section { padding: 60px 30px; }
  .music-section { padding: 60px 30px; }
  .events-section { padding: 60px 30px; }
  .store-section { padding: 60px 30px; }
  .bookings-section { padding: 60px 30px; }
  footer { padding: 60px 30px 30px; }
}

@media (max-width: 600px) {
  .nav { padding: 0 24px; }
  .hero-title { font-size: clamp(3rem, 14vw, 5rem); }
  .hero-bg-img { object-position: 78% center; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .release-cards { grid-template-columns: 1fr; }
  .music-grid { grid-template-columns: 1fr; }
  .music-grid .music-card[style*="grid-column"] { grid-column: span 1 !important; }
  .music-grid .music-card[style*="grid-column"] > div { grid-template-columns: 1fr !important; }
  .music-grid .music-card[style*="grid-column"] .music-card-art { min-height: 260px !important; aspect-ratio: 1; }
  .music-grid .music-card[style*="grid-column"] .music-card-body { padding: 24px !important; }
  .store-grid { grid-template-columns: 1fr; }
  .event-row { grid-template-columns: 1fr; gap: 16px; padding: 24px 20px; }
  .event-row-date { border-right: none; padding-right: 0; text-align: left; display: flex; align-items: center; gap: 12px; }
  .event-row-day { font-size: 1.8rem; }
}
