/* ==========================================================================
   WREN MONTGOMERY — OFFICIAL ARTIST PLATFORM
   Nashville Country-Pop / Neo-Traditional Kick
   ========================================================================== */

:root {
  --bg-main: #0e0c0a;
  --bg-secondary: #171310;
  --bg-card: rgba(26, 21, 17, 0.75);
  --bg-card-hover: rgba(36, 29, 23, 0.9);
  
  --amber-gold: #f59e0b;
  --amber-light: #fbbf24;
  --amber-dark: #b45309;
  --amber-glow: rgba(245, 158, 11, 0.35);

  --whiskey-wood: #8b4513;
  --denim-blue: #3b82f6;
  --denim-wash: rgba(59, 130, 246, 0.15);
  
  --text-primary: #fdfbf7;
  --text-secondary: #d1c7bc;
  --text-muted: #8e8378;
  
  --border-subtle: rgba(245, 158, 11, 0.18);
  --border-active: rgba(245, 158, 11, 0.55);
  
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 9999px;
  
  --shadow-warm: 0 16px 40px -10px rgba(0, 0, 0, 0.7), 0 0 30px rgba(245, 158, 11, 0.08);
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
}

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

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad {
  padding: 6.5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-gold);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid var(--border-subtle);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  background: linear-gradient(180deg, #ffffff 40%, #e2d9cd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Common Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  padding: 0.85rem 1.8rem;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #120e0a;
  box-shadow: 0 8px 20px -4px var(--amber-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -4px rgba(245, 158, 11, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(245, 158, 11, 0.12);
  border-color: var(--amber-gold);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.05rem 2.2rem;
  font-size: 1.05rem;
}

/* ==========================================================================
   Navigation Bar
   ========================================================================== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: var(--transition);
}

.site-nav.scrolled {
  padding: 0.8rem 0;
  background: rgba(14, 12, 10, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
}

.brand-icon {
  color: var(--amber-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}

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

.nav-drawer-btn {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-nav {
  background: rgba(245, 158, 11, 0.15);
  color: var(--amber-gold);
  border: 1px solid var(--border-subtle);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.55rem 1.35rem;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}

.btn-nav:hover {
  background: var(--amber-gold);
  color: #120e0a;
  border-color: var(--amber-gold);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: var(--transition);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

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

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(0.68) contrast(1.05);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(14, 12, 10, 0.3) 0%, rgba(14, 12, 10, 0.88) 80%, #0e0c0a 100%),
              linear-gradient(to bottom, rgba(14, 12, 10, 0.5) 0%, transparent 40%, rgba(14, 12, 10, 0.95) 90%, #0e0c0a 100%);
}

.hero-sunburst {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.22) 0%, rgba(217, 119, 6, 0.08) 45%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

#fireflyCanvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-gold);
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid var(--border-active);
  padding: 0.5rem 1.3rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.75rem;
  backdrop-filter: blur(10px);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--amber-gold);
  box-shadow: 0 0 10px var(--amber-gold);
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.35); opacity: 1; box-shadow: 0 0 15px var(--amber-gold); }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.hero-title {
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.hero-title span {
  display: block;
  font-size: 0.38em;
  letter-spacing: 0.22em;
  color: var(--amber-gold);
  font-family: var(--font-body);
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   Music & Barn Jukebox Section (Player + Visualizer)
   ========================================================================== */
.music-section {
  background: linear-gradient(180deg, #0e0c0a 0%, #15110d 50%, #0e0c0a 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.player-container {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-warm);
}

.player-art-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.player-art-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  border: 1px solid var(--border-subtle);
  background: #000;
}

.player-art-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.player-art-frame:hover .player-art-img {
  transform: scale(1.03);
}

.audio-active-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(14, 12, 10, 0.85);
  border: 1px solid var(--border-active);
  color: var(--amber-gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  backdrop-filter: blur(8px);
}

.visualizer-canvas-wrap {
  width: 100%;
  height: 70px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(245, 158, 11, 0.1);
  overflow: hidden;
}

#visualizerCanvas {
  width: 100%;
  height: 100%;
  display: block;
}

.player-controls-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.player-header-meta {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1.25rem;
}

.player-now-playing {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-gold);
  margin-bottom: 0.4rem;
}

.player-track-title {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 0.3rem;
}

.player-track-artist {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Scrubber */
.scrubber-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.scrubber-track {
  width: 100%;
  height: 7px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.scrubber-fill {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, #d97706, #f59e0b);
  border-radius: var(--radius-pill);
  transition: width 0.1s linear;
}

.time-display {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-family: monospace;
}

/* Controls Bar */
.controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.playback-btns {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ctrl-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.ctrl-btn:hover {
  background: rgba(245, 158, 11, 0.15);
  color: var(--amber-gold);
  border-color: var(--amber-gold);
}

.ctrl-btn.active {
  background: var(--amber-gold);
  color: #120e0a;
}

.play-pause-master-btn {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #120e0a;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 25px -5px var(--amber-glow);
  transition: var(--transition);
}

.play-pause-master-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 30px -4px rgba(245, 158, 11, 0.6);
}

.secondary-controls {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.btn-lyrics {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
}

.btn-lyrics:hover {
  background: rgba(245, 158, 11, 0.15);
  color: var(--amber-gold);
  border-color: var(--amber-gold);
}

.volume-slider-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
}

.volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 90px;
  height: 5px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.15);
  outline: none;
  cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--amber-gold);
  cursor: pointer;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}

/* Playlist Card */
.playlist-card {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.playlist-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.playlist-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 200px;
  overflow-y: auto;
  padding-right: 0.4rem;
}

.playlist-items::-webkit-scrollbar {
  width: 4px;
}
.playlist-items::-webkit-scrollbar-thumb {
  background: rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-pill);
}

.playlist-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.playlist-item:hover {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.2);
}

.playlist-item.active {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--amber-gold);
}

.playlist-track-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.track-num {
  font-size: 0.85rem;
  color: var(--text-muted);
  width: 20px;
}

.playlist-item.active .track-num {
  color: var(--amber-gold);
}

.track-info-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

.playlist-item.active .track-info-name {
  color: var(--amber-gold);
}

.track-info-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.track-dur {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-family: monospace;
}

/* ==========================================================================
   Visual Archives / Tailgate Sweetheart Carousel
   ========================================================================== */
.gallery-section {
  position: relative;
  background: var(--bg-secondary);
}

.carousel-container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 1rem 0;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 calc(25% - 1.15rem);
  min-width: 260px;
}

.slide-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
}

.slide-card:hover {
  transform: translateY(-6px);
  border-color: var(--amber-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(245, 158, 11, 0.2);
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 12, 10, 0.95) 0%, rgba(14, 12, 10, 0.4) 40%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem 1.25rem;
}

.slide-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-gold);
  margin-bottom: 0.4rem;
}

.slide-title {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.3rem;
}

.slide-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 0.8rem;
}

.slide-zoom-btn {
  align-self: flex-start;
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid var(--border-active);
  color: var(--amber-gold);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.slide-zoom-btn:hover {
  background: var(--amber-gold);
  color: #120e0a;
}

/* Carousel Controls */
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(14, 12, 10, 0.8);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.carousel-nav-btn:hover {
  background: var(--amber-gold);
  color: #120e0a;
  border-color: var(--amber-gold);
}

.carousel-prev { left: -1.5rem; }
.carousel-next { right: -1.5rem; }

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  width: 24px;
  border-radius: var(--radius-pill);
  background: var(--amber-gold);
}

/* ==========================================================================
   Story / Lore Section
   ========================================================================== */
.story-section {
  position: relative;
  background: #0e0c0a;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-warm);
  border: 1px solid var(--border-subtle);
}

.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-quote-card {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background: rgba(14, 12, 10, 0.88);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.story-quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.story-quote-author {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--amber-gold);
  text-transform: uppercase;
}

.story-text-content h3 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.story-text-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* ==========================================================================
   Merch / General Store Section
   ========================================================================== */
.merch-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.merch-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.merch-card:hover {
  transform: translateY(-6px);
  border-color: var(--amber-gold);
  box-shadow: var(--shadow-warm);
}

.merch-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #000;
}

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

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

.merch-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(14, 12, 10, 0.85);
  border: 1px solid var(--border-active);
  color: var(--amber-gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
}

.merch-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.merch-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-gold);
  margin-bottom: 0.4rem;
}

.merch-title {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.4rem;
}

.merch-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.merch-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--amber-gold);
}

.merch-curr {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.merch-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.merch-buy-btn {
  width: 100%;
}

/* ==========================================================================
   Newsletter / The Tailgate Club Section
   ========================================================================== */
.join-section {
  background: radial-gradient(circle at center, rgba(36, 29, 23, 0.8) 0%, #0e0c0a 80%);
}

.join-form {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
}

.join-input {
  flex: 1;
  min-width: 280px;
  padding: 1rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  background: rgba(14, 12, 10, 0.85);
  color: #fff;
  font-size: 1rem;
  outline: none;
  font-family: inherit;
  transition: var(--transition);
}

.join-input:focus {
  border-color: var(--amber-gold);
  box-shadow: 0 0 15px var(--amber-glow);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #080706;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4.5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand h4 {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}

.footer-brand p {
  color: var(--text-muted);
  max-width: 360px;
  line-height: 1.6;
}

.footer-nav h5 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-gold);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.92rem;
  transition: var(--transition);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   Persistent Floating Mini Player
   ========================================================================== */
.persistent-floating-player {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(18, 14, 11, 0.92);
  border: 1px solid var(--border-active);
  backdrop-filter: blur(16px);
  padding: 0.65rem 1.15rem 0.65rem 0.75rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 20px rgba(245, 158, 11, 0.15);
  cursor: pointer;
  transition: var(--transition);
}

.persistent-floating-player:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.9), 0 0 25px rgba(245, 158, 11, 0.3);
}

.mini-player-thumb {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-subtle);
}

.mini-player-info {
  display: flex;
  flex-direction: column;
}

.mini-player-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.mini-player-artist {
  font-size: 0.75rem;
  color: var(--amber-gold);
  white-space: nowrap;
}

.mini-play-btn {
  background: var(--amber-gold);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #120e0a;
  cursor: pointer;
  transition: var(--transition);
}

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

/* ==========================================================================
   Custom Modals (Rule Compliant: NO alert/confirm dialogs)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

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

.custom-modal {
  background: radial-gradient(circle at top, rgba(36, 28, 22, 0.95), rgba(18, 14, 11, 0.98));
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  max-width: 620px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(245, 158, 11, 0.15);
  transform: scale(0.95);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.modal-overlay.active .custom-modal {
  transform: scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-title {
  font-size: 1.4rem;
  color: #fff;
}

.modal-close-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: var(--amber-gold);
  color: #120e0a;
}

.modal-body {
  padding: 1.75rem;
  overflow-y: auto;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.lyrics-text {
  white-space: pre-line;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: #fdfbf7;
  text-align: center;
}

.modal-footer {
  padding: 1.25rem 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

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

.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-height: 75vh;
  max-width: 100%;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  border: 1px solid var(--border-subtle);
}

.lightbox-info {
  margin-top: 1rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .player-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.75rem;
  }
  .player-art-frame {
    max-width: 340px;
    margin: 0 auto;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .carousel-slide {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .site-nav {
    padding: 1rem 0;
  }
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(14, 12, 10, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
  }
  .nav-drawer-btn {
    display: inline-flex;
    width: 100%;
    margin-top: 0.5rem;
  }
  .mobile-toggle {
    display: flex;
  }
  .carousel-slide {
    flex: 0 0 calc(100% - 1rem);
  }
  .carousel-prev { left: 0.5rem; }
  .carousel-next { right: 0.5rem; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .persistent-floating-player {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    justify-content: space-between;
  }
}
