/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #1a1a1a;
  --bg-light: #222;
  --bg-card: #262626;
  --text: #fff;
  --text-muted: #999;
  --text-dim: #777;
  --accent: #00bcd4;
  --accent-hover: #00e5ff;
  --gold: #c8a84e;
  --gold-hover: #ddbf6a;
  --border: #333;
  --nav-width: 0px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

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

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


/* ===== TOP BAR — minimal, floating over hero ===== */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  background: transparent;
  pointer-events: none;
}
.top-bar > * {
  pointer-events: auto;
}

.top-logo {
  display: block;
}
.top-logo-img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  transition: transform 0.3s ease, opacity 0.3s;
  opacity: 0.9;
}
.top-logo-img:hover {
  transform: scale(1.05);
  opacity: 1;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}


/* ===== HOME SIDEBAR NAV — black panel, right side ===== */
.side-nav-home {
  position: fixed;
  top: 0;
  right: 0;
  width: 140px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  border-left: 1px solid #ddd;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1.5rem;
  backdrop-filter: blur(12px);
}
.side-nav-home .nav-logo {
  display: block;
  margin-bottom: 1rem;
}
.side-nav-home .nav-logo-img {
  width: 110px;
  height: auto;
  filter: brightness(0);
  transition: transform 0.3s ease;
}
.side-nav-home .nav-logo-img:hover {
  transform: scale(1.05);
}
.side-nav-home .nav-spotify {
  margin-bottom: 1.5rem;
}
.side-nav-home .spotify-icon {
  width: 32px;
  height: 32px;
}
.side-nav-home ul {
  list-style: none;
  text-align: center;
  padding: 0;
  width: 100%;
}
.side-nav-home ul li {
  margin-bottom: 0.25rem;
}
.side-nav-home ul li a {
  color: #1a1a1a;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  padding: 0.15rem 0;
  display: inline-block;
  transition: color 0.2s, transform 0.2s;
}
.side-nav-home ul li a:hover {
  color: var(--accent);
  transform: translateX(-4px);
}
.nav-more-btn {
  background: none;
  border: none;
  color: #555;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  padding: 0.2rem 0;
  transition: color 0.2s;
}
.nav-more-btn:hover {
  color: var(--accent-hover);
}

/* Subscribe button — stacked text, bottom of sidebar */
.btn-subscribe-stacked {
  margin-top: auto;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(0,0,0,0.3);
  border-radius: 8px;
  background: transparent;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-subscribe-stacked:hover {
  border-color: rgba(0,0,0,0.6);
  background: rgba(0,0,0,0.04);
}
.subscribe-why {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: #555;
  line-height: 1;
}
.subscribe-word {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: #1a1a1a;
  line-height: 1.1;
}


/* ===== FULLSCREEN NAV OVERLAY ===== */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
}
.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.nav-overlay-inner ul {
  list-style: none;
  text-align: center;
}
.nav-overlay-inner ul li {
  margin-bottom: 0.5rem;
}
.nav-overlay-inner ul li a {
  color: var(--text-muted);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0;
  display: inline-block;
  transition: color 0.25s, letter-spacing 0.25s;
}
.nav-overlay-inner ul li a:hover {
  color: var(--text);
  letter-spacing: 0.2em;
}
.nav-overlay-inner ul li a.active {
  color: var(--accent);
  font-weight: 600;
}


/* ===== LEGACY SIDE NAV (for beats page) ===== */
.side-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 200px;
  height: 100vh;
  background: rgba(20, 20, 20, 0.95);
  border-left: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1.5rem;
  backdrop-filter: blur(12px);
}
.nav-logo {
  display: block;
  margin-bottom: 2rem;
  text-align: center;
}
.nav-logo-img {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  transition: transform 0.3s ease;
}
.nav-logo-img:hover {
  transform: scale(1.05);
}
.side-nav ul {
  list-style: none;
  text-align: right;
  padding-right: 1.5rem;
}
.side-nav ul li {
  margin-bottom: 0.4rem;
}
.side-nav ul li a {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.3rem 0;
  display: inline-block;
  transition: color 0.2s, transform 0.2s;
}
.side-nav ul li a:hover {
  color: var(--accent);
  transform: translateX(-4px);
}
.side-nav ul li a.active {
  color: var(--accent);
  font-weight: 700;
}

/* Mobile menu toggle (legacy for beats page) */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 1100;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ===== HOME PAGE ===== */

/* Full-screen backdrop */
.page-home {
  background: var(--bg);
  overflow: hidden;
}
.page-home::before {
  content: '';
  position: fixed;
  inset: 0;
  background: url('../img/backdrop-new.jpg') center/cover no-repeat;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}
.page-home::after {
  display: none;
}

.page-home .home-main {
  min-height: 100vh;
  margin-right: 140px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.page-home .top-bar {
  display: none;
}


/* Hero section — full viewport, edge to edge */
.hero {
  flex: 1;
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Hero Photo — massive, centered, anchored to bottom */
.hero-photo-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-photo {
  height: 105%;
  width: auto;
  max-width: none;
  object-fit: cover;
  object-position: top center;
  filter: none;
}


/* ===== BOTTOM ZONE — subscribe + shelf, grounded to bottom ===== */
.hero-bottom-zone {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 11;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem 1rem;
  background: transparent;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1.4rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.3s;
  cursor: pointer;
  border: none;
}
.btn:active {
  transform: scale(0.97);
}

.btn-subscribe {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(0, 188, 212, 0.4);
  box-shadow: none;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1.25rem;
  margin-bottom: 0.75rem;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.btn-subscribe:hover {
  background: rgba(0, 188, 212, 0.12);
  border-color: var(--accent);
  color: var(--accent-hover);
  transform: none;
  box-shadow: 0 0 20px rgba(0, 188, 212, 0.15);
}

.spotify-link {
  display: flex;
  align-items: center;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.spotify-link:hover {
  transform: scale(1.12);
  filter: brightness(1.2);
}
.spotify-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(29, 185, 84, 0.3));
  opacity: 0.8;
  transition: opacity 0.2s;
}
.spotify-icon:hover {
  opacity: 1;
}


/* Footer */
.home-footer {
  position: relative;
  z-index: 12;
  text-align: center;
  padding: 0.75rem 2rem;
  background: rgba(0,0,0,0.85);
}

.social-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 0.4rem;
}
.social-links a {
  color: var(--text-dim);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.social-links a:hover {
  color: var(--text);
}

.copyright {
  color: var(--text-dim);
  font-size: 0.6rem;
  letter-spacing: 0.03em;
  opacity: 0.6;
}


/* ===== ALBUM SHELF (vertical, right side) ===== */
.album-shelf {
  position: relative;
  z-index: 11;
  background: transparent;
  padding: 0 0 0.5rem;
  overflow: visible;
  width: 500px;
  max-width: 95vw;
}

.album-shelf-vertical {
  position: fixed;
  right: 1.5rem;
  top: 8rem;
  bottom: 2rem;
  width: auto;
  max-width: none;
  z-index: 50;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.album-shelf-vertical .shelf-wrapper {
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0;
  flex: 1;
  height: 100%;
}
.album-shelf-vertical .shelf-viewport {
  flex: 1;
  max-width: none;
  width: auto;
  overflow: hidden;
  padding: 2px;
}
.album-shelf-vertical .shelf-track {
  flex-direction: column;
  gap: 5px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding-bottom: 0;
}
.album-shelf-vertical .shelf-arrow-up,
.album-shelf-vertical .shelf-arrow-down {
  position: static;
  font-size: 0.65rem;
  width: 55px;
  height: 18px;
  border-radius: 3px;
  color: #fff;
  opacity: 0.6;
  background: rgba(255,255,255,0.04);
  border: none;
}
.album-shelf-vertical .shelf-arrow-up:hover,
.album-shelf-vertical .shelf-arrow-down:hover {
  opacity: 1;
  background: rgba(255,255,255,0.08);
}
.album-shelf-vertical .shelf-dots {
  display: none;
}
.album-shelf-vertical .shelf-slide {
  width: 55px;
}
.album-shelf-vertical .shelf-slide .album-art-img {
  width: 55px;
  height: 55px;
}
.album-shelf-vertical .carousel-album-title {
  display: none;
}

.shelf-label {
  display: none;
}

.shelf-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  padding: 0 0.5rem;
}

.shelf-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
  padding: 10px 5px;
}

.shelf-track {
  display: flex;
  gap: 0.75rem;
  align-items: flex-end;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  padding-bottom: 2px;
}

.shelf-slide {
  flex-shrink: 0;
  width: 65px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform-origin: bottom center;
  transition: transform 0.15s ease-out;
  will-change: transform;
}

.shelf-slide .album-art-link {
  position: relative;
  display: block;
}

.shelf-slide .album-art-img {
  width: 65px;
  height: 65px;
  object-fit: contain;
  border-radius: 2px;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: box-shadow 0.25s ease;
}

.shelf-slide .album-art-link:hover .album-art-img {
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(0, 188, 212, 0.12),
    0 0 0 1px rgba(0, 188, 212, 0.2);
}

.shelf-slide .album-art-link:hover {
  transform: none;
}

.album-art-link {
  display: block;
  position: relative;
  transition: transform 0.3s ease;
}

.album-badge-new {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--accent);
  color: #000;
  font-size: 0.5rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 1px 5px;
  border-radius: 2px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 188, 212, 0.4);
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { text-shadow: 0 0 20px rgba(0, 188, 212, 0.3); }
  50%      { text-shadow: 0 0 30px rgba(0, 188, 212, 0.5), 0 0 60px rgba(0, 188, 212, 0.15); }
}

.carousel-album-title {
  margin-top: 0.3rem;
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.03em;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 85px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.shelf-slide.dock-active .carousel-album-title {
  opacity: 1;
}

.carousel-album-year {
  color: var(--text-dim);
  font-weight: 400;
  font-size: 0.65rem;
}

/* Shelf arrow buttons */
.shelf-arrow {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.shelf-arrow:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0, 188, 212, 0.1);
}

/* Shelf dots */
.shelf-dots {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 0.4rem;
}
.shelf-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.shelf-dot:hover {
  background: var(--text-muted);
}
.shelf-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}


/* ===== BEATS PAGE ===== */
.page-beats .beats-main {
  margin-right: 200px;
  min-height: 100vh;
}

.beats-hero {
  text-align: center;
  padding: 4rem 2rem 2rem;
  background: linear-gradient(180deg, rgba(0,188,212,0.08) 0%, transparent 100%);
}

.beats-title {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--text);
  margin-bottom: 0.75rem;
  display: inline-block;
  border: 3px solid #fff;
  padding: 0 0.35em;
}

.beats-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.beats-intro {
  padding: 3rem 0;
}
.beats-intro p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.beats-intro h2 {
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}
.why-list {
  list-style: none;
  margin-bottom: 1.5rem;
}
.why-list li {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
}
.why-list li::before {
  content: '\2022';
  color: var(--accent);
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: 0.3rem;
}
.beats-note {
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  color: var(--text-muted);
}


/* ===== PRICE BANNER ===== */
.price-banner {
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.price-text {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gold);
}


/* ===== BEAT LIST / PLAYER ===== */
.beat-catalog {
  padding-bottom: 3rem;
}

.beat-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.beat-row {
  display: grid;
  grid-template-columns: 1fr auto 44px auto 1fr auto auto;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s, background 0.2s;
}
.beat-row:hover {
  border-color: #444;
  background: #2a2a2a;
}
.beat-row.playing {
  border-color: var(--accent);
  background: rgba(0, 188, 212, 0.05);
}

.beat-info {
  min-width: 0;
}
.beat-name {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.beat-bpm {
  color: var(--text-dim);
  font-size: 0.75rem;
  font-weight: 500;
}

.beat-artist {
  color: var(--text-dim);
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
}

.play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.1s;
  flex-shrink: 0;
}
.play-btn:hover {
  background: rgba(0, 188, 212, 0.15);
}
.play-btn:active {
  transform: scale(0.95);
}

.progress-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}
.progress-bar {
  flex: 1;
  height: 4px;
  background: #333;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  min-width: 80px;
}
.progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
  pointer-events: none;
}

.time-display {
  color: var(--text-dim);
  font-size: 0.7rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  min-width: 80px;
  text-align: center;
}

.buy-btn {
  padding: 0.5rem 1.25rem;
  background: var(--gold);
  color: #000;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}
.buy-btn:hover {
  background: var(--gold-hover);
}
.buy-btn:active {
  transform: scale(0.97);
}


/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

.testimonials-heading {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 2.5rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.testimonial-author {
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.testimonial-card blockquote {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  font-style: italic;
}
.testimonial-card blockquote em {
  color: var(--text);
  font-style: italic;
}


/* ===== FAQ ===== */
.faq-section {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}
.faq-section h2 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  color: var(--text);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
}
.faq-item h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.faq-item p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}


/* ===== SUBSCRIBE SECTION ===== */
.subscribe-section {
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.subscribe-section p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
.subscribe-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}
.email-contact a {
  color: var(--gold);
  font-weight: 600;
}


/* ===== SITE FOOTER ===== */
.site-footer {
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
}


/* ===== PRESS PAGE ===== */
.page-press {
  background: var(--bg);
  overflow-x: hidden;
}
.page-press::before {
  content: '';
  position: fixed;
  inset: 0;
  background: url('../img/backdrop-new.jpg') center/cover no-repeat;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}

.page-press .press-main {
  margin-right: 140px;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.press-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 2rem 3rem;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 0 0 8px 8px;
}

.press-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  letter-spacing: 0.15em;
  color: #1a1a1a;
  margin-bottom: 2rem;
}

.press-section {
  margin-bottom: 2.5rem;
}

.press-section-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: #1a1a1a;
  margin-bottom: 1rem;
  border-bottom: 2px solid rgba(0,0,0,0.1);
  padding-bottom: 0.4rem;
}

.press-bio p,
.press-section p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

/* Quick Facts grid */
.quick-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 2rem;
  list-style: none;
}
.quick-facts li {
  color: #333;
  font-size: 0.9rem;
  line-height: 1.6;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.quick-facts li strong {
  color: #1a1a1a;
  font-weight: 700;
}

/* Press photos placeholder */
.press-photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.press-photo-placeholder {
  aspect-ratio: 1;
  background: rgba(0,0,0,0.05);
  border: 2px dashed rgba(0,0,0,0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 0.8rem;
  font-weight: 500;
}

.btn-press-kit {
  display: inline-block;
  padding: 0.7rem 2rem;
  background: #1a1a1a;
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-press-kit:hover {
  background: #333;
  color: #fff;
  transform: translateY(-1px);
}

/* Press testimonials */
.press-quote {
  background: rgba(15, 15, 15, 0.85);
  border-left: 3px solid var(--accent);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
  border-radius: 0 6px 6px 0;
}
.press-quote blockquote {
  color: #f0f0f0;
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 0.5rem;
}
.press-quote .quote-author {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
}

/* Press contact */
.press-contact-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  text-align: center;
}
.press-contact-box p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.press-contact-box .press-email {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}
.press-contact-box .press-email a {
  color: #fff;
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  transition: color 0.2s;
}
.press-contact-box .press-email a:hover {
  color: var(--accent);
}

/* Press page footer — dark bar */
.press-footer {
  position: relative;
  z-index: 12;
  text-align: center;
  padding: 0.75rem 2rem;
  background: rgba(0,0,0,0.85);
}


/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .beat-row {
    grid-template-columns: auto 40px 1fr auto;
    grid-template-rows: auto auto;
    gap: 0.5rem;
  }
  .beat-info {
    grid-column: 1;
    grid-row: 1;
  }
  .play-btn {
    grid-column: 2;
    grid-row: 1;
    width: 40px;
    height: 40px;
  }
  .progress-wrapper {
    grid-column: 3;
    grid-row: 1;
  }
  .buy-btn {
    grid-column: 4;
    grid-row: 1;
  }
  .beat-artist {
    display: none;
  }
  .time-display {
    min-width: 60px;
    font-size: 0.65rem;
  }
}

@media (max-width: 768px) {
  /* Press page */
  .page-press .side-nav-home {
    display: none;
  }
  .page-press .side-nav-home.open {
    display: flex;
  }
  .page-press .press-main {
    margin-right: 0;
  }
  .page-press .mobile-menu-toggle {
    display: flex;
  }
  .press-title {
    font-size: 3rem;
  }
  .quick-facts {
    grid-template-columns: 1fr;
  }
  .press-photos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Beats page side nav */
  .side-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 260px;
    height: 100vh;
    z-index: 1050;
    background: rgba(20, 20, 20, 0.98);
  }
  .side-nav.open {
    display: flex;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .page-beats .beats-main {
    margin-right: 0;
  }

  .beats-title {
    font-size: 2.5rem;
  }

  /* Home page mobile */
  .top-bar {
    padding: 1rem 1.25rem;
  }
  .top-logo-img {
    height: 32px;
  }

  .nav-overlay-inner ul li a {
    font-size: 1.2rem;
  }

  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero-photo-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .hero-photo {
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }

  .hero-bottom-zone {
    padding: 0 1rem 0.75rem;
  }

  .album-shelf {
    width: 100%;
    max-width: 95vw;
  }

  /* Shelf on mobile: slightly larger covers, show titles */
  .shelf-slide {
    width: 70px;
  }
  .shelf-slide .album-art-img {
    width: 70px;
    height: 70px;
  }
  .carousel-album-title {
    max-width: 80px;
    font-size: 0.5rem;
    opacity: 1;
  }

  .beat-row {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    padding: 0.6rem 0.75rem;
    gap: 0.4rem;
  }
  .beat-info {
    grid-column: 1;
    grid-row: 1;
  }
  .play-btn {
    grid-column: 2;
    grid-row: 1 / 3;
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }
  .progress-wrapper {
    grid-column: 1;
    grid-row: 2;
  }
  .buy-btn {
    grid-column: 2;
    grid-row: 2;
    padding: 0.4rem 0.75rem;
    font-size: 0.7rem;
  }
  .beat-artist {
    display: none;
  }
  .time-display {
    display: none;
  }

  .testimonial-card {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .beats-title {
    font-size: 2rem;
  }
  .price-text {
    font-size: 1.25rem;
  }

  .nav-overlay-inner ul li a {
    font-size: 1rem;
  }

  /* Shelf on small mobile */
  .shelf-slide {
    width: 60px;
  }
  .shelf-slide .album-art-img {
    width: 60px;
    height: 60px;
  }
  .carousel-album-title {
    max-width: 65px;
    font-size: 0.45rem;
  }

  .home-footer {
    padding: 0.5rem 1rem;
  }
  .social-links {
    gap: 1rem;
  }
  .social-links a {
    font-size: 0.6rem;
  }
}
