/* ========================================
   THE BARE MINIMUM - Main Stylesheet
   Dark punk aesthetic, mobile-first
   ======================================== */

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

:root {
  --bg: #000000;
  --bg-light: #000000;
  --bg-card: #000000;
  --text: #f0f0f0;
  --text-dim: #888;
  --accent: #e63946;
  --accent-hover: #ff4d5a;
  --font-heading: 'Permanent Marker', 'Rock Salt', cursive;
  --font-body: 'Special Elite', cursive;
  --max-width: 1200px;
  --nav-height: 60px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

@media (min-width: 768px) {
  html {
    font-size: 17px;
  }
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-hover); }

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background .3s, box-shadow .3s;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.nav-logo img {
  height: 32px;
  width: auto;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

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

.mobile-menu a.nav-active { color: var(--accent); }

.nav-links .external::after {
  content: ' ↗';
  font-size: 0.65em;
  opacity: 0.4;
  color: inherit;
  vertical-align: super;
  margin-left: 1px;
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform .3s, opacity .3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

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

.mobile-menu a {
  color: var(--text);
  font-family: var(--font-body);
  font-size: 2rem;
  letter-spacing: 0.02em;
}

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

/* Desktop nav */
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 40px;
  overflow: hidden;
}

/* Hero video background */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.65);
  z-index: 1;
}

.hero-video-wrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Fallback static bg if video fails or loads slowly */
.hero-bg-fallback {
  position: absolute;
  inset: 0;
  background: url('assets/images/backgrounds/DSC_8322_bw.jpg') center/cover no-repeat;
  opacity: 0.15;
  z-index: -1;
}


/* Hero EQ Visualizer Mute Button */
.hero-controls {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 2;
}

.hero-eq-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text);
  height: 40px;
  padding: 0 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: background .2s, border-color .2s, box-shadow .3s;
  backdrop-filter: blur(4px);
  animation: eqGlow 2.5s ease-in-out infinite;
}

.hero-eq-btn:hover {
  background: rgba(0,0,0,0.65);
  border-color: rgba(255,255,255,0.3);
}

.hero-eq-btn.playing {
  animation: none;
  border-color: rgba(230,57,70,0.3);
}

@keyframes eqGlow {
  0%, 100% { box-shadow: 0 0 6px rgba(230,57,70,0); }
  50% { box-shadow: 0 0 14px rgba(230,57,70,0.35), 0 0 4px rgba(255,255,255,0.1); }
}

/* EQ Bars */
.eq-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 20px;
}

.eq-bar {
  display: block;
  width: 3px;
  border-radius: 1px;
  background: rgba(255,255,255,0.35);
  transition: background .3s;
}

/* Same bounce animation in both states - only color differs */
.eq-bar:nth-child(1) { animation: eqBounce1 0.45s ease-in-out infinite; }
.eq-bar:nth-child(2) { animation: eqBounce2 0.55s ease-in-out infinite; }
.eq-bar:nth-child(3) { animation: eqBounce3 0.4s ease-in-out infinite; }
.eq-bar:nth-child(4) { animation: eqBounce4 0.5s ease-in-out infinite; }
.eq-bar:nth-child(5) { animation: eqBounce5 0.6s ease-in-out infinite; }

@keyframes eqBounce1 { 0%,100% { height: 4px; }  50% { height: 18px; } }
@keyframes eqBounce2 { 0%,100% { height: 16px; } 50% { height: 6px; } }
@keyframes eqBounce3 { 0%,100% { height: 8px; }  50% { height: 20px; } }
@keyframes eqBounce4 { 0%,100% { height: 14px; } 50% { height: 4px; } }
@keyframes eqBounce5 { 0%,100% { height: 6px; }  50% { height: 16px; } }

/* Unmuted: bars turn red */
.hero-eq-btn.playing .eq-bar {
  background: var(--accent);
}

/* Speaker icon inside EQ button */
.eq-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-logo {
  width: min(90vw, 750px);
  margin-bottom: 16px;
  position: relative;
}

/* --- Hero Video Filters (cycled via JS) --- */

/* Grain overlay - shared by multiple filters */
.hero-video-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  mix-blend-mode: overlay;
}

/* --- Filters use pure CSS (no SVG URI refs - broken in Chrome) --- */

/* Halftone look: high contrast + desaturated */
.vfx-halftone video {
  filter: contrast(2) saturate(0.3) brightness(1.1);
}

/* Heavy Grain */
.vfx-grain::before {
  opacity: 0.5;
  animation: grainShift 0.3s steps(4) infinite;
}

/* Sepia + Grain (warm vintage) */
.vfx-halftone-grain video {
  filter: sepia(0.6) contrast(1.6) brightness(0.95);
}
.vfx-halftone-grain::before {
  opacity: 0.4;
  animation: grainShift 0.3s steps(4) infinite;
}

/* B&W + Grain */
.vfx-bw-grain video {
  filter: grayscale(100%) contrast(1.8) brightness(0.85);
}
.vfx-bw-grain::before {
  opacity: 0.5;
  animation: grainShift 0.3s steps(4) infinite;
}

/* Posterize: extreme contrast + desaturated */
.vfx-posterize video {
  filter: contrast(3) saturate(0.15) brightness(1.2);
}
.vfx-posterize::before {
  opacity: 0.35;
  animation: grainShift 0.3s steps(4) infinite;
}

/* Scanlines - layered on top of the existing dark overlay */
.vfx-scanlines::after {
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0px,
      transparent 2px,
      rgba(0,0,0,0.25) 2px,
      rgba(0,0,0,0.25) 3px
    ),
    rgba(10, 10, 10, 0.65);
}

/* Blur toggle (independent of filter cycle) */
.vfx-blur video {
  filter: blur(3px) brightness(1.05);
}
/* Blur stacks with active filter */
.vfx-blur.vfx-halftone video       { filter: blur(3px) contrast(2) saturate(0.3) brightness(1.1); }
.vfx-blur.vfx-grain video          { filter: blur(3px) brightness(1.05); }
.vfx-blur.vfx-halftone-grain video { filter: blur(3px) sepia(0.6) contrast(1.6) brightness(0.95); }
.vfx-blur.vfx-bw-grain video       { filter: blur(3px) grayscale(100%) contrast(1.8) brightness(0.85); }
.vfx-blur.vfx-posterize video      { filter: blur(3px) contrast(3) saturate(0.15) brightness(1.2); }

/* When any filter is active, lighten the dark overlay so effects show through */
.vfx-halftone::after,
.vfx-grain::after,
.vfx-halftone-grain::after,
.vfx-bw-grain::after,
.vfx-posterize::after,
.vfx-blur::after {
  background: rgba(10, 10, 10, 0.5);
}

@keyframes grainShift {
  0%   { background-position: 0 0; }
  25%  { background-position: -50px -30px; }
  50%  { background-position: 30px -60px; }
  75%  { background-position: -70px 40px; }
  100% { background-position: 50px 20px; }
}

/* Glitch tester label */
.glitch-tester-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  opacity: 0;
  transition: opacity .3s;
  margin-top: 4px;
}
.glitch-tester-label.visible { opacity: 1; }

/* Glitch cycle button */
.glitch-cycle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: var(--text-dim);
  background: none;
  cursor: pointer;
  font-size: 1.1rem;
  transition: border-color .2s, color .2s;
  flex-shrink: 0;
}
.glitch-cycle-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.glitch-cycle-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(230, 57, 70, 0.15);
}

.hero-tagline {
  font-size: clamp(1.6rem, 4.5vw, 2.25rem);
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 32px;
}

/* Streaming icons row */
.streaming-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}

.streaming-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: var(--text);
  transition: border-color .2s, color .2s, background .2s;
}

.streaming-links a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(230, 57, 70, 0.1);
}

.streaming-links svg { width: 20px; height: 20px; fill: currentColor; }

.hero-more {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.hero-more a {
  color: var(--text);
}

.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: bounce 2s infinite;
  color: var(--text-dim);
  font-size: 1.5rem;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Section Shared --- */
.section {
  padding: 80px 0;
}

.section-title {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 40px;
  text-align: center;
  color: var(--text-dim);
}

.section-title span {
  display: inline-block;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 6px;
}

/* --- About Section --- */
#about {
  overflow: hidden;
}

#about .container {
  max-width: var(--max-width);
  padding: 0 20px;
}

.about-grid {
  display: grid;
  gap: 32px;
  align-items: center;
  padding: 0 20px;
}

@media (max-width: 767px) {
  .photo-stack-wrap {
    order: -1;
  }
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0;
  }

  .about-text {
    padding: 40px 0;
    max-width: 500px;
  }

  .photo-stack-wrap {
    margin-right: -80px;
  }
}

.about-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 24px;
  color: #ccc;
}

.about-members {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.about-members li {
  font-size: 0.95rem;
  color: var(--accent);
}

.about-members li strong {
  color: var(--text);
  display: block;
  font-size: 1.1rem;
}

/* --- Photo Stack Carousel --- */
.photo-stack-wrap {
  position: relative;
  overflow: visible;
}

.photo-stack {
  position: relative;
  width: 130%;
  aspect-ratio: 4/3;
  margin-left: auto;
}

.photo-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: transform .08s steps(2), opacity .05s steps(1);
  will-change: transform, opacity;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
  border-radius: 2px;
  filter: grayscale(15%);
}

/* White photo frame */
.photo-card-inner {
  padding: 8px 8px 28px;
  background: linear-gradient(165deg, #f5f3f0 0%, #e8e4df 100%);
  border-radius: 3px;
  box-shadow:
    0 2px 6px rgba(0,0,0,0.25),
    0 10px 30px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.9);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.photo-card-inner img {
  flex: 1;
  min-height: 0;
}

/* Active photo */
.photo-card.active {
  opacity: 1;
  transform: rotate(-1.5deg);
  z-index: 5;
  pointer-events: auto;
}

/* Stacked behind */
.photo-card.pstack-1 {
  opacity: 0.9;
  transform: rotate(3deg) translate(4%, 2%);
  z-index: 4;
}

.photo-card.pstack-2 {
  opacity: 0.7;
  transform: rotate(-4.5deg) translate(-3%, 3%);
  z-index: 3;
}

.photo-card.pstack-2 .photo-card-inner {
  filter: brightness(0.85);
}

.photo-card.pstack-3 {
  opacity: 0.5;
  transform: rotate(6deg) translate(5%, -1%);
  z-index: 2;
}

.photo-card.pstack-3 .photo-card-inner {
  filter: brightness(0.7);
}

/* Previous (going away) */
.photo-card.photo-prev {
  opacity: 0.3;
  transform: rotate(-6deg) translate(-8%, 4%);
  z-index: 1;
}

.photo-stack-nav {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 20px;
}

.photo-stack-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(230, 57, 70, 0.5);
  background: rgba(230, 57, 70, 0.25);
  color: var(--accent);
  font-size: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s, border-color .15s, box-shadow .15s;
  padding: 0;
}

.photo-stack-btn:hover {
  background: rgba(230, 57, 70, 0.15);
  color: var(--accent-hover);
  border-color: var(--accent);
  box-shadow: 0 0 16px rgba(230, 57, 70, 0.3);
}

/* --- Pull Quote Section --- */
.pull-quote-section {
  position: relative;
  padding: 120px 0 140px;
  text-align: center;
  overflow: hidden;
}

.pull-quote-bg {
  position: absolute;
  inset: -80px 0;
  background: url('assets/images/photos/bareminimum-00432-carloscoronado.jpg') center/cover no-repeat;
  opacity: 0.35;
  mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
}

.pull-quote-section .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.pull-quote-mark {
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 0;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
  opacity: 0.5;
}

.pull-quote-text {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 24px;
}

.pull-quote-cite {
  font-size: 1rem;
  color: var(--text-dim);
  font-style: normal;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  vertical-align: middle;
}

.pull-quote-cite img {
  vertical-align: middle;
}

.section-title-sm {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
}

.pull-quote-cite a {
  color: var(--accent);
}

.pull-quote-cite img,
.quote-cite-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.15);
}

/* --- Record Bin (Discography) --- */
.record-bin {
  display: grid;
  gap: 32px;
  align-items: start;
}

@media (min-width: 768px) {
  .record-bin {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }
}

.record-bin-viewer {
  position: relative;
}

.record-bin-stage {
  position: relative;
  aspect-ratio: 1;
  width: 130%;
  overflow: visible;
  margin-left: -280px;
}

.record-bin-prev,
.record-bin-next {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(230, 57, 70, 0.5);
  background: rgba(230, 57, 70, 0.25);
  color: var(--accent);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, box-shadow .15s;
  padding: 0;
}

.record-bin-prev:hover,
.record-bin-next:hover {
  background: rgba(230, 57, 70, 0.4);
  box-shadow: 0 0 16px rgba(230, 57, 70, 0.3);
}

.record-bin-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.record-sleeve {
  position: absolute;
  inset: 0;
  transition: transform .08s steps(2), opacity .05s steps(1);
  will-change: transform, opacity;
  opacity: 0;
  pointer-events: none;
}

.record-sleeve img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  display: block;
  border-radius: 6px;
  border: 1px solid transparent;
  border-top-color: rgba(255,255,255,0.15);
  border-left-color: rgba(255,255,255,0.08);
  border-right-color: rgba(0,0,0,0.3);
  border-bottom-color: rgba(0,0,0,0.4);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.3),
    0 8px 24px rgba(0,0,0,0.25);
}

/* Active sleeve - front */
.record-sleeve.active {
  opacity: 1;
  transform: rotate(-1.5deg);
  z-index: 5;
  pointer-events: auto;
}

.record-sleeve.active img {
  box-shadow:
    0 8px 40px rgba(0,0,0,0.5),
    0 2px 8px rgba(0,0,0,0.3);
}

/* Stacked behind - peek out */
.record-sleeve.stack-1 {
  opacity: 0.9;
  transform: rotate(3deg) translate(4%, 2%);
  z-index: 4;
  pointer-events: none;
}

.record-sleeve.stack-1 img {
  filter: brightness(0.75) saturate(0.7);
}

.record-sleeve.stack-2 {
  opacity: 0.7;
  transform: rotate(-4.5deg) translate(-3%, 3%);
  z-index: 3;
  pointer-events: none;
}

.record-sleeve.stack-2 img {
  filter: brightness(0.6) saturate(0.5);
}

.record-sleeve.stack-3 {
  opacity: 0.5;
  transform: rotate(6deg) translate(5%, -1%);
  z-index: 2;
  pointer-events: none;
}

.record-sleeve.stack-3 img {
  filter: brightness(0.45) saturate(0.3);
}

/* Previous (going away) */
.record-sleeve.prev {
  opacity: 0.3;
  transform: rotate(-6deg) translate(-8%, 4%);
  z-index: 1;
  pointer-events: none;
}

.record-sleeve.stack-4 {
  opacity: 0;
  pointer-events: none;
}

.record-sleeve.stack-5 {
  opacity: 0;
  pointer-events: none;
}

/* Info panel - right column */
.record-bin-info {
  text-align: left;
  padding: 40px 0;
}

.record-bin-info .rb-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.record-bin-info .rb-meta {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.record-bin-info .rb-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 20px;
}

.record-bin-info .rb-tracklist {
  list-style: none;
  counter-reset: track;
  margin-bottom: 20px;
}

.record-bin-info .rb-tracklist li {
  counter-increment: track;
  padding: 3px 0;
  color: #ccc;
  font-size: 1rem;
}

.record-bin-info .rb-tracklist li::before {
  content: counter(track) ". ";
  color: var(--text-dim);
}

.record-bin-info .rb-tracklist li span {
  color: var(--text-dim);
  font-size: 0.88rem;
}

.record-bin-info .rb-streaming {
  display: contents;
}

.rb-stream-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(230, 57, 70, 0.5);
  background: rgba(230, 57, 70, 0.25);
  color: var(--accent);
  transition: background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.rb-stream-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.rb-stream-icon:hover {
  background: rgba(230, 57, 70, 0.15);
  color: var(--accent-hover);
  border-color: var(--accent);
  box-shadow: 0 0 16px rgba(230, 57, 70, 0.3);
}

.rb-credits {
  font-size: 0.82rem;
  line-height: 1.5;
  color: #777;
  margin-bottom: 20px;
}

.rb-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}

/* Review excerpts (Doomed City) */
.record-reviews {
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
}

.record-reviews .rb-review {
  margin-bottom: 12px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #aaa;
}

.record-reviews .rb-review em {
  font-style: italic;
  color: #bbb;
}

.record-reviews .rb-review a {
  font-size: 0.8rem;
  color: var(--accent);
  margin-left: 6px;
}

#music {
  overflow: hidden;
}

.record-bin-nav {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

/* Mobile record bin */
@media (max-width: 767px) {
  .record-bin-stage {
    width: 100%;
    margin-left: 0;
  }
}

/* --- BM TV (CRT Frame Overlay) --- */
.crt-tv {
  max-width: 1067px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.7));
  position: relative;
}

.crt-tv::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160%;
  height: 160%;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.8) 0%, transparent 55%);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

.crt-frame-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1732 / 1456;
}

/* Frame image on top - clicks pass through to video */
.crt-frame-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
  user-select: none;
}

/* Video area positioned inside the screen opening */
.crt-video-area {
  position: absolute;
  top: 22%;
  left: 10%;
  width: 80%;
  height: 56.5%;
  overflow: hidden;
  background: #000;
  z-index: 1;
}

.crt-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.crt-iframe-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.crt-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Scanlines over video, under frame */
.crt-scanlines {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0px,
      transparent 2px,
      rgba(0,0,0,0.1) 2px,
      rgba(0,0,0,0.1) 3px
    );
}

/* CRT vignette effect */
.crt-video-area::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,0.35) 100%);
}

/* Static/snow effect */
.crt-static {
  position: absolute;
  inset: 0;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  transition: opacity 0.05s;
}

.crt-static.active {
  opacity: 0.7;
  animation: crtStaticFlicker 0.08s steps(3) infinite;
}

@keyframes crtStaticFlicker {
  0%   { background-position: 0 0; }
  33%  { background-position: -80px -40px; }
  66%  { background-position: 40px -90px; }
  100% { background-position: -60px 50px; }
}

/* --- Panel overlays (positioned over recessed areas in the frame) --- */

/* Channel display - left recessed rectangle */
.crt-panel-ch {
  position: absolute;
  top: 88.5%;
  left: 16%;
  width: 12%;
  height: 4.5%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(0.4rem, 1.2vw, 0.7rem);
  color: #ff3333;
  text-shadow: 0 0 8px rgba(255,50,50,0.6);
  letter-spacing: 0.1em;
  pointer-events: none;
}

/* Title ticker - center recessed rectangle */
.crt-panel-title {
  position: absolute;
  top: 88.5%;
  left: 37%;
  width: 28%;
  height: 4.5%;
  z-index: 20;
  display: flex;
  align-items: center;
  overflow: hidden;
  pointer-events: auto;
  cursor: pointer;
}

.crt-panel-title span {
  display: inline-block;
  white-space: nowrap;
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(0.35rem, 1vw, 0.55rem);
  color: #4ade80;
  text-shadow: 0 0 6px rgba(74,222,128,0.5);
  letter-spacing: 0.05em;
  animation: crtMarquee 8s linear infinite;
}

@keyframes crtMarquee {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Buttons - positioned over right circular indentations */
.crt-panel-btns {
  position: absolute;
  top: 87.5%;
  left: 67%;
  width: 22%;
  height: 6%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), inset 0 -1px 0 rgba(0,0,0,0.5), inset 1px 0 0 rgba(255,255,255,0.06), inset -1px 0 0 rgba(0,0,0,0.3);
}

.crt-panel-btn {
  width: clamp(32px, 4vw, 44px);
  height: clamp(32px, 4vw, 44px);
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: rgba(230,57,70,0.35);
  border-left-color: rgba(230,57,70,0.2);
  border-right-color: rgba(100,20,25,0.4);
  border-bottom-color: rgba(80,15,20,0.5);
  background:
    radial-gradient(ellipse at 65% 25%, rgba(255,100,110,0.1) 0%, transparent 55%),
    linear-gradient(180deg, rgba(80,80,80,0.95) 0%, rgba(40,40,40,0.95) 100%);
  color: var(--accent);
  font-size: clamp(0.8rem, 1.5vw, 1.1rem);
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s, border-color .15s, box-shadow .15s;
  padding: 0;
  line-height: 1;
  box-shadow: 0 1px 3px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
}

.crt-panel-btn:hover {
  background:
    radial-gradient(ellipse at 65% 25%, rgba(255,100,110,0.15) 0%, transparent 55%),
    linear-gradient(180deg, rgba(80,80,80,0.95) 0%, rgba(40,40,40,0.95) 100%);
  color: var(--accent-hover);
  border-top-color: rgba(230,57,70,0.5);
  border-left-color: rgba(230,57,70,0.35);
  box-shadow: 0 1px 3px rgba(0,0,0,0.5), 0 0 8px rgba(230,57,70,0.2);
}

.crt-panel-btn:active {
  background:
    radial-gradient(ellipse at 65% 25%, rgba(255,255,255,0.05) 0%, transparent 55%),
    linear-gradient(180deg, rgba(30,30,30,0.95) 0%, rgba(50,50,50,0.95) 100%);
  box-shadow: 0 0 2px rgba(0,0,0,0.5), inset 0 1px 2px rgba(0,0,0,0.3);
}

/* Play/stop - red accent borders */
.crt-panel-btn-play {
  color: var(--accent);
  border-top-color: rgba(230,57,70,0.35);
  border-left-color: rgba(230,57,70,0.2);
  border-right-color: rgba(100,20,25,0.4);
  border-bottom-color: rgba(80,15,20,0.5);
}

/* ▶ renders slightly left-heavy, nudge it */
#crtPlayBtn {
  padding-left: 2px;
}

.crt-panel-btn-play:hover {
  background:
    radial-gradient(ellipse at 65% 25%, rgba(255,100,110,0.15) 0%, transparent 55%),
    linear-gradient(180deg, rgba(80,80,80,0.95) 0%, rgba(40,40,40,0.95) 100%);
  color: var(--accent-hover);
  border-top-color: rgba(230,57,70,0.5);
  border-left-color: rgba(230,57,70,0.35);
  box-shadow: 0 1px 3px rgba(0,0,0,0.5), 0 0 8px rgba(230,57,70,0.2);
}

/* Mobile responsive */
@media (max-width: 520px) {
  .crt-tv {
    max-width: 100%;
  }

  .crt-panel-ch {
    font-size: 0.35rem;
  }

  .crt-panel-title span {
    font-size: 0.3rem;
  }

  .crt-panel-btn {
    width: 24px;
    height: 24px;
    font-size: 0.6rem;
  }

  .crt-panel-btn-play {
    padding-left: 1px;
  }
}

/* --- CRT TV Guide Overlay --- */
.crt-guide {
  position: absolute;
  inset: 0;
  z-index: 6;
  background: rgba(10, 15, 60, 0.95);
  display: flex;
  flex-direction: column;
  font-family: 'Press Start 2P', monospace;
  overflow: hidden;
}

.crt-guide-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3% 4%;
  background: linear-gradient(180deg, #1a1060 0%, #0d0840 100%);
  border-bottom: 2px solid #4ade80;
  flex-shrink: 0;
}

.crt-guide-title {
  font-size: clamp(0.4rem, 1.2vw, 0.7rem);
  color: #facc15;
  text-shadow: 0 0 8px rgba(250, 204, 21, 0.5);
  letter-spacing: 0.1em;
}

.crt-guide-time {
  font-size: clamp(0.35rem, 1vw, 0.55rem);
  color: #4ade80;
  text-shadow: 0 0 6px rgba(74, 222, 128, 0.5);
}

.crt-guide-list {
  flex: 1;
  overflow-y: auto;
  padding: 2% 0;
}

.crt-guide-row {
  display: flex;
  align-items: center;
  gap: 3%;
  padding: 2.5% 4%;
  cursor: pointer;
  transition: background 0.1s;
  border-bottom: 1px solid rgba(74, 222, 128, 0.1);
}

.crt-guide-row:hover {
  background: rgba(74, 222, 128, 0.15);
}

.crt-guide-row.active {
  background: rgba(74, 222, 128, 0.2);
}

.crt-guide-row.active .crt-guide-name {
  color: #4ade80;
}

.crt-guide-ch {
  font-size: clamp(0.35rem, 0.9vw, 0.5rem);
  color: #facc15;
  text-shadow: 0 0 4px rgba(250, 204, 21, 0.4);
  min-width: 2.5em;
  flex-shrink: 0;
}

.crt-guide-name {
  font-size: clamp(0.3rem, 0.85vw, 0.48rem);
  color: #e0e0e0;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.crt-guide-year {
  font-size: clamp(0.25rem, 0.7vw, 0.4rem);
  color: #67e8f9;
  text-shadow: 0 0 4px rgba(103, 232, 249, 0.4);
  flex-shrink: 0;
}

/* Scrollbar styling for guide */
.crt-guide-list::-webkit-scrollbar {
  width: 4px;
}

.crt-guide-list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
}

.crt-guide-list::-webkit-scrollbar-thumb {
  background: rgba(74, 222, 128, 0.4);
  border-radius: 2px;
}

/* --- BMTV Dedicated Page --- */
.bmtv-page {
  overflow: hidden;
}

.bmtv-viewport {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--nav-height));
  padding: calc(var(--nav-height) + 20px) 20px 20px;
}

.bmtv-viewport .crt-tv {
  max-width: 1200px;
  width: 100%;
}

@media (max-width: 520px) {
  .bmtv-viewport {
    padding: calc(var(--nav-height) + 10px) 0 10px;
  }

  .bmtv-viewport .crt-tv {
    max-width: 100%;
  }
}

/* --- Contact / Footer --- */
.contact {
  background: var(--bg-light);
  padding: 80px 0 40px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

.contact-left {
  text-align: center;
}

.contact-left .social-links {
  justify-content: center;
}

.contact-right {
  text-align: center;
}

@media (min-width: 768px) {
  .contact-right {
    text-align: left;
  }
}

.mailing-list-desc {
  font-size: 1rem;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.contact h3 {
  font-family: var(--font-body);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.contact-email {
  font-size: 1.1rem;
  margin-bottom: 24px;
  display: block;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: var(--text);
  transition: border-color .2s, color .2s;
}

.social-links a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.social-links svg { width: 18px; height: 18px; fill: currentColor; }

.mailing-list-form {
  display: flex;
  gap: 0;
  max-width: 400px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .mailing-list-form {
    margin: 0;
  }
}

.mailing-list-form input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.mailing-list-form input[type="email"]::placeholder { color: var(--text-dim); }

.mailing-list-form button {
  padding: 12px 24px;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  font-family: var(--font-body);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background .2s;
}

.mailing-list-form button:hover { background: var(--accent-hover); }

.footer {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* --- Press Page --- */
.press-section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.press-section:last-child { border-bottom: none; }

.press-section h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  color: var(--accent);
}

.press-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #ccc;
  max-width: 720px;
}

.press-release-feature {
  display: grid;
  gap: 32px;
  align-items: center;
}

@media (min-width: 768px) {
  .press-release-feature { grid-template-columns: 1fr 1fr; }
}

.press-release-feature img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.press-release-feature h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.press-members {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 500px;
}

.press-members li strong {
  display: block;
  color: var(--text);
}

.press-members li {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px 16px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-align: center;
  transition: background .2s;
}

.btn:hover { background: var(--accent-hover); color: #fff; }

.press-connect-list {
  list-style: none;
  columns: 2;
  gap: 8px;
}

.press-connect-list li { margin-bottom: 8px; }

/* Photo gallery grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 8px;
}

.photo-grid a {
  display: block;
  overflow: hidden;
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform .3s, filter .3s;
  filter: grayscale(20%);
}

.photo-grid img:hover {
  transform: scale(1.03);
  filter: grayscale(0%);
}

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

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

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 2rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* (old video lightbox removed - replaced by BM TV) */

/* (old discography artwork styles removed - replaced by record bin) */

/* --- Lyrics Page --- */
.lyrics-hero {
  position: relative;
  min-height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.lyrics-hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/images/backgrounds/lyrictop.jpg') center/cover no-repeat;
  opacity: 0.15;
}

.lyrics-hero h1 {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 5rem);
  letter-spacing: 0.02em;
}

.lyrics-content {
  max-width: 660px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.lyrics-album {
  margin-bottom: 32px;
  border: 1px solid rgba(255,255,255,0.08);
}

.lyrics-album-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--bg-card);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  border: none;
  color: var(--text);
  width: 100%;
  text-align: left;
}

.lyrics-album-header:hover { background: #222; }

.lyrics-album-header .arrow {
  transition: transform .3s;
  color: var(--accent);
}

.lyrics-album.open .lyrics-album-header .arrow { transform: rotate(180deg); }

.lyrics-album-year {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-left: 8px;
  font-family: var(--font-body);
}

.lyrics-tracks {
  display: none;
}

.lyrics-album.open .lyrics-tracks { display: block; }

.lyrics-track {
  border-top: 1px solid rgba(255,255,255,0.05);
}

.lyrics-track-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text-dim);
  width: 100%;
  text-align: left;
  font-size: 0.95rem;
  font-family: var(--font-body);
}

.lyrics-track-header:hover { color: var(--text); background: rgba(255,255,255,0.02); }

.lyrics-track.open .lyrics-track-header { color: var(--accent); }

.lyrics-track-body {
  display: none;
  padding: 0 20px 20px;
}

.lyrics-track.open .lyrics-track-body { display: block; }

.lyrics-track-body pre {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: #bbb;
  white-space: pre-wrap;
}

/* --- Homepage Press Clippings Stack --- */
.clippings-stack {
  max-width: 700px;
  margin: 0 auto 20px;
  position: relative;
}

.clippings-stack .clipping {
  position: relative;
}

.clippings-stack .clipping + .clipping {
  margin-top: 16px;
}

/* Base clipping - dark torn card */
.clipping {
  display: block;
  position: relative;
  background: #1a1a1a;
  color: var(--text);
  padding: 36px 32px 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
  clip-path: polygon(
    0% 2%, 3% 0%, 7% 1.5%, 12% 0%, 18% 0.8%, 25% 0%, 30% 1.2%, 38% 0%, 45% 0.5%, 52% 0%, 58% 1%, 65% 0%, 72% 0.8%, 80% 0%, 87% 1.5%, 93% 0%, 97% 0.5%, 100% 1.5%,
    100% 98%, 97% 100%, 92% 98.5%, 86% 100%, 80% 99%, 73% 100%, 67% 98.5%, 60% 100%, 53% 99.2%, 47% 100%, 40% 98.8%, 33% 100%, 27% 99%, 20% 100%, 13% 98.5%, 7% 100%, 2% 99%, 0% 98%
  );
  transition: box-shadow .12s;
}

a.clipping:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.6);
  color: var(--text);
}

/* Alternate torn edges */
.clipping:nth-child(2n) {
  clip-path: polygon(
    0% 1%, 4% 0%, 9% 1.8%, 15% 0%, 22% 0.6%, 28% 0%, 35% 1.5%, 42% 0%, 48% 0.8%, 55% 0%, 62% 1.2%, 70% 0%, 78% 0.5%, 85% 0%, 91% 1.8%, 96% 0%, 100% 1%,
    100% 99%, 96% 97.5%, 90% 100%, 83% 98%, 76% 100%, 70% 99.5%, 63% 97.8%, 56% 100%, 48% 98.5%, 42% 100%, 35% 99%, 28% 97.5%, 20% 100%, 14% 98.8%, 8% 100%, 3% 98%, 0% 100%
  );
}

/* Quote mark */
.clipping-qm {
  font-family: Georgia, serif;
  font-size: 3.5rem;
  line-height: 0;
  color: var(--accent);
  display: block;
  margin-bottom: 14px;
  opacity: 0.6;
}

.clipping blockquote {
  font-family: 'Special Elite', cursive;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 10px;
}

.clipping cite {
  font-family: 'Special Elite', cursive;
  font-size: 0.8rem;
  color: var(--accent);
  font-style: normal;
  display: block;
}

.press-kit-link {
  text-align: center;
  margin-top: 48px;
}

.press-kit-link a {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--accent);
  transition: color .2s, letter-spacing .2s;
}

.press-kit-link a:hover {
  color: var(--accent-hover);
  letter-spacing: 0.04em;
}

/* --- Press Page Reviews --- */
.press-quote {
  position: relative;
  padding: 32px 28px 28px;
  margin-bottom: 24px;
  background: var(--bg-card);
  border-left: 3px solid var(--accent);
}

.press-quote-full {
  max-width: 100%;
}

.press-quotes-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .press-quotes-row { grid-template-columns: 1fr 1fr; }
}

.press-quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0;
  color: var(--accent);
  position: absolute;
  top: 36px;
  left: 16px;
  opacity: 0.25;
}

.press-quote blockquote {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 16px;
}

.press-quote cite {
  font-size: 0.9rem;
  color: var(--text-dim);
  font-style: normal;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.press-quote cite img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.15);
}

.press-quote cite a { color: var(--accent); }

.press-quote-interview {
  border-left-color: var(--text-dim);
}

.press-quote-interview .press-quote-mark {
  color: var(--text-dim);
}

/* Press release subheadings (grouped by album) */
.press-release-heading {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  margin: 40px 0 20px;
  color: var(--text);
}

.press-release-heading:first-of-type {
  margin-top: 0;
}

.press-release-heading span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dim);
  font-weight: normal;
}

/* Interview links list */
.press-interview-links {
  list-style: none;
  margin: 0;
}

.press-interview-links li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.press-interview-links li:last-child {
  border-bottom: none;
}

.press-interview-links a {
  font-size: 1.05rem;
  color: #ccc;
  display: block;
  transition: color 0.2s;
}

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

.press-interview-links strong {
  color: var(--accent);
}

.press-interview-links span {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.press-interview-nolink {
  font-size: 1.05rem;
  color: #ccc;
  display: block;
}

.press-interview-nolink strong {
  color: var(--text);
}

/* Homepage interview clipping (distinct from review quotes) */
.clipping-interview {
  background: #111;
  border-left: 3px solid var(--text-dim);
}

.clipping-interview .clipping-qm {
  color: var(--text-dim);
}

.clipping-interview cite {
  color: var(--text-dim);
  font-style: italic;
}

/* --- Press Album Group (collapsible review sections) --- */
.press-album-group {
  margin-bottom: 32px;
}

.press-album-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  user-select: none;
}

.press-album-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

.press-album-art {
  width: 100px;
  height: 100px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}

.press-album-info {
  flex: 1;
  min-width: 0;
}

.press-album-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
  color: var(--text);
}

.press-album-meta {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.press-album-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #aaa;
  margin-bottom: 12px;
  max-width: none;
}

.press-album-info .rb-links {
  margin-bottom: 8px;
}

.press-album-info .rb-stream-icon {
  width: 36px;
  height: 36px;
}

.press-album-info .rb-stream-icon svg {
  width: 16px;
  height: 16px;
}

.press-album-info .rb-credits {
  margin-bottom: 0;
  font-size: 0.78rem;
}

.press-album-chevron {
  flex-shrink: 0;
  color: var(--text-dim);
  transition: transform 0.25s ease;
  margin-top: 4px;
}

.press-album-group.open .press-album-chevron {
  transform: rotate(0deg);
}

.press-album-group:not(.open) .press-album-chevron {
  transform: rotate(-90deg);
}

.press-album-reviews {
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.25s ease;
  padding-top: 24px;
}

.press-album-group:not(.open) .press-album-reviews {
  max-height: 0 !important;
  opacity: 0;
  padding-top: 0;
}

.press-album-group.open .press-album-reviews {
  opacity: 1;
}

/* Mobile: stack art above info */
@media (max-width: 768px) {
  .press-album-card {
    flex-direction: column;
    align-items: stretch;
    position: relative;
  }

  .press-album-art {
    width: 100px;
    height: 100px;
  }

  .press-album-chevron {
    position: absolute;
    top: 16px;
    right: 16px;
  }
}

/* --- Press Page Tracklist --- */
.press-tracklist {
  list-style: none;
  counter-reset: track;
  margin: 16px 0 20px;
}

.press-tracklist li {
  counter-increment: track;
  padding: 4px 0;
  color: #ccc;
  font-size: 0.95rem;
}

.press-tracklist li::before {
  content: counter(track) ". ";
  color: var(--text-dim);
}

.press-tracklist li span {
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* --- Press Page Release Links --- */
.press-release-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.2rem;
}

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

.lazy {
  opacity: 0;
  transition: opacity .4s;
}

.lazy.loaded { opacity: 1; }

/* --- Press Page Mobile Fixes --- */
@media (max-width: 768px) {
  /* Reduce section padding */
  .press-section {
    padding: 36px 0;
  }

  /* Latest Release: ensure image renders properly */
  .press-release-feature {
    gap: 20px;
  }

  .press-release-feature img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
  }

  .press-release-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  /* Tighten streaming icons spacing */
  .rb-links {
    margin-bottom: 12px;
    gap: 10px;
  }

  /* Smaller streaming icons on mobile */
  .rb-stream-icon {
    width: 40px;
    height: 40px;
  }

  .rb-stream-icon svg {
    width: 18px;
    height: 18px;
  }

  /* Tighten credits spacing */
  .rb-credits {
    margin-bottom: 12px;
  }

  /* Reduce h2 heading size and margin */
  .press-section h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }

  /* Album header cards */
  .press-album-group {
    margin-bottom: 24px;
  }

  .press-album-card {
    padding: 16px;
    gap: 14px;
  }

  .press-album-desc {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }

  .press-album-info .rb-stream-icon {
    width: 32px;
    height: 32px;
  }

  .press-album-info .rb-stream-icon svg {
    width: 14px;
    height: 14px;
  }

  .press-album-info .rb-links {
    margin-bottom: 6px;
    gap: 8px;
  }

  .press-album-reviews {
    padding-top: 16px;
  }

  /* Quote cards */
  .press-quote {
    padding: 24px 20px 20px;
    margin-bottom: 16px;
  }

  .press-quote blockquote {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 12px;
  }

  .press-quote-mark {
    font-size: 4rem;
    top: 28px;
    left: 12px;
  }

  .press-quotes-row {
    gap: 16px;
    margin-bottom: 16px;
  }

  /* Tracklist tighter */
  .press-tracklist {
    margin: 12px 0 16px;
  }

  /* Bio section */
  .press-release-feature > div p {
    font-size: 0.95rem;
  }

  /* Interviews section */
  .press-interviews-list {
    margin-top: 8px;
  }

  .press-interview-links li {
    padding: 10px 0;
  }

  /* Photo grid smaller gap */
  .photo-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 4px;
  }
}
