/* =========================
   The Expanders — Vintage Sound System Aesthetic
   70s Jamaica dancehall vibes, warm colors, worn textures
   ========================= */

/* ---- CSS Custom Properties ---- */
:root {
  /* Warm vintage palette pulled from album artwork */
  --gold: #E5A91A;
  --gold-dim: #B8860B;
  --orange: #D35400;
  --burgundy: #A61B3D;
  --brown: #5C4033;
  --cream: #F5F0E1;
  --cream-dim: rgba(245, 240, 225, 0.85);

  /* Backgrounds */
  --bg-dark: #0F0D0A;
  --bg-card: rgba(20, 18, 14, 0.9);
  --bg-card-hover: rgba(30, 27, 20, 0.95);

  /* Text */
  --text-primary: #F5F0E1;
  --text-secondary: rgba(245, 240, 225, 0.75);

  /* Borders */
  --border-subtle: rgba(229, 169, 26, 0.2);
  --border-accent: rgba(229, 169, 26, 0.4);

  /* Typography */
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;

  /* Layout */
  --header-h: 80px;

  /* Animation */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg-dark);
}

/* Offset anchor links for sticky header */
section[id] {
  scroll-margin-top: var(--header-h);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-dark);
}

/* Noise texture overlay for vintage feel */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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)'/%3E%3C/svg%3E");
}

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

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Selection styling */
::selection {
  background: var(--gold);
  color: var(--bg-dark);
}

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

/* Skip link */
.skip-link {
  position: absolute;
  top: 8px; left: 8px;
  padding: 10px 12px;
  background: #000;
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 10px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

/* ---- Layout helpers ---- */
.section-inner,
.hero-inner,
.footer-inner {
  width: min(1400px, calc(100% - 48px));
  margin: 0 auto;
}

/* Even wider on large displays */
@media (min-width: 1600px) {
  .section-inner,
  .hero-inner,
  .footer-inner {
    width: min(1600px, 75%);
  }
}

/* =========================
   Header / Nav
   ========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: linear-gradient(to bottom, rgba(15, 13, 10, 0.95), rgba(15, 13, 10, 0.85));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

/* iOS status bar cover - only covers the notch/status bar area */
.status-bar-cover {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #000;
  z-index: 10000;
  pointer-events: none;
  /* 10px visible (blends with black header), 50px in status bar */
  transform: translateY(-50px);
}

@media (min-width: 769px) {
  .status-bar-cover {
    display: none;
  }
}

@media (max-width: 768px) {
  .status-bar-cover {
    display: block;
  }

  .site-header {
    background: #000;
    backdrop-filter: none;
  }
}

@media (min-width: 1024px) {
  .site-header {
    height: 90px;
  }
}

@media (min-width: 1400px) {
  .site-header {
    height: 100px;
  }
}

.site-nav {
  height: 100%;
}

.site-logo {
  display: inline-flex;
  align-items: center;
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
}

@media (min-width: 1024px) {
  .logo-img {
    height: 52px;
  }
}

.site-nav {
  width: min(1400px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

@media (min-width: 1600px) {
  .site-nav {
    width: min(1600px, 75%);
  }
}

.site-logo {
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-logo:hover {
  color: inherit;
}

/* Desktop nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 8px;
  padding: 0;
  margin: 0;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.05em;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
}

@media (min-width: 1024px) {
  .nav-links {
    gap: 12px;
  }

  .nav-links a {
    font-size: 22px;
    padding: 10px 18px;
  }
}

@media (min-width: 1400px) {
  .nav-links a {
    font-size: 24px;
    padding: 12px 22px;
  }
}

.nav-links a:hover {
  background: rgba(229, 169, 26, 0.1);
  color: var(--gold);
}

/* Store link styled as button */
.nav-links a[href*="store"] {
  background: var(--gold);
  color: var(--bg-dark);
  font-weight: 700;
}

.nav-links a[href*="store"]:hover {
  background: var(--cream);
  color: var(--bg-dark);
}

/* Nav social icon */
.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.nav-social img {
  opacity: 0.8;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.nav-social a:hover img {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(67%) sepia(67%) saturate(588%) hue-rotate(9deg) brightness(98%) contrast(86%);
}

/* Mobile toggle button */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  background: var(--bg-card);
  color: var(--cream);
  cursor: pointer;
  padding: 0;
  font-size: 20px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nav-toggle:hover {
  border-color: var(--gold);
  background: var(--bg-card-hover);
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links--desktop {
    display: none;
  }
}

/* =========================
   Mobile Menu (outside header)
   ========================= */

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  background: var(--bg-card);
  color: var(--cream);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.mobile-menu__close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.mobile-menu__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 320px;
}

.mobile-menu__links li {
  width: 100%;
  text-align: center;
}

.mobile-menu__links a {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 0.05em;
  padding: 16px 24px;
  border-radius: 12px;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-menu__links a:hover,
.mobile-menu__links a:focus {
  background: rgba(229, 169, 26, 0.15);
  color: var(--gold);
}

.mobile-menu__links a[href*="store"] {
  margin-top: 16px;
  background: var(--gold);
  color: var(--bg-dark);
  padding: 20px 32px;
}

.mobile-menu__links a[href*="store"]:hover {
  background: var(--cream);
}

/* =========================
   Hero
   ========================= */

#hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  background-image: url("../img/hero-bg-desktop.png");
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}

@media (min-width: 601px) {
  #hero {
    position: absolute;
    inset: 0;
  }
}

/* Gradient overlay with warm tint */
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 13, 10, 0.3) 0%,
    rgba(15, 13, 10, 0.15) 35%,
    rgba(15, 13, 10, 0.5) 70%,
    rgba(15, 13, 10, 0.85) 100%
  );
}

/* Vignette effect */
#hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(15, 13, 10, 0.4) 100%);
}

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

.hero-wrapper {
  position: relative;
  overflow: hidden;
}

@media (max-width: 600px) {
  .hero-wrapper {
    display: flex;
    flex-direction: column;
    height: calc(100svh - var(--header-h));
  }
}

@media (min-width: 601px) {
  .hero-wrapper {
    min-height: calc(100svh - var(--header-h));
  }
}

@media (min-width: 1024px) {
  .hero-wrapper {
    min-height: calc(100svh - 90px);
  }
}

@media (min-width: 1400px) {
  .hero-wrapper {
    min-height: calc(100svh - 100px);
  }
}

/* Promo / release banner - Vinyl Pre-order Focus */
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 24px;
  background: rgba(15, 13, 10, 0.25);
  backdrop-filter: blur(12px);
  border-top: 2px solid var(--gold);
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.5);
}

.hero-cta .release-art {
  width: 90px;
  height: 90px;
  border-radius: 6px;
  flex-shrink: 0;
  border: 2px solid var(--border-accent);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(229, 169, 26, 0.15);
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease;
}

.hero-cta:hover .release-art {
  transform: scale(1.03) rotate(-1deg);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.5),
    0 0 50px rgba(229, 169, 26, 0.25);
}

.hero-cta .release-copy {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Desktop/Tablet: position CTA at bottom of wrapper */
@media (min-width: 601px) {
  .hero-cta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    padding: 28px 48px;
    gap: 16px 28px;
  }

  .hero-cta .release-art {
    width: 120px;
    height: 120px;
    grid-row: 1 / 3;
    grid-column: 1;
  }

  .hero-cta .release-copy {
    display: contents;
  }

  .hero-cta .release-title {
    grid-row: 1;
    grid-column: 2;
    align-self: end;
  }

  .hero-cta .button {
    grid-row: 2;
    grid-column: 2;
    justify-self: start;
    align-self: start;
  }
}

/* Extra wide screens */
@media (min-width: 1600px) {
  .hero-cta {
    padding: 32px 64px;
  }

  .hero-cta .release-art {
    width: 140px;
    height: 140px;
  }
}

.release-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.release-title {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(15px, 2.5vw, 20px);
  line-height: 1.4;
  color: var(--cream);
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 6px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--cream);
  min-height: 44px;
  transition: all 0.2s ease;
}

.button:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold);
  color: var(--gold);
  text-decoration: none;
  transform: translateY(-1px);
}

.button.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-dark);
}

.button.primary:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--bg-dark);
  box-shadow: 0 4px 20px rgba(229, 169, 26, 0.3);
}

.button--large {
  padding: 16px 32px;
  font-size: 20px;
}

/* =========================
   Mobile / Tablet
   ========================= */

/* Tablets: use desktop hero with adjusted positioning */
@media (min-width: 601px) and (max-width: 768px) {
  #hero {
    background-position: center 25%;
  }
}

@media (max-width: 600px) {
  #hero {
    flex: 1;
    background-image: url("../img/hero-bg-mobile.png");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 0;
  }

  /* Keep gradient on mobile but lighter */
  #hero::before {
    background: linear-gradient(
      to bottom,
      rgba(15, 13, 10, 0.2) 0%,
      rgba(15, 13, 10, 0.1) 50%,
      rgba(15, 13, 10, 0.6) 100%
    );
  }

  #hero::after {
    display: none;
  }

  /* Banner below image on mobile - side by side layout */
  .hero-cta {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    padding: 16px;
    gap: 16px;
  }

  .hero-cta .release-art {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
  }

  .hero-cta .release-copy {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
  }

  .hero-cta .release-copy > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .hero-cta .release-title {
    font-size: 14px;
    line-height: 1.3;
  }

  .hero-cta .release-label {
    font-size: 10px;
  }

  .hero-cta .release-copy .button {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
  }

  /* Solid black CTA on mobile to match page background */
  .hero-cta {
    background: var(--bg-dark);
    backdrop-filter: none;
    border-top: none;
    box-shadow: none;
  }

  /* Add divider above Listen section on mobile */
  section#listen .section-inner {
    border-top: 1px solid var(--border-subtle);
    padding-top: 20px;
  }
}

/* Tablet CTA improvements (601px - 1023px) */
@media (min-width: 601px) and (max-width: 1023px) {
  .hero-cta {
    padding: 24px 32px;
    gap: 12px 24px;
  }

  .hero-cta .release-art {
    width: 110px;
    height: 110px;
  }

  .hero-cta .release-title {
    font-size: 17px;
  }

  .hero-cta .button {
    padding: 14px 24px;
    font-size: 17px;
  }
}


/* =========================
   Sections (Music / Shows / Bio / Store)
   ========================= */

section {
  padding: 32px 0;
}

@media (max-width: 600px) {
  section {
    padding: 20px 0;
  }
}

section h2 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--cream);
  position: relative;
  display: inline-block;
}

/* Gold accent underline for section headers */
section h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gold);
}

.music-embed,
.show-list,
#store .section-inner > p,
.bio-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Section divider */
section:not(#hero) .section-inner {
  border-top: 1px solid var(--border-subtle);
  padding-top: 20px;
}

/* Listen / Spotify */
@media (min-width: 601px) {
  section#listen .section-inner {
    border-top: none;
  }
}

.spotify-embed {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.spotify-embed iframe {
  display: block;
}

.listen-links {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}

@media (max-width: 820px) {
  .listen-links {
    flex-direction: column;
    text-align: center;
  }
}

.listen-also {
  margin: 0;
  font-size: 15px;
  color: var(--text-secondary);
}

.listen-also a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(229, 169, 26, 0.3);
  text-underline-offset: 3px;
}

.listen-also a:hover {
  text-decoration-color: var(--gold);
}

/* Shows list */
.show-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.show {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  background: var(--bg-card);
  transition: all 0.2s ease;
}

.show:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
}

/* Calendar-style date badge */
.show-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--gold);
  border-radius: 8px;
  color: var(--bg-dark);
  text-align: center;
  flex-shrink: 0;
}

.show-date__month {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
}

.show-date__day {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  margin-top: 2px;
}

.show-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.show-venue {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.03em;
  color: var(--cream);
}

.show-location {
  color: var(--text-secondary);
  font-size: 15px;
}

.show-cta {
  padding: 14px 24px;
  font-size: 18px;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .show {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 12px 16px;
  }

  .show-date {
    grid-row: 1 / 3;
  }

  .show-details {
    align-self: center;
  }

  .show-cta {
    grid-column: 1 / -1;
    width: 100%;
    padding: 16px 24px;
  }
}

/* Empty state */
.show-empty {
  text-align: center;
  padding: 48px 24px;
  border: 1px dashed var(--border-subtle);
  border-radius: 12px;
  background: var(--bg-card);
}

.show-empty p {
  margin: 0 0 8px;
  color: var(--text-secondary);
}

.show-empty p:last-child {
  margin-bottom: 0;
}

.show-empty a {
  color: var(--gold);
}

/* Bio */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.bio-text p {
  margin: 0 0 16px;
  color: var(--text-secondary);
}

.bio-text a {
  color: var(--gold);
}

.bio-follow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
}

.bio-follow img {
  filter: brightness(0) invert(1);
  transition: filter 0.2s ease;
}

.bio-follow:hover {
  border-color: var(--gold);
  background: var(--bg-card-hover);
}

.bio-follow:hover img {
  filter: brightness(0) saturate(100%) invert(67%) sepia(67%) saturate(588%) hue-rotate(9deg) brightness(98%) contrast(86%);
}

.bio-photo {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--border-subtle);
  background: var(--bg-card);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease;
}

.bio-photo:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.4);
}

.bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 820px) {
  .bio-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .bio-photo {
    order: -1;
  }

  .bio-follow {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}

/* Store reinforcement section */
#store .section-inner {
  display: grid;
  gap: 16px;
}

#store p {
  margin: 0;
  color: var(--text-secondary);
}

/* =========================
   Footer
   ========================= */

.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 20px 0;
  background: rgba(8, 8, 6, 0.95);
}

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

.footer-inner > p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 13px;
}

/* Social links */
.social-links {
  list-style: none;
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  background: var(--bg-card);
  color: var(--cream);
  transition: all 0.2s ease;
}

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

.social-links img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  transition: filter 0.2s ease;
}

.social-links a:hover img {
  filter: brightness(0) saturate(100%) invert(67%) sepia(67%) saturate(588%) hue-rotate(9deg) brightness(98%) contrast(86%);
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
}

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

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
}

/* =========================
   Discography
   ========================= */

.discography-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .discography-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .discography-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* Discography page specific */
.page-section {
  padding-top: 24px;
}

.page-section h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 64px);
  letter-spacing: 0.04em;
  margin: 0 0 20px;
  color: var(--cream);
}

.page-section h1::after {
  display: none;
}

.discography-subhead {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 32px);
  letter-spacing: 0.04em;
  color: var(--gold);
  margin: 48px 0 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

.discography-subhead::after {
  display: none;
}

section#discography.page-section .section-inner {
  border-top: none;
  padding-top: 0;
}

.discography-subhead:first-of-type {
  margin-top: 0;
}

.discography-grid--albums {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.discography-grid--singles {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

@media (min-width: 768px) {
  .discography-grid--albums {
    grid-template-columns: repeat(4, 1fr);
  }

  .discography-grid--singles {
    grid-template-columns: repeat(4, 1fr);
  }
}

.album-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.album-card:hover {
  color: inherit;
}

.album-cover {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--border-subtle);
  background: var(--bg-card);
  transition: all 0.3s var(--ease-out-expo);
}

.album-card:hover .album-cover {
  border-color: var(--gold);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(229, 169, 26, 0.15);
}

.album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out-expo);
}

.album-card:hover .album-cover img {
  transform: scale(1.05);
}

/* Vinyl peek effect on hover */
.album-cover::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, #1a1a1a 30%, #0a0a0a 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%) translateX(-100%);
  opacity: 0;
  transition: all 0.4s var(--ease-out-expo);
  z-index: -1;
}

.album-card:hover .album-cover::after {
  transform: translate(-50%, -50%) translateX(30%);
  opacity: 0.8;
}

.album-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.album-title {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.03em;
  color: var(--cream);
  line-height: 1.2;
}

.album-year {
  font-size: 13px;
  color: var(--text-secondary);
}

.album-badge {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-top: 2px;
}

/* =========================
   Animations
   ========================= */

/* Fade-in on page load */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Staggered entrance for hero */
.hero-cta {
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.2s both;
}

/* Sections fade in */
section:not(#hero) {
  animation: fadeInUp 0.6s var(--ease-out-expo) both;
}

#listen { animation-delay: 0.1s; }
#shows { animation-delay: 0.15s; }
#bio { animation-delay: 0.2s; }
#store { animation-delay: 0.25s; }
#discography { animation-delay: 0.1s; }

/* Logo subtle glow on header */
.logo-img {
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.3));
  transition: filter 0.3s ease;
}

.site-logo:hover .logo-img {
  filter: drop-shadow(0 0 8px rgba(229, 169, 26, 0.5));
}
