/* ==========================================================================
   Main Layout — shawnpander.com
   Developed by Brian Kaplan
   ========================================================================== */

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

html {
  scroll-padding-top: var(--nav-height);
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text);
  background: var(--color-bg-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
}

img { max-width: 100%; display: block; }
a {
  color: var(--color-link);
  text-decoration: none;
  cursor: none;
}
a:hover { color: var(--color-link-hover); }
button { cursor: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: var(--lh-heading);
  font-weight: 700;
}

::selection {
  background: var(--color-gold);
  color: var(--color-bg-base);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container-wide {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ==========================================================================
   Scroll Progress Bar
   ========================================================================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-teal));
  z-index: 10010;
  transition: none;
  will-change: width;
  pointer-events: none;
}

/* ==========================================================================
   Custom Cursor
   ========================================================================== */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-parchment);
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo),
              background 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  mix-blend-mode: difference;
  opacity: 0;
}

.cursor.visible { opacity: 1; }

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-parchment);
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  opacity: 0;
}

.cursor-dot.visible { opacity: 1; }

.cursor.hovering {
  width: 80px;
  height: 80px;
  background: rgba(245, 232, 200, 0.08);
}

.cursor-label {
  position: fixed;
  pointer-events: none;
  z-index: 10002;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-parchment);
  mix-blend-mode: difference;
  opacity: 0;
  transform: translate(-50%, -50%);
}

.cursor-label.visible { opacity: 1; }

@media (hover: none), (pointer: coarse) {
  .cursor, .cursor-dot, .cursor-label { display: none !important; }
  body, a, button { cursor: auto; }
}

/* ==========================================================================
   Preloader
   ========================================================================== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-bg-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.preloader-vinyl {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 13%, #1a1a1a 13.5%, #1a1a1a 14.5%, transparent 15%),
    radial-gradient(circle, transparent 28%, rgba(50,50,50,0.4) 28.5%, transparent 29%),
    radial-gradient(circle, transparent 38%, rgba(50,50,50,0.3) 38.5%, transparent 39%),
    repeating-radial-gradient(circle, transparent 0px, transparent 2px, rgba(40,40,40,0.15) 2.5px, transparent 3px),
    radial-gradient(circle, #2a2a2a 0%, #0a0a0a 100%);
  position: relative;
  box-shadow: var(--shadow-vinyl);
}

.preloader-vinyl::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: url('../assets/images/album-art.jpg') center/cover;
}

.preloader-vinyl::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--color-bg-base);
  border: 2px solid #333;
}

.preloader-text {
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-parchment-dim);
}

.preloader-counter {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--color-gold);
  font-weight: 300;
  font-variant-numeric: tabular-nums;
}

.preloader-line {
  width: 60px;
  height: 1px;
  background: var(--color-parchment-dim);
  transform-origin: left;
  transform: scaleX(0);
}

/* ==========================================================================
   Film Grain Overlay
   ========================================================================== */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: overlay;
}

.grain::after {
  content: '';
  position: absolute;
  inset: -200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px;
  animation: grain-drift 0.8s steps(6) infinite;
}

@keyframes grain-drift {
  0%   { transform: translate(0, 0); }
  16%  { transform: translate(-5%, 5%); }
  33%  { transform: translate(3%, -3%); }
  50%  { transform: translate(-2%, 4%); }
  66%  { transform: translate(4%, -2%); }
  83%  { transform: translate(-4%, -5%); }
  100% { transform: translate(0, 0); }
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 var(--space-lg);
  background: linear-gradient(to bottom, rgba(10, 8, 6, 0.6) 0%, transparent 100%);
  transition: background 0.5s ease, border-color 0.5s ease, backdrop-filter 0.5s ease;
}

.nav.solid {
  background: rgba(10, 8, 6, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(200, 151, 42, 0.15);
}

.nav-inner {
  width: 100%;
  max-width: var(--max-width-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  position: relative;
}

.nav-logo-img {
  height: 32px;
  width: auto;
  transition: opacity 0.3s ease, filter 0.3s ease;
  filter: brightness(1);
}

.nav-logo:hover .nav-logo-img {
  filter: brightness(1.2);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--color-parchment);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.5s var(--ease-out-expo);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  background: none;
  border: none;
  z-index: 110;
}

.nav-hamburger span {
  width: 28px;
  height: 1.5px;
  background: var(--color-parchment);
  transition: transform 0.5s var(--ease-out-expo), opacity 0.3s ease;
  transform-origin: center;
}

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

/* Mobile menu */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 105;
  background: rgba(10, 8, 6, 0.97);
  backdrop-filter: blur(40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  clip-path: circle(0% at calc(100% - 40px) 40px);
  transition: clip-path 0.8s var(--ease-out-expo);
  pointer-events: none;
}

.nav-mobile.open {
  clip-path: circle(150% at calc(100% - 40px) 40px);
  pointer-events: auto;
}

.nav-mobile a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-parchment);
  text-transform: lowercase;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s var(--ease-out-expo), color 0.3s ease;
}

.nav-mobile.open a {
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile.open a:nth-child(1) { transition-delay: 0.2s; }
.nav-mobile.open a:nth-child(2) { transition-delay: 0.25s; }
.nav-mobile.open a:nth-child(3) { transition-delay: 0.3s; }
.nav-mobile.open a:nth-child(4) { transition-delay: 0.35s; }
.nav-mobile.open a:nth-child(5) { transition-delay: 0.4s; }
.nav-mobile.open a:nth-child(6) { transition-delay: 0.45s; }

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

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  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: 120%;
  object-fit: cover;
  object-position: center 30%;
  will-change: transform;
  filter: brightness(0.85) contrast(1.05);
}

/* Vignette overlay */
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(10, 8, 6, 0.6) 70%, rgba(10, 8, 6, 0.95) 100%);
  pointer-events: none;
}

/* Bottom gradient fade */
.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 25%;
  z-index: 1;
  background: linear-gradient(to bottom, transparent, var(--color-bg-base));
  pointer-events: none;
}

/* Cinematic letterbox bars */
.letterbox-top,
.letterbox-bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 4vh;
  background: var(--color-bg-base);
  z-index: 3;
}
.letterbox-top { top: 0; }
.letterbox-bottom { bottom: 0; }

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  max-width: 900px;
}

/* Hero logo */
.hero-logo-wrap {
  margin: 0 auto var(--space-md);
}

.hero-logo {
  max-width: 400px;
  width: 80%;
  height: auto;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  color: var(--color-parchment);
  font-style: italic;
  margin-bottom: var(--space-xs);
  line-height: 1;
  overflow: hidden;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-subtitle {
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  color: var(--color-parchment-dim);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: var(--space-lg);
  overflow: hidden;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--color-gold);
  margin: var(--space-md) auto;
}

.hero-ctas {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 1rem 2.5rem;
  border-radius: 0;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-out-expo);
  z-index: -1;
}

.btn:hover {
  color: var(--color-bg-base);
}

.btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-bg-base);
  box-shadow: 0 0 20px rgba(200, 151, 42, 0.2);
  font-weight: 700;
}

.btn-primary::before {
  background: var(--color-orange);
  transform: scaleX(0);
}

.btn-primary:hover {
  color: var(--color-cream);
  box-shadow: 0 0 30px rgba(200, 151, 42, 0.4);
}

/* Pulsing glow on primary CTA for attention */
.hero-ctas .btn-primary {
  animation: cta-glow 3s ease-in-out infinite;
}

@keyframes cta-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(200, 151, 42, 0.2); }
  50% { box-shadow: 0 0 35px rgba(200, 151, 42, 0.4), 0 0 80px rgba(200, 151, 42, 0.1); }
}

.streaming-links {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

.streaming-links a {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--color-parchment-dim);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  position: relative;
}

.streaming-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.4s var(--ease-out-expo);
}

.streaming-links a:hover { color: var(--color-gold); }
.streaming-links a:hover::after { width: 100%; }

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-indicator span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-parchment-dim);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--color-parchment-dim);
  transform-origin: top;
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%   { transform: scaleY(0); opacity: 0; }
  50%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0); opacity: 0; transform-origin: bottom; }
}

/* ==========================================================================
   Section Common
   ========================================================================== */
.section {
  padding: var(--space-lg) 0 var(--space-xl);
  position: relative;
}

/* Decorative edge between sections with different backgrounds */
.section + .section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(200, 151, 42, 0.15) 20%,
    rgba(200, 151, 42, 0.3) 50%,
    rgba(200, 151, 42, 0.15) 80%,
    transparent 100%
  );
  pointer-events: none;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
  display: block;
}

.section-title {
  font-size: var(--fs-h1);
  color: var(--color-parchment);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}

.section-divider {
  width: 40px;
  height: 1px;
  background: var(--color-gold);
  margin-bottom: var(--space-lg);
}

/* ==========================================================================
   Marquee / Horizontal Scroll Text
   ========================================================================== */
.marquee-section {
  padding: var(--space-xs) 0;
  overflow: hidden;
  border-top: 1px solid rgba(200, 151, 42, 0.2);
  border-bottom: 1px solid rgba(200, 151, 42, 0.2);
}

.marquee {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}

.marquee-text {
  font-family: var(--font-display);
  font-size: var(--fs-massive);
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(200, 151, 42, 0.5);
  text-transform: uppercase;
  padding: 0 var(--space-lg);
  flex-shrink: 0;
  font-style: italic;
}

.marquee-text .filled {
  -webkit-text-stroke: 0;
  color: rgba(200, 151, 42, 0.3);
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-image-wrap {
  position: relative;
  overflow: hidden;
}

.about-image-wrap img {
  width: 100%;
  display: block;
  filter: sepia(8%) contrast(1.05) brightness(0.95);
  transition: transform 1.2s var(--ease-out-expo);
}

.about-image-wrap:hover img {
  transform: scale(1.03);
}

/* Vintage photo border */
.about-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200, 151, 42, 0.15);
  pointer-events: none;
}

.about-image-number {
  position: absolute;
  bottom: var(--space-sm);
  right: var(--space-sm);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--color-parchment-dim);
  letter-spacing: 0.1em;
}

.about-philosophy {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  color: var(--color-parchment);
  font-style: italic;
  line-height: 1.5;
  border: none;
  padding: 0;
  margin: 0 0 var(--space-md);
  position: relative;
}

.about-philosophy::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.about-text p {
  margin-bottom: var(--space-sm);
  color: var(--color-parchment-dim);
  font-size: var(--fs-body);
}

.about-credit {
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  color: var(--color-gold);
  font-style: italic;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(200, 151, 42, 0.15);
}

@media (max-width: 768px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

/* ==========================================================================
   Video Section
   ========================================================================== */
.video-section {
  background: var(--color-bg-base);
}

.video-container {
  max-width: 900px;
  margin: 0 auto;
}

.video-frame {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.video-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200, 151, 42, 0.1);
  pointer-events: none;
}

.video-responsive {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 4px;
}

/* Fallback for older browsers */
@supports not (aspect-ratio: 16 / 9) {
  .video-responsive {
    padding-bottom: 56.25%;
    height: 0;
  }
}

.video-responsive iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 1;
}

.video-caption {
  text-align: right;
  margin-top: var(--space-sm);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--color-parchment-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ==========================================================================
   Shows Section
   ========================================================================== */
.shows-section {
  background: var(--color-bg-section);
}

.shows-list {
  max-width: 800px;
  margin: 0 auto;
}

.show-item {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  gap: var(--space-md);
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(245, 232, 200, 0.06);
  transition: background 0.3s ease;
}

.show-item:hover {
  background: rgba(245, 232, 200, 0.02);
}

.show-date {
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.show-venue {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--color-text);
}

.show-city {
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  margin-top: 0.2rem;
}

.show-ticket {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--color-teal);
  color: var(--color-teal);
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
}

.show-ticket::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-out-expo);
  z-index: -1;
}

.show-ticket:hover {
  color: var(--color-bg-base);
}

.show-ticket:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.show-ticket.sold-out {
  border-color: var(--color-parchment-dim);
  color: var(--color-parchment-dim);
  opacity: 0.5;
  pointer-events: none;
}

.shows-empty {
  text-align: center;
  padding: var(--space-xl);
}

.shows-empty p {
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  color: var(--color-parchment-dim);
  letter-spacing: 0.05em;
}

@media (max-width: 600px) {
  .show-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .show-ticket {
    justify-self: start;
    margin-top: 0.5rem;
  }
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
  background: var(--color-bg-section);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-xl);
}

.contact-info h3 {
  font-size: var(--fs-h2);
  color: var(--color-parchment);
  margin-bottom: var(--space-sm);
}

.contact-info > p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.contact-emails {
  list-style: none;
}

.contact-emails li {
  margin-bottom: 1.25rem;
}

.contact-emails .label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  display: block;
  margin-bottom: 0.3rem;
}

.contact-emails a {
  font-size: var(--fs-body);
  color: var(--color-text);
  position: relative;
}

.contact-emails a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.4s var(--ease-out-expo);
}

.contact-emails a:hover::after { width: 100%; }

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  position: relative;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  display: block;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(245, 232, 200, 0.15);
  padding: 0.75rem 0;
  color: var(--color-text);
  outline: none;
  transition: border-color 0.4s ease;
  cursor: none;
}

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

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  border: 1px solid rgba(245, 232, 200, 0.15);
  padding: 0.75rem;
  margin-top: 0.25rem;
}

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

.form-group select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M5 7L1 3h8z' fill='%23c8972a'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 1.5rem;
}

.form-group select option {
  background: var(--color-bg-base);
  color: var(--color-text);
}

.contact-form .btn {
  align-self: flex-start;
  margin-top: var(--space-sm);
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  border-top: 1px solid rgba(245, 232, 200, 0.06);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.footer-tagline {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--color-parchment-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.footer-links {
  display: flex;
  gap: var(--space-xl);
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
  font-weight: 400;
}

.footer-col a {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  color: var(--color-parchment-dim);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(245, 232, 200, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: rgba(245, 232, 200, 0.25);
  letter-spacing: 0.1em;
}

.footer-credit {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: rgba(245, 232, 200, 0.15);
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    gap: var(--space-md);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

/* ==========================================================================
   Mobile Navigation & Global Mobile Overrides
   ========================================================================== */
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links { display: none; }

  .nav {
    padding: 0 var(--space-md);
  }

  .hero-content {
    padding: var(--space-lg) var(--space-sm);
  }

  .hero-logo {
    max-width: 280px;
    width: 70%;
  }

  .section {
    padding: var(--space-lg) 0;
  }

  .section-title {
    margin-bottom: var(--space-md);
  }

  .press-hero-quote p {
    font-size: var(--fs-h3);
  }

  .turntable {
    max-width: 340px;
  }
}

/* ==========================================================================
   Music Player Layout (Album Selector + Platform Tabs + Embed)
   ========================================================================== */
.music-player-layout {
  max-width: 800px;
  margin: 0 auto;
}

/* ==========================================================================
   Turntable Component
   ========================================================================== */
.turntable {
  max-width: 520px;
  margin: 0 auto var(--space-lg);
}

.turntable-base {
  position: relative;
  aspect-ratio: 1 / 0.82;
  background: linear-gradient(165deg, #2a1f15 0%, #1e150d 40%, #150e08 100%);
  border-radius: 14px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 4px 12px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* Subtle wood grain */
.turntable-base::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    87deg,
    transparent 0px, transparent 3px,
    rgba(200, 151, 42, 0.012) 3.5px, transparent 4px
  );
  border-radius: inherit;
  pointer-events: none;
}

/* Inner edge highlight */
.turntable-base::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(200, 151, 42, 0.06);
  pointer-events: none;
  z-index: 1;
}

/* --- Platter --- */
.turntable-platter {
  position: absolute;
  top: 50%;
  left: 42%;
  transform: translate(-50%, -50%);
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, #222 0%, #1a1a1a 30%, #111 70%, #0a0a0a 100%);
  box-shadow:
    inset 0 0 40px rgba(0, 0, 0, 0.6),
    0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Platter edge */
.turntable-platter::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 2px solid rgba(60, 60, 60, 0.3);
}

/* Platter dot ring */
.turntable-platter::after {
  content: '';
  position: absolute;
  inset: 2%;
  border-radius: 50%;
  border: 1px dashed rgba(80, 80, 80, 0.12);
}

/* --- Record --- */
.turntable-record {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  animation: vinyl-spin 3s linear infinite;
  box-shadow:
    0 0 0 2px rgba(20, 20, 20, 0.9),
    0 0 40px rgba(0, 0, 0, 0.4);
}

/* Grooves */
.turntable-grooves {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 24%, rgba(20, 20, 20, 0.95) 24.5%),
    repeating-radial-gradient(
      circle,
      transparent 0px, transparent 2px,
      rgba(50, 50, 50, 0.1) 2.5px, transparent 3px
    ),
    radial-gradient(circle, #1c1c1c 0%, #0e0e0e 100%);
}

/* Groove light reflection */
.turntable-grooves::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    transparent 20%,
    rgba(255, 255, 255, 0.04) 28%,
    transparent 36%,
    transparent 60%,
    rgba(255, 255, 255, 0.02) 68%,
    transparent 76%
  );
}

/* Label */
.turntable-label {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36%;
  height: 36%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.5);
}

.turntable-label img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: vinyl-spin-reverse 3s linear infinite;
}

/* Spindle */
.turntable-spindle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #333;
  border: 1.5px solid #555;
  z-index: 3;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}

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

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

/* --- Tonearm --- */
.turntable-arm {
  position: absolute;
  top: 16%;
  right: 14%;
  width: 3px;
  height: 44%;
  background: linear-gradient(to bottom,
    #aaa 0%, #999 15%, #888 50%, #777 80%, #666 100%
  );
  transform-origin: top center;
  transform: rotate(35deg);
  border-radius: 1.5px;
  z-index: 5;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Counterweight */
.turntable-arm::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #bbb 0%, #888 40%, #555 100%);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Pivot base */
.turntable-arm::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #999 0%, #666 50%, #444 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  z-index: -1;
}

/* Headshell */
.turntable-arm-head {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 16px;
  background: linear-gradient(to bottom, #777, #555);
  border-radius: 1px 1px 2px 2px;
}

/* Needle/stylus */
.turntable-arm-head::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 5px;
  background: linear-gradient(to bottom, #999, #ddd);
}

/* Tonearm states */
.turntable-arm.resting {
  transform: rotate(35deg);
}

.turntable-arm.playing {
  transform: rotate(-18deg);
}

.turntable-arm.lifting {
  transform: rotate(-10deg);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- Turntable EQ Visualizer --- */
.turntable-eq {
  position: absolute;
  bottom: 8%;
  left: 8%;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 20px;
  z-index: 5;
}

.turntable-eq span {
  display: block;
  width: 3px;
  background: var(--color-teal);
  border-radius: 1px;
  opacity: 0.7;
  animation: eq-bar 1.2s ease-in-out infinite;
}

.turntable-eq span:nth-child(1) { height: 40%; animation-delay: 0s; }
.turntable-eq span:nth-child(2) { height: 70%; animation-delay: 0.15s; }
.turntable-eq span:nth-child(3) { height: 100%; animation-delay: 0.3s; }
.turntable-eq span:nth-child(4) { height: 55%; animation-delay: 0.45s; }
.turntable-eq span:nth-child(5) { height: 80%; animation-delay: 0.6s; }

@keyframes eq-bar {
  0%, 100% { transform: scaleY(0.3); }
  50% { transform: scaleY(1); }
}

/* Pause EQ when record is paused (controlled via JS class on turntable-base) */
.turntable-base.paused .turntable-eq span {
  animation-play-state: paused;
}

/* --- Turntable Controls --- */
.turntable-controls-row {
  position: absolute;
  bottom: 8%;
  right: 8%;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 20;
  pointer-events: auto;
}

.turntable-play-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(200, 151, 42, 0.4);
  background: rgba(20, 15, 10, 0.9);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.3s ease;
  pointer-events: auto;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(200, 151, 42, 0.2);
  touch-action: manipulation;
}

.turntable-play-btn:hover {
  border-color: var(--color-gold);
  background: rgba(200, 151, 42, 0.15);
  transform: scale(1.1);
}

.turntable-play-btn:active {
  transform: scale(0.95);
  background: rgba(200, 151, 42, 0.25);
}

/* Show pause icon when playing, play icon when paused */
.turntable-play-btn.playing .icon-play { display: none; }
.turntable-play-btn.playing .icon-pause { display: block; }
.turntable-play-btn:not(.playing) .icon-play { display: block; }
.turntable-play-btn:not(.playing) .icon-pause { display: none; }

/* Record paused state */
.turntable-record.paused {
  animation-play-state: paused;
}

.turntable-record.paused .turntable-label img {
  animation-play-state: paused;
}

.turntable-power-led {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-teal);
  box-shadow: 0 0 8px rgba(26, 138, 138, 0.6);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.turntable-power-led.off {
  background: #333;
  box-shadow: none;
}

/* Hover glow on turntable */
.turntable-base:hover .turntable-record {
  box-shadow:
    0 0 0 2px rgba(20, 20, 20, 0.9),
    0 0 50px rgba(200, 151, 42, 0.1);
}

/* Vinyl dust particles effect on hover */
.turntable-base:hover .turntable-grooves::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-image: radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.15) 50%, transparent 50%),
    radial-gradient(1px 1px at 40% 70%, rgba(255,255,255,0.1) 50%, transparent 50%),
    radial-gradient(1px 1px at 60% 20%, rgba(255,255,255,0.12) 50%, transparent 50%),
    radial-gradient(1px 1px at 80% 60%, rgba(255,255,255,0.08) 50%, transparent 50%),
    radial-gradient(1px 1px at 10% 80%, rgba(255,255,255,0.1) 50%, transparent 50%),
    radial-gradient(1px 1px at 70% 40%, rgba(255,255,255,0.06) 50%, transparent 50%);
  animation: vinyl-dust 8s linear infinite;
  pointer-events: none;
}

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

/* --- Turntable Responsive --- */
@media (max-width: 768px) {
  .turntable {
    max-width: 380px;
  }
}

@media (max-width: 480px) {
  .turntable {
    max-width: 300px;
  }
}

/* Album selector thumbnails */
.album-selector {
  margin-bottom: var(--space-md);
}

.album-selector-scroll {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.album-thumb {
  width: 72px;
  height: 72px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  background: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s var(--ease-out-expo);
  flex-shrink: 0;
}

.album-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.6) saturate(0.5);
  transition: filter 0.3s ease;
}

.album-thumb:hover img {
  filter: brightness(0.9) saturate(0.9);
}

.album-thumb:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 151, 42, 0.3);
}

.album-thumb.active {
  border-color: var(--color-gold);
}

.album-thumb.active img {
  filter: brightness(1) saturate(1);
}

.album-thumb-active-dot {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.album-thumb.active .album-thumb-active-dot {
  opacity: 1;
}

/* Now Playing info */
.now-playing-info {
  text-align: center;
  margin-bottom: var(--space-sm);
}

.now-playing-title {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  color: var(--color-parchment);
  font-style: italic;
  display: block;
}

.now-playing-year {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--color-parchment-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Platform tabs */
.platform-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}

.platform-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(245, 232, 200, 0.1);
  border-radius: 50px;
  background: transparent;
  color: var(--color-parchment-dim);
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
}

.platform-tab svg {
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.platform-tab:hover {
  border-color: rgba(245, 232, 200, 0.25);
  color: var(--color-parchment);
}

.platform-tab:hover svg {
  opacity: 0.9;
}

.platform-tab.active {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(200, 151, 42, 0.06);
}

.platform-tab.active svg {
  opacity: 1;
}

/* Embed container */
.embed-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.embed-spotify,
.embed-apple {
  display: none;
}

.embed-spotify.active,
.embed-apple.active {
  display: block;
}

.embed-spotify iframe,
.embed-apple iframe {
  border: none;
  background: rgba(0, 0, 0, 0.3);
}

/* Streaming links row */
.streaming-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(200, 151, 42, 0.08);
}

.streaming-link-pill {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-parchment-dim);
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(245, 232, 200, 0.1);
  border-radius: 50px;
  transition: all 0.3s var(--ease-out-expo);
}

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

/* ==========================================================================
   Video Layout
   ========================================================================== */

/* ==========================================================================
   Press Hero Quote & Links
   ========================================================================== */
.press-hero-quote {
  max-width: 700px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.press-hero-quote blockquote {
  position: relative;
}

.press-hero-quote p {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  color: var(--color-parchment);
  font-style: italic;
  line-height: 1.4;
  margin-bottom: var(--space-md);
}

.press-hero-quote cite {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-style: normal;
  display: block;
}

.press-context {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--color-parchment-dim);
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

.press-section-heading {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  margin-top: var(--space-xl);
  font-weight: 400;
}

/* Press links / publication logos */
.press-links {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(245, 232, 200, 0.06);
}

.press-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.press-logo-link {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-parchment-dim);
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(245, 232, 200, 0.1);
  border-radius: 50px;
  transition: all 0.3s var(--ease-out-expo);
}

a.press-logo-link:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* Footer logo image */
.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0.7);
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   Social Sidebar
   ========================================================================== */
.social-sidebar {
  position: fixed;
  left: var(--space-md);
  bottom: var(--space-lg);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s var(--ease-out-expo);
}

.social-sidebar.visible {
  opacity: 1;
  transform: translateY(0);
}

.social-sidebar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--color-parchment-dim);
  transition: color 0.3s ease, transform 0.3s var(--ease-out-expo);
}

.social-sidebar a:hover {
  color: var(--color-gold);
  transform: scale(1.2);
}

.social-sidebar::before {
  content: '';
  width: 1px;
  height: 40px;
  background: rgba(200, 151, 42, 0.2);
  margin: 0 auto var(--space-xs);
}

@media (max-width: 768px) {
  .social-sidebar {
    display: none;
  }
}

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

[data-speed] { will-change: transform; }

.text-split { overflow: hidden; }
.text-split .word { display: inline-block; }
.text-split .char { display: inline-block; }

/* ==========================================================================
   Discography Section
   ========================================================================== */
.disco-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-md);
}

.disco-card {
  display: block;
  position: relative;
  color: var(--color-parchment);
  transition: transform 0.5s var(--ease-out-expo);
}

.disco-card:hover {
  transform: translateY(-6px);
  color: var(--color-parchment);
}

.disco-art {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 0.75rem;
  background: var(--color-bg-card);
}

.disco-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo), filter 0.5s ease;
}

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

.disco-art::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200, 151, 42, 0.08);
  pointer-events: none;
}

/* Hover overlay with play icon */
.disco-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 8, 6, 0.6);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.disco-play {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--color-gold);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  padding-left: 3px;
  transform: scale(0.8);
  transition: transform 0.4s var(--ease-out-expo), background 0.3s ease;
}

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

.disco-play:hover {
  background: var(--color-gold);
  color: var(--color-bg-base);
}

/* Disco cards linked to player show turntable icon */
.disco-card[data-play-album] .disco-play::before {
  content: '♫';
  font-size: 0.6rem;
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  color: var(--color-gold);
  letter-spacing: 0;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.disco-card[data-play-album]:hover .disco-play::before {
  opacity: 1;
}

.disco-title {
  display: block;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: var(--color-parchment);
  margin-bottom: 0.2rem;
  transition: color 0.3s ease;
}

.disco-card:hover .disco-title {
  color: var(--color-gold);
}

.disco-year {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--color-parchment-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .disco-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }
}

/* ==========================================================================
   Press Section
   ========================================================================== */
.press-quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.press-quote {
  position: relative;
  padding: var(--space-lg) var(--space-md);
  border-left: 2px solid var(--color-gold);
  background: linear-gradient(135deg, rgba(200, 151, 42, 0.03), transparent);
  transition: border-color 0.4s ease, transform 0.4s var(--ease-out-expo);
}

.press-quote:hover {
  border-color: var(--color-teal);
  transform: translateX(4px);
}

.press-quote::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 12px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(200, 151, 42, 0.08);
  line-height: 1;
  pointer-events: none;
}

.press-quote p {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--color-parchment);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.press-quote cite {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-style: normal;
}

/* Press highlights timeline */
.press-highlights {
  margin-top: var(--space-lg);
}

/* Timeline connecting line */
.press-timeline {
  position: relative;
}

.press-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 39px;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(200, 151, 42, 0.2) 5%,
    rgba(200, 151, 42, 0.2) 95%,
    transparent 100%
  );
  pointer-events: none;
}

.press-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-md);
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(245, 232, 200, 0.06);
  transition: background 0.3s ease, padding-left 0.3s ease;
  position: relative;
}

.press-item:first-child {
  border-top: 1px solid rgba(245, 232, 200, 0.06);
}

.press-item:hover {
  background: rgba(200, 151, 42, 0.02);
  padding-left: 0.5rem;
}

/* Timeline dot */
.press-item::before {
  content: '';
  position: absolute;
  left: 36px;
  top: 1.8rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-bg-base);
  border: 1.5px solid var(--color-gold);
  z-index: 1;
  transition: background 0.3s ease, transform 0.3s ease;
}

.press-item:hover::before {
  background: var(--color-gold);
  transform: scale(1.3);
}

.press-year {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-top: 0.3rem;
  text-align: right;
  padding-right: var(--space-sm);
}

.press-detail h4 {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--color-parchment);
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.press-detail p {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: var(--color-parchment-dim);
  line-height: 1.6;
}

@media (max-width: 600px) {
  .press-quotes {
    grid-template-columns: 1fr;
  }

  .press-item {
    grid-template-columns: 60px 1fr;
    gap: var(--space-sm);
  }

  .press-timeline::before {
    left: 29px;
  }

  .press-item::before {
    left: 26px;
  }

  .press-year {
    padding-right: 0.5rem;
  }
}

/* Mobile compact embeds */
@media (max-width: 480px) {
  .embed-container {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
    border-radius: 0;
  }

  .embed-spotify iframe { height: 352px; }
  .embed-apple iframe { height: 400px; }

  .streaming-links-row {
    gap: 0.5rem;
  }

  .streaming-link-pill {
    font-size: 0.55rem;
    padding: 0.4rem 0.8rem;
  }

  .platform-tab {
    font-size: 0.6rem;
    padding: 0.5rem 1rem;
  }
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  perspective: 1000px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.95) saturate(0.9);
  transition: transform 1.2s var(--ease-out-expo), filter 0.8s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: contrast(1.05) brightness(1) saturate(1);
}

/* Gallery caption */
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1rem 1rem;
  background: linear-gradient(to top, rgba(10, 8, 6, 0.85) 0%, transparent 100%);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-parchment);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s var(--ease-out-expo);
  z-index: 2;
  pointer-events: none;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* 3D tilt effect */
.gallery-item[data-tilt] {
  transform-style: preserve-3d;
  transition: transform 0.6s var(--ease-out-expo);
}

.gallery-item[data-tilt] img {
  transform: translateZ(0);
}

/* Vintage overlay on hover */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(10, 8, 6, 0.5) 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Masonry-style varied heights for visual interest */
.gallery-item:nth-child(1) { grid-row: span 2; aspect-ratio: auto; }
.gallery-item:nth-child(4) { grid-row: span 2; aspect-ratio: auto; }

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) {
    grid-row: span 1;
    aspect-ratio: 4/5;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .gallery-item {
    aspect-ratio: 16/10;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) {
    aspect-ratio: 16/10;
  }
}
