/* ============================================
   CIRCLE OF SANITY — Homepage Concept
   Dark / Cinematic / Bold
   ============================================ */

/* --- God of War Font --- */
@font-face {
  font-family: "God of War";
  src:
    url("/fonts/god-of-war.woff2") format("woff2"),
    url("/fonts/god-of-war.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  /* Skip U+0026 (&) — font has no glyph for ampersand; fall back to Oswald */
  unicode-range: U+0020-0025, U+0027-10FFFF;
}

/* --- Custom Properties --- */
:root {
  --color-bg: #0a0a0a;
  --color-bg-alt: #111111;
  --color-bg-card: #161616;
  --color-accent: #c0392b;
  --color-accent-hover: #e74c3c;
  --color-text: #e0e0e0;
  --color-text-muted: #888888;
  --color-text-bright: #ffffff;
  --color-border: #222222;
  --font-heading: "God of War", "Oswald", sans-serif;
  --font-body: "Inter", sans-serif;
  --max-width: 1200px;
  --section-pad: 100px;
  --section-pad-mobile: 60px;
  --transition: 0.3s ease;
}

/* --- Visually hidden utility (accessible to screen readers and search engines, hidden from sight) --- */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

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

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

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

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

/* --- Section Utilities --- */
section {
  padding: var(--section-pad) 0;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text-bright);
  line-height: 1.1;
  margin-bottom: 24px;
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Slide from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition:
    opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition:
    opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale up reveal */
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition:
    opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.reveal-delay-1 {
  transition-delay: 0.15s;
}
.reveal-delay-2 {
  transition-delay: 0.3s;
}
.reveal-delay-3 {
  transition-delay: 0.45s;
}
.reveal-delay-4 {
  transition-delay: 0.6s;
}

/* --- Parallax layers --- */
.parallax-bg {
  will-change: transform;
  transition: none;
}

/* --- Hero entrance animations --- */
.hero-top .hero-title {
  opacity: 0;
  transform: translateY(-30px);
  transition:
    opacity 1s cubic-bezier(0.23, 1, 0.32, 1) 0.3s,
    transform 1s cubic-bezier(0.23, 1, 0.32, 1) 0.3s;
}

.hero-bottom .hero-subtitle {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 1s cubic-bezier(0.23, 1, 0.32, 1) 0.6s,
    transform 1s cubic-bezier(0.23, 1, 0.32, 1) 0.6s;
}

.hero-bottom .hero-ctas {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 1s cubic-bezier(0.23, 1, 0.32, 1) 0.9s,
    transform 1s cubic-bezier(0.23, 1, 0.32, 1) 0.9s;
}

.hero.loaded .hero-title,
.hero.loaded .hero-subtitle,
.hero.loaded .hero-ctas {
  opacity: 1;
  transform: translateY(0);
}

/* --- Section divider line animation --- */
.section-divider {
  width: 0;
  height: 2px;
  background: var(--color-accent);
  margin-bottom: 32px;
  transition: width 1s cubic-bezier(0.23, 1, 0.32, 1) 0.2s;
}

.section-divider.visible {
  width: 60px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition:
    background var(--transition),
    padding var(--transition);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  height: 36px;
  width: auto;
  filter: invert(20%) sepia(90%) saturate(2000%) hue-rotate(349deg)
    brightness(80%) contrast(95%);
  transition: filter var(--transition);
}

.nav-logo:hover .nav-logo-img {
  filter: invert(35%) sepia(80%) saturate(1800%) hue-rotate(340deg)
    brightness(95%) contrast(90%);
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-text-bright);
}

.nav-logo-text span {
  color: var(--color-accent);
}

.nav-links {
  display: flex;
  gap: clamp(12px, 2vw, 32px);
  list-style: none;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: clamp(0.65rem, 0.9vw, 0.85rem);
  letter-spacing: clamp(1px, 0.15vw, 2px);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-bright);
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 0;
  background: #000;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 40%;
  z-index: 1;
  pointer-events: none;
}

.hero::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
}

.hero::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.hero-bg-static,
.hero-bg-portrait {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-bg-portrait {
  display: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.hero-video.hero-video-off {
  opacity: 0;
  pointer-events: none;
}

/* Portrait orientation: swap to the vertical hero image, hide the
   landscape image and video entirely. */
@media (orientation: portrait) {
  .hero-bg-static,
  .hero-video {
    display: none;
  }

  .hero-bg-portrait {
    display: block;
  }
}

.hero-top {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 24px 0;
}

.hero-bottom {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px 80px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--color-text-bright);
  line-height: 1;
  margin: 0;
  text-shadow:
    0 2px 20px rgba(0, 0, 0, 0.8),
    0 4px 40px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 32px;
  text-shadow:
    0 2px 16px rgba(0, 0, 0, 0.8),
    0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-ctas .btn {
  box-shadow:
    0 2px 20px rgba(0, 0, 0, 0.6),
    0 4px 30px rgba(0, 0, 0, 0.4);
}

.hero-ctas .btn-outline {
  background: #fff;
  color: #111;
  border: 1px solid #fff;
}

.hero-ctas .btn-outline:hover {
  background: #e0e0e0;
  color: #111;
  border-color: #e0e0e0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-text-bright);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  color: var(--color-text-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(192, 57, 43, 0.4);
}

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

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

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: pulse-down 2s ease-in-out infinite;
}

@keyframes pulse-down {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateX(-50%) translateY(8px);
    opacity: 1;
  }
}

/* ============================================
   MUSIC SECTION
   ============================================ */
#music {
  background: var(--color-bg-alt);
  position: relative;
  overflow: hidden;
}

#music::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -10%;
  width: 60%;
  height: 180%;
  background: radial-gradient(
    ellipse,
    rgba(192, 57, 43, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

#music::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 50%;
  height: 160%;
  background: radial-gradient(
    ellipse,
    rgba(192, 57, 43, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.music-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.music-featured {
  position: relative;
}

.music-featured-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--color-border);
  transition:
    border-color var(--transition),
    box-shadow 0.5s ease;
}

.music-featured:hover .music-featured-img {
  border-color: var(--color-accent);
  box-shadow:
    0 0 40px rgba(192, 57, 43, 0.25),
    0 8px 32px rgba(0, 0, 0, 0.5);
}

.music-featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95), transparent);
}

.music-featured-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--color-text-bright);
}

.music-featured-overlay p {
  font-size: 0.85rem;
  color: var(--color-text-bright);
  margin-top: 4px;
}

.music-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.spotify-embed {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  transition:
    border-color 0.5s ease,
    box-shadow 0.5s ease;
}

.spotify-embed:hover {
  border-color: rgba(192, 57, 43, 0.4);
  box-shadow:
    0 4px 32px rgba(192, 57, 43, 0.12),
    0 8px 40px rgba(0, 0, 0, 0.5);
}

.spotify-embed iframe {
  width: 100%;
  border: none;
}

.release-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.release-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-left: 3px solid transparent;
  transition:
    border-color var(--transition),
    border-left-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.release-card:hover {
  border-color: var(--color-border);
  border-left-color: var(--color-accent);
  transform: translateX(6px);
  background: rgba(192, 57, 43, 0.04);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.3),
    -3px 0 12px rgba(192, 57, 43, 0.08);
}

.release-card-thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  flex-shrink: 0;
  transition: box-shadow var(--transition);
}

.release-card:hover .release-card-thumb {
  box-shadow: 0 0 12px rgba(192, 57, 43, 0.2);
}

.release-card-info h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--color-text-bright);
}

.release-card-info p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

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

.music-links .btn {
  font-size: 0.8rem;
  padding: 10px 20px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
#about {
  position: relative;
  background: var(--color-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}

.about-text p {
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text);
}

.about-text .highlight {
  color: var(--color-accent);
  font-weight: 600;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.about-stat h3 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-accent);
  line-height: 1;
}

.about-stat p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0;
}

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

.member-card {
  position: relative;
  overflow: hidden;
}

.member-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(40%) brightness(0.8);
  transition:
    filter var(--transition),
    transform var(--transition);
}

.member-card:hover img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
}

.member-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95), transparent);
}

.member-card-info h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--color-text-bright);
  letter-spacing: 1px;
}

.member-card-info p {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* ============================================
   SHOWS SECTION
   ============================================ */
#shows {
  position: relative;
  background: var(--color-bg-alt);
  overflow: hidden;
}

.shows-bg {
  position: absolute;
  inset: -20%;
  background: url("https://storage.googleapis.com/kws-clientele/Circle%20of%20Sanity/desktop/shows-bg.webp")
    center center / cover no-repeat;
  opacity: 0.15;
  will-change: transform;
}

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

.shows-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.show-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
}

.show-item:first-child {
  border-top: 1px solid var(--color-border);
}

.show-date {
  text-align: center;
}

.show-date .month {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
}

.show-date .day {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-text-bright);
  line-height: 1;
}

.show-info h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--color-text-bright);
}

.show-info p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.show-item .btn {
  font-size: 0.75rem;
  padding: 10px 20px;
  white-space: nowrap;
}

.shows-empty {
  text-align: center;
  padding: 48px 0;
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

.shows-cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================================
   MEDIA / PRESS SECTION
   ============================================ */
#media {
  background: var(--color-bg);
}

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

.press-card {
  display: block;
  padding: 32px 24px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  text-align: center;
  transition:
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  color: inherit;
  text-decoration: none;
}

.press-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-6px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(192, 57, 43, 0.1);
}

.press-card-icon {
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.press-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--color-text-bright);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.press-card p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.press-card .press-type {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
}

.press-card--featured {
  border-color: var(--color-accent);
  background: linear-gradient(
    135deg,
    var(--color-bg-card) 0%,
    rgba(192, 57, 43, 0.06) 100%
  );
  box-shadow: 0 0 24px rgba(192, 57, 43, 0.15);
}

.press-card--featured:hover {
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 32px rgba(192, 57, 43, 0.3);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
#contact {
  background: var(--color-bg-alt);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--transition);
}

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

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

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23888888'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 20px;
  padding-right: 44px;
  cursor: pointer;
}

.form-group select:focus {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c0392b'><path d='M7 10l5 5 5-5z'/></svg>");
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-block h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-bright);
  margin-bottom: 8px;
}

.contact-info-block p,
.contact-info-block a {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.contact-info-block a:hover {
  color: var(--color-accent);
}

/* --- Contact Hero Layout --- */
.contact-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

.contact-hero .page-hero-bg {
  opacity: 0.15;
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.contact-hero-text {
  display: flex;
  flex-direction: column;
}

.contact-hero .contact-form {
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  padding: 40px;
  margin-top: 0;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

@media (max-width: 1024px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-hero {
    min-height: auto;
    padding: 140px 0 60px;
  }

  .contact-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-hero .contact-form {
    padding: 24px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 1.1rem;
  transition: all var(--transition);
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-left p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.footer-left a {
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.footer-left a:hover {
  color: var(--color-accent);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  color: var(--color-text-muted);
  font-size: 1rem;
  transition: color var(--transition);
}

.footer-socials a:hover {
  color: var(--color-accent);
}

/* ============================================
   PAGE HERO (Interior Pages)
   ============================================ */
.page-hero {
  position: relative;
  padding: 180px 0 80px;
  overflow: hidden;
}

.page-hero-short {
  background: var(--color-bg-alt);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--color-bg) 0%,
    transparent 30%,
    var(--color-bg) 100%
  );
}

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

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-text-bright);
  line-height: 1;
  margin-bottom: 16px;
}

/* ============================================
   MEMBER CARDS — FULL (About Page)
   ============================================ */
.members-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.member-card-full {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition:
    border-color var(--transition),
    transform var(--transition);
}

.member-card-full:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
}

.member-card-full img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(30%) brightness(0.85);
  transition: filter var(--transition);
}

.member-card-full:hover img {
  filter: grayscale(0%) brightness(1);
}

.member-card-full-info {
  padding: 24px;
}

.member-card-full-info h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-bright);
  margin-bottom: 4px;
}

.member-card-full-info .member-role {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.member-card-full-info p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================
   DISCOGRAPHY ITEMS (Music Page)
   ============================================ */
.discography-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--color-border);
}

.discography-item:first-of-type {
  border-top: 1px solid var(--color-border);
}

.discography-art img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--color-border);
}

.discography-info .discography-year {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
}

.discography-info h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--color-text-bright);
  margin: 4px 0 4px;
}

.discography-info .discography-type {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.discography-info p {
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.7;
}

.discography-links {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.discography-links a {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}

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

/* ============================================
   VIDEO CARDS (Music Page)
   ============================================ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

a.video-card {
  display: block;
  color: inherit;
}

.video-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--color-text-bright);
  margin-top: 12px;
}

.video-card p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.video-placeholder {
  aspect-ratio: 16/9;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--color-text-muted);
  transition: border-color var(--transition);
}

.video-embed {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--color-border);
  transition: border-color var(--transition);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-card:hover .video-embed {
  border-color: var(--color-accent);
}

.video-placeholder:hover {
  border-color: var(--color-accent);
}

.video-placeholder i {
  font-size: 2rem;
  color: var(--color-accent);
}

.video-placeholder span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ============================================
   CREDITS GRID (Music Page)
   ============================================ */
.credits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.credit-card {
  padding: 32px 24px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
}

.credit-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--color-text-bright);
  margin-bottom: 4px;
}

.credit-card .credit-role {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.credit-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================
   TIMELINE (About Page)
   ============================================ */
.timeline {
  margin-top: 48px;
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 2px solid var(--color-bg-alt);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.timeline-content h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--color-text-bright);
  margin-bottom: 8px;
}

.timeline-content p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   INFLUENCES (About Page)
   ============================================ */
.influences-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.influence-tag {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  transition: all var(--transition);
}

.influence-tag:hover {
  border-color: var(--color-accent);
  color: var(--color-text-bright);
}

/* ============================================
   PHOTO GALLERY (About Page)
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 48px;
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(30%);
  transition:
    filter var(--transition),
    transform var(--transition);
}

.gallery-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* --- Lightbox --- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-image {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border: 1px solid var(--color-border);
  opacity: 0;
  transform: scale(0.95);
  transition:
    opacity 0.3s ease 0.1s,
    transform 0.3s ease 0.1s;
}

.lightbox-overlay.active .lightbox-image {
  opacity: 1;
  transform: scale(1);
}

.lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

.lightbox-counter {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--color-text-bright);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: color var(--transition);
  z-index: 1;
}

.lightbox-close:hover {
  color: var(--color-accent);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 2rem;
  cursor: pointer;
  padding: 16px;
  transition: color var(--transition);
  z-index: 1;
}

.lightbox-nav:hover {
  color: var(--color-text-bright);
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

@media (max-width: 768px) {
  .lightbox-nav {
    font-size: 1.4rem;
    padding: 12px;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .lightbox-caption {
    font-size: 0.7rem;
    bottom: 16px;
    max-width: 80vw;
    white-space: normal;
  }
}

/* ============================================
   PULL QUOTES (Press Page)
   ============================================ */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.pull-quote {
  padding: 40px 32px;
  border-left: 3px solid var(--color-accent);
  background: var(--color-bg-alt);
}

.pull-quote p {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-text-bright);
  line-height: 1.4;
  font-style: italic;
}

.pull-quote cite {
  display: block;
  margin-top: 16px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  font-style: normal;
}

/* ============================================
   PRESS FEATURES — FULL (Press Page)
   ============================================ */
.press-feature {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--color-border);
}

.press-feature:first-of-type {
  border-top: 1px solid var(--color-border);
  margin-top: 48px;
}

.press-feature-icon {
  font-size: 1.5rem;
  color: var(--color-accent);
  padding-top: 4px;
}

.press-feature-content .press-type {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 4px;
}

.press-feature-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--color-text-bright);
  margin-bottom: 8px;
}

.press-feature-content p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   EPK GRID (Press Page)
   ============================================ */
.epk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

/* ============================================
   MAILING LIST (Contact Page)
   ============================================ */
.mailing-list-form {
  display: flex;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
}

.mailing-list-form input {
  flex: 1;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-right: none;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--transition);
}

.mailing-list-form input:focus {
  border-color: var(--color-accent);
}

.mailing-list-form .btn {
  white-space: nowrap;
}

/* ============================================
   FAQ (Contact Page)
   ============================================ */
.faq-list {
  margin-top: 48px;
  max-width: 800px;
}

.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-item h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  text-transform: uppercase;
  color: var(--color-text-bright);
  margin-bottom: 8px;
}

.faq-item p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item a {
  color: var(--color-accent);
}

/* ============================================
   BOOKING LIST (Shows Page)
   ============================================ */
.booking-list {
  list-style: none;
  margin-top: 12px;
}

.booking-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.booking-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
}

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--color-text-bright);
  font-size: 2rem;
  cursor: pointer;
  padding: 12px;
  z-index: 1001;
  line-height: 1;
}

.mobile-menu-close i {
  pointer-events: none;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu ul a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.mobile-menu ul a:hover {
  color: var(--color-text-bright);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .music-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .press-grid,
  .epk-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quotes-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: var(--section-pad-mobile) 0;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    letter-spacing: 3px;
  }

  .hero-scroll {
    display: none;
  }

  .page-hero {
    padding: 140px 0 60px;
  }

  .members-grid-full {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .discography-item {
    grid-template-columns: 120px 1fr;
    gap: 20px;
    padding: 24px 0;
  }

  .discography-info h3 {
    font-size: 1.2rem;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .credits-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .press-feature {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mailing-list-form {
    flex-direction: column;
  }

  .mailing-list-form input {
    border-right: 1px solid var(--color-border);
  }

  .show-item {
    grid-template-columns: 80px 1fr;
    gap: 16px;
  }

  .show-item .btn {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .members-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .about-stats {
    gap: 24px;
  }

  .about-stat h3 {
    font-size: 2rem;
  }

  .footer .container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .press-grid,
  .epk-grid {
    grid-template-columns: 1fr;
  }

  .discography-item {
    grid-template-columns: 1fr;
  }

  .pull-quote p {
    font-size: 1.1rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .about-stats {
    flex-direction: column;
    gap: 16px;
  }
}

/* ============================================
   MUSIC PAGE — LISTEN SECTION
   ============================================ */
.listen-section {
  background: var(--color-bg-alt);
  position: relative;
  overflow: hidden;
}

.listen-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(192, 57, 43, 0.1) 0%,
    rgba(192, 57, 43, 0.03) 40%,
    transparent 70%
  );
  pointer-events: none;
}

.listen-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.listen-player {
  position: relative;
}

.listen-player .spotify-embed {
  border: 1px solid rgba(192, 57, 43, 0.2);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(192, 57, 43, 0.06);
}

.listen-player .spotify-embed:hover {
  border-color: rgba(192, 57, 43, 0.4);
  box-shadow:
    0 8px 48px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(192, 57, 43, 0.1);
}

.listen-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.listen-sidebar-heading {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: -8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.stream-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-left: 3px solid transparent;
  text-decoration: none;
  transition: all var(--transition);
}

.stream-link:hover {
  border-left-color: var(--color-accent);
  background: rgba(192, 57, 43, 0.05);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.stream-link i {
  font-size: 1.5rem;
  color: var(--color-text-muted);
  width: 28px;
  text-align: center;
  transition: color var(--transition);
}

.stream-link:hover i {
  color: var(--color-accent);
}

.stream-link-text {
  display: flex;
  flex-direction: column;
}

.stream-link-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-bright);
}

.stream-link-sub {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.listen-eq {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 16px;
  flex-shrink: 0;
}

.listen-eq span {
  display: block;
  width: 3px;
  background: var(--color-accent);
  border-radius: 1px;
  animation: eqBounce 1.2s ease-in-out infinite;
}

.listen-eq span:nth-child(1) {
  height: 30%;
  animation-delay: 0s;
}
.listen-eq span:nth-child(2) {
  height: 60%;
  animation-delay: 0.15s;
}
.listen-eq span:nth-child(3) {
  height: 40%;
  animation-delay: 0.3s;
}
.listen-eq span:nth-child(4) {
  height: 80%;
  animation-delay: 0.45s;
}
.listen-eq span:nth-child(5) {
  height: 50%;
  animation-delay: 0.6s;
}

@keyframes eqBounce {
  0%,
  100% {
    transform: scaleY(0.4);
    opacity: 0.5;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

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

  .listen-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .listen-sidebar-heading {
    width: 100%;
    justify-content: center;
  }

  .stream-link {
    flex: 1;
    min-width: 200px;
  }
}

@media (max-width: 480px) {
  .stream-link {
    min-width: 100%;
  }
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    background 0.3s ease;
  z-index: 999;
  border-radius: 4px;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(192, 57, 43, 0.08);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.3),
    0 0 12px rgba(192, 57, 43, 0.1);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }

  .parallax-bg {
    transform: none !important;
  }
}
