/* ============================================
   THE HIBERNATING BEARS — STYLES v2
   Premium modern rock website template
   ============================================ */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

::selection {
  background: #c0392b;
  color: #f5f5f5;
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #1e1e1e; border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: #c0392b; }

/* ============================================
   CUSTOM CURSOR (desktop only)
   ============================================ */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button { cursor: none; }
}

.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 5px;
  height: 5px;
  background: #e74c3c;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
  will-change: transform;
}

.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(192, 57, 43, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}

.cursor-dot.is-hovering {
  width: 8px;
  height: 8px;
  background: #c0392b;
}

.cursor-ring.is-hovering {
  width: 44px;
  height: 44px;
  border-color: rgba(192, 57, 43, 0.25);
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ============================================
   NAV
   ============================================ */
#nav.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

/* ============================================
   HERO
   ============================================ */
.hero-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  will-change: transform;
}

/* Logo watermark — textural background depth */
.hero-logo-bg {
  width: 155%;
  max-width: none;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  /* Chain: black → white → warm sepia → saturate → hue-rotate to crimson → darken → blur */
  opacity: 0.06;
  filter: brightness(0) invert(1) sepia(1) saturate(600%) hue-rotate(310deg) brightness(0.18) blur(9px);
  transform: rotate(5deg);
  pointer-events: none;
  user-select: none;
}

/* Hero logos — all three identical size, screen blend removes black bg */
.hero-logo-top,
.hero-logo-left,
.hero-logo-right {
  width: 190px;
  height: auto;
  mix-blend-mode: screen;
  pointer-events: none;
  user-select: none;
}

/* Title row — flex composition, logos flank the title */
.hero-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

/* Side logos */
.hero-logo-left,
.hero-logo-right {
  flex-shrink: 0;
  opacity: 0;
  animation: heroLogoSideIn 2s ease forwards;
}

.hero-logo-left  { animation-delay: 0.8s; }
.hero-logo-right { animation-delay: 1s; }

@keyframes heroLogoSideIn {
  from { opacity: 0; }
  to   { opacity: 0.62; }
}

/* Top logo */
.hero-logo-top {
  display: block;
  margin: 0 auto 24px;
  opacity: 0;
  animation: heroLogoTopIn 1.8s ease 0.5s forwards;
}

@keyframes heroLogoTopIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 0.78; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .hero-logo-left,
  .hero-logo-right { display: none; }
  .hero-title-row { display: block; }
  .hero-logo-top { width: 120px; margin-bottom: 20px; }
}

/* Noise grain */
.noise-overlay {
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.35'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
  mix-blend-mode: overlay;
  opacity: 0.25;
}

/* Hero title — white fill, sharp red stroke, precision rock poster shadow */
#hero-title .hero-line {
  -webkit-text-stroke: 2px #c0392b;
  paint-order: stroke fill;
  text-shadow:
    1px 2px 0 #6e1509,
    3px 5px 0 rgba(80, 12, 4, 0.55),
    0 0 22px rgba(192, 57, 43, 0.22),
    2px 4px 18px rgba(0, 0, 0, 0.95);
}

/* Masked text reveal — parent clips, child slides up */
.hero-line-wrap {
  display: block;
  overflow: hidden;
  line-height: 0.95;
}

.hero-line {
  display: block;
  will-change: transform;
}

/* Scroll indicator */
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(1); }
  50%       { opacity: 0.8;  transform: scaleY(1.15); }
}

/* ============================================
   SECTION DIVIDERS
   ============================================ */
.section-divider {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(192, 57, 43, 0.0) 5%,
    rgba(192, 57, 43, 0.45) 50%,
    rgba(192, 57, 43, 0.0) 95%,
    transparent 100%
  );
}

/* ============================================
   SECTION LABELS
   ============================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: #c0392b;
  flex-shrink: 0;
}

.label-text {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: #c0392b;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #c0392b;
  color: #f5f5f5;
  border: 1px solid #c0392b;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #d44235;
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-primary:hover { box-shadow: 0 0 30px rgba(192, 57, 43, 0.3); }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary > * { position: relative; z-index: 1; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #f5f5f5;
  border: 1px solid rgba(255,255,255,0.16);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.04);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #666666;
  border: 1px solid #222222;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.btn-ghost:hover {
  color: #f5f5f5;
  border-color: #333333;
}

/* ============================================
   TICKER STRIP
   ============================================ */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  padding: 13px 0;
  background: #0d0d0d;
}

.ticker-wrap--reverse {
  background: #0c0c0c;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 32s linear infinite;
  will-change: transform;
}

.ticker-track--reverse {
  animation-name: tickerScrollReverse;
  animation-duration: 36s;
}

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

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

.ticker-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: #2e2e2e;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 2rem;
}

.ticker-sep {
  color: #c0392b;
  font-size: 7px;
  align-self: center;
  flex-shrink: 0;
  opacity: 0.7;
}

/* ============================================
   ALBUM SECTION
   ============================================ */
.album-placeholder {
  position: relative;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(192, 57, 43, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 70%, rgba(212, 168, 67, 0.06) 0%, transparent 45%),
    linear-gradient(135deg, #181818 0%, #0e0e0e 50%, #141414 100%);
  border: 1px solid #222222;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.4s ease;
  will-change: transform;
}

.album-placeholder:hover {
  border-color: #2e2e2e;
}

.album-placeholder-inner {
  position: relative;
  z-index: 1;
}

/* Out Now stamp */
.album-stamp {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 20;
  width: 68px;
  height: 68px;
  background: #c0392b;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  transform: rotate(14deg);
  box-shadow: 0 6px 24px rgba(192, 57, 43, 0.45), inset 0 1px 0 rgba(255,255,255,0.1);
  animation: stampWobble 6s ease-in-out infinite;
}

@keyframes stampWobble {
  0%, 100% { transform: rotate(14deg); }
  50%       { transform: rotate(11deg) scale(1.03); }
}

/* Crop marks */
.cropmark {
  position: absolute;
  width: 12px;
  height: 12px;
  pointer-events: none;
  opacity: 0.25;
}

.cropmark-tl {
  top: 10px; left: 10px;
  border-top: 1px solid #888;
  border-left: 1px solid #888;
}

.cropmark-tr {
  top: 10px; right: 10px;
  border-top: 1px solid #888;
  border-right: 1px solid #888;
}

.cropmark-bl {
  bottom: 10px; left: 10px;
  border-bottom: 1px solid #888;
  border-left: 1px solid #888;
}

.cropmark-br {
  bottom: 10px; right: 10px;
  border-bottom: 1px solid #888;
  border-right: 1px solid #888;
}

/* Reflection glow */
.album-reflection {
  position: absolute;
  bottom: -40px;
  left: 5%;
  right: 5%;
  height: 80px;
  background: radial-gradient(ellipse at center, rgba(192, 57, 43, 0.18) 0%, transparent 65%);
  filter: blur(24px);
  pointer-events: none;
  z-index: -1;
}

/* Stream buttons */
.stream-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #111111;
  border: 1px solid #1e1e1e;
  color: #666666;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.stream-btn:hover {
  background: #161616;
  border-color: #2a2a2a;
  color: #f5f5f5;
}

.stream-btn svg {
  transition: transform 0.25s ease;
}

.stream-btn:hover svg {
  transform: scale(1.15);
}

/* Tracklist */
.tracklist {
  border-top: 1px solid #1a1a1a;
  padding-top: 20px;
}

.tracklist-label {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: #3a3a3a;
  margin-bottom: 10px;
}

.tracklist-items {
  display: flex;
  flex-direction: column;
}

.track-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid #141414;
  cursor: pointer;
  transition: padding-left 0.2s ease;
}

.track-row:hover {
  padding-left: 6px;
}

.track-row:hover .track-name {
  color: #cccccc;
}

.track-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  color: #2e2e2e;
  letter-spacing: 0.08em;
  flex-shrink: 0;
  width: 22px;
  transition: color 0.2s ease;
}

.track-row:hover .track-num {
  color: #c0392b;
}

.track-name {
  font-size: 13px;
  color: #555555;
  letter-spacing: 0.04em;
  flex: 1;
  transition: color 0.2s ease;
}

.track-dur {
  font-size: 11px;
  color: #2e2e2e;
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

/* ============================================
   SINGLES SECTION
   ============================================ */
.single-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.3s ease;
}

/* Accent line that grows from bottom on hover */
.single-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 2px;
  background: #c0392b;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.single-card:hover::after {
  transform: scaleX(1);
}

.single-card:hover {
  background: #0e0e0e;
}

/* Featured card */
.single-card--featured {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1280px) {
  .single-card--featured {
    flex-direction: row;
  }

  .single-card--featured .single-artwork {
    aspect-ratio: auto;
    flex: 0 0 50%;
    min-height: 280px;
  }

  .single-info--featured {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.single-artwork {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.single-artwork-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* Unique per-card tint via --card-tint: r, g, b */
  background: linear-gradient(
    145deg,
    rgb(
      calc(14 + var(--card-tint-r, 0)),
      calc(10 + var(--card-tint-g, 0)),
      calc(10 + var(--card-tint-b, 0))
    ) 0%,
    #0d0d0d 100%
  );
}

/* Apply tints from inline --card-tint shorthand */
[style*="--card-tint: 20, 8, 8"] .single-artwork-placeholder  { background: linear-gradient(145deg, #1e0e0e, #0d0d0d); }
[style*="--card-tint: 10, 12, 20"] .single-artwork-placeholder { background: linear-gradient(145deg, #0e1014, #0d0d0d); }
[style*="--card-tint: 8, 16, 10"] .single-artwork-placeholder  { background: linear-gradient(145deg, #0e140e, #0d0d0d); }
[style*="--card-tint: 16, 10, 20"] .single-artwork-placeholder { background: linear-gradient(145deg, #140e14, #0d0d0d); }
[style*="--card-tint: 20, 14, 8"] .single-artwork-placeholder  { background: linear-gradient(145deg, #1a140e, #0d0d0d); }
[style*="--card-tint: 8, 18, 16"] .single-artwork-placeholder  { background: linear-gradient(145deg, #0e1412, #0d0d0d); }
[style*="--card-tint: 12, 10, 20"] .single-artwork-placeholder { background: linear-gradient(145deg, #100e14, #0d0d0d); }

.single-card:hover .single-artwork-placeholder {
  transform: scale(1.06);
}

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

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

.play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #c0392b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.4);
}

.play-btn:hover {
  background: #d44235;
  transform: scale(1.12);
  box-shadow: 0 0 0 8px rgba(192, 57, 43, 0.15);
}

.single-info {
  padding: 16px 18px 18px;
  background: inherit;
}

.single-info--featured {
  padding: 24px;
}

.single-eyebrow {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #c0392b;
  margin-bottom: 8px;
}

.single-title {
  font-size: 14px;
  font-weight: 600;
  color: #cccccc;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s ease;
}

.single-card:hover .single-title {
  color: #f5f5f5;
}

.single-title--lg {
  font-size: 20px;
  white-space: normal;
  line-height: 1.25;
  margin-bottom: 6px;
}

.single-meta {
  font-size: 11px;
  color: #444444;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.single-desc {
  font-size: 12px;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 14px;
  display: none;
}

@media (min-width: 1280px) {
  .single-desc { display: block; }
}

.single-link {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #555555;
  transition: color 0.2s ease, letter-spacing 0.3s ease;
}

.single-card:hover .single-link {
  color: #c0392b;
  letter-spacing: 0.25em;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-quote {
  border-left: 2px solid #c0392b;
  padding-left: 24px;
}

.band-photo-wrap {
  position: relative;
}

.member-photo {
  aspect-ratio: 1;
  background: #111111;
  border: 1px solid #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.member-block:hover .member-photo {
  border-color: #2a2a2a;
}

/* ============================================
   GALLERY / VISUAL SECTION — images
   ============================================ */
#gallery img {
  display: block;
}

/* ============================================
   SHOWS SECTION
   ============================================ */
.show-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid #181818;
  cursor: pointer;
  position: relative;
  transition: padding-left 0.25s ease;
}

.show-row::before {
  content: '';
  position: absolute;
  left: -32px;
  right: -32px;
  top: 0; bottom: 0;
  background: rgba(255,255,255,0.015);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.show-row:hover::before { opacity: 1; }
.show-row:hover { padding-left: 4px; }

.show-date {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
}

.show-day {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  line-height: 1;
  color: #f5f5f5;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.show-row:hover .show-day { color: #ffffff; }

.show-month {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #3a3a3a;
  margin-top: 2px;
}

.show-venue {
  font-size: 16px;
  font-weight: 600;
  color: #cccccc;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.show-row:hover .show-venue { color: #f5f5f5; }

.show-location {
  font-size: 11px;
  color: #444444;
  letter-spacing: 0.1em;
  margin-top: 3px;
}

.btn-tickets {
  display: inline-block;
  padding: 10px 22px;
  background: transparent;
  border: 1px solid #222222;
  color: #555555;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-tickets:hover {
  background: #c0392b;
  border-color: #c0392b;
  color: #f5f5f5;
  box-shadow: 0 0 20px rgba(192, 57, 43, 0.25);
}

.show-coming-soon {
  display: none;
}

/* ============================================
   SOCIAL / CONTACT
   ============================================ */
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  background: #0f0f0f;
  border: 1px solid #c0392b;
  color: #555555;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.social-btn:hover {
  background: #141414;
  border-color: #e74c3c;
  color: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(192, 57, 43, 0.2);
}

.social-btn svg {
  transition: transform 0.25s ease;
}

.social-btn:hover svg {
  transform: scale(1.15);
}

.social-btn-email:hover {
  color: #e74c3c;
}

/* ============================================
   REVEAL ANIMATIONS
   (Initial states — GSAP drives the animation)
   ============================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
}

/* ============================================
   LOGO
   ============================================ */
.nav-logo {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
  /* Keep visible on dark nav — if logo is dark, invert it */
  filter: brightness(0) invert(1);
  opacity: 0.92;
  transition: opacity 0.3s ease;
}

.nav-logo:hover { opacity: 1; }

.hero-logo {
  height: 56px;
  width: auto;
  display: inline-block;
  object-fit: contain;
  mix-blend-mode: screen;
  opacity: 0.85;
}

@media (min-width: 768px) {
  .hero-logo { height: 68px; }
}

.footer-logo {
  height: 28px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.35;
  transition: opacity 0.3s ease;
}

.footer-logo:hover { opacity: 0.6; }

/* ============================================
   ALBUM COVER — REAL IMAGE
   ============================================ */
.album-cover-wrap {
  position: relative;
  max-width: 32rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .album-cover-wrap { margin: 0; }
}

.album-cover-img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid #1e1e1e;
  transition: box-shadow 0.4s ease;
  will-change: transform;
}

.album-glow {
  position: absolute;
  bottom: -40px;
  left: 5%;
  right: 5%;
  height: 80px;
  background: radial-gradient(ellipse at center, rgba(192, 57, 43, 0.2) 0%, transparent 65%);
  filter: blur(28px);
  pointer-events: none;
  z-index: -1;
}

/* Stream button primary variant */
.stream-btn--primary {
  background: #c0392b;
  border-color: #c0392b;
  color: #f5f5f5;
}

.stream-btn--primary:hover {
  background: #d44235;
  border-color: #d44235;
  color: #f5f5f5;
}

/* ============================================
   SINGLES GRID — REAL IMAGES
   ============================================ */
.singles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (min-width: 640px) {
  .singles-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

/* Single card is now an <a> tag */
.single-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
  background: #0a0a0a;
  text-decoration: none;
}

/* Red accent line on hover */
.single-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 2px;
  background: #c0392b;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.single-card:hover::after { transform: scaleX(1); }

.single-artwork {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

/* Real image inside single card */
.single-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Overlay with "Listen Now" */
.single-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.listen-cue {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #f5f5f5;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transform: translateY(6px);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.single-card:hover .listen-cue {
  transform: translateY(0);
}

/* Title bar under each card */
.single-info {
  padding: 12px 16px 14px;
  background: #0a0a0a;
  border-top: 1px solid #161616;
}

.single-title {
  font-size: 13px;
  font-weight: 600;
  color: #aaaaaa;
  letter-spacing: 0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s ease;
  margin: 0;
}

.single-card:hover .single-title { color: #f5f5f5; }

/* ============================================
   GALLERY PROMO — TWO-COLUMN ALBUM PROMO
   ============================================ */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

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

@media (min-width: 1024px) {
  .promo-grid {
    grid-template-columns: 55% 1fr;
    gap: 80px;
  }
}

.promo-img-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid #1e1e1e;
}

.promo-img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.promo-img-wrap:hover .promo-img {
  transform: scale(1.02);
}

.promo-content {
  display: flex;
  flex-direction: column;
}

.promo-quotes {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 4px;
}

.press-quote {
  border-left: 2px solid #222222;
  padding-left: 20px;
  transition: border-color 0.3s ease;
}

.press-quote:hover {
  border-color: #c0392b;
}

.press-quote__text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.6;
  color: #888888;
  margin: 0 0 6px 0;
  transition: color 0.3s ease;
}

.press-quote:hover .press-quote__text {
  color: #cccccc;
}

.press-quote__source {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #3a3a3a;
  font-style: normal;
  transition: color 0.3s ease;
}

.press-quote:hover .press-quote__source {
  color: #c0392b;
}

.promo-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.platform-pill {
  display: inline-block;
  padding: 5px 12px;
  background: transparent;
  border: 1px solid #1e1e1e;
  color: #3a3a3a;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 640px) {
  .show-row {
    grid-template-columns: 65px 1fr;
    gap: 16px;
  }

  .show-action {
    grid-column: 1 / -1;
    padding-left: 0;
    margin-top: -4px;
    padding-bottom: 4px;
  }

  .stream-btn span { display: none; }
  .stream-btn { padding: 10px 12px; }
}

@media (max-width: 480px) {
  .hero-line-wrap { line-height: 0.92; }
}

