/* ============================================================
   CSS CUSTOM PROPERTIES — DJ AudioPhil Brand Palette
   ============================================================ */
:root {
  --clr-bg:      #15161A; /* deep charcoal      — primary dark BG      */
  --clr-bg-alt:  #272A33; /* mid charcoal        — panel / section BG   */
  --clr-text:    #F4F0E6; /* warm off-white      — primary text          */
  --clr-orange:  #D66A2E; /* burnt orange        — primary accent        */
  --clr-gold:    #E3B243; /* golden yellow       — secondary accent      */
  --clr-teal:    #2C8D86; /* muted teal          — cool accent           */
  --clr-muted:   #8C8F9A; /* soft gray           — secondary / labels    */

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;

  --max-w:      1100px;
  --radius:     6px;
  --section-pad: 5rem 1.25rem;
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section     { padding: var(--section-pad); }
.section--alt { background: var(--clr-bg-alt); }
.text-center  { text-align: center; }

.accent-orange { color: var(--clr-orange); }
.accent-gold   { color: var(--clr-gold); }
.accent-teal   { color: var(--clr-teal); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.section-sub {
  color: var(--clr-muted);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.25rem 7rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(44, 141, 134, 0.14) 0%, transparent 60%),
    var(--clr-bg);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 800px;
}

.hero__logo {
  width: min(380px, 75vw);
  filter: drop-shadow(0 0 36px rgba(44, 141, 134, 0.45));
  animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7.5vw, 6rem);
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.hero__sub {
  color: var(--clr-muted);
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.badge {
  display: inline-block;
  background: var(--clr-orange);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.12em;
  padding: 0.3em 1.1em;
  border-radius: 100px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.65em 1.4em;
  border-radius: var(--radius);
  transition: opacity 0.2s, transform 0.15s;
}

.btn--live {
  background: var(--clr-teal);
  color: var(--clr-text);
}
.btn--live:hover { opacity: 0.85; transform: translateY(-2px); }

.btn--placeholder {
  background: var(--clr-bg-alt);
  color: var(--clr-muted);
  border: 1px solid rgba(140, 143, 154, 0.2);
  cursor: default;
  pointer-events: none;
}

/* Animated EQ bars at the bottom of the hero */
.hero__eq {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  padding: 0 0.5rem;
  opacity: 0.3;
}

.hero__eq span {
  flex: 1;
  max-width: 22px;
  border-radius: 2px 2px 0 0;
  background: var(--clr-teal);
  transform-origin: bottom;
  animation: eqBounce 1.2s ease-in-out infinite alternate;
}

/* Stagger heights and durations for each bar */
.hero__eq span:nth-child(1)  { height: 28%; animation-duration: 1.0s; }
.hero__eq span:nth-child(2)  { height: 62%; animation-duration: 1.3s; }
.hero__eq span:nth-child(3)  { height: 44%; animation-duration: 0.9s; background: var(--clr-orange); }
.hero__eq span:nth-child(4)  { height: 80%; animation-duration: 1.5s; }
.hero__eq span:nth-child(5)  { height: 52%; animation-duration: 1.1s; }
.hero__eq span:nth-child(6)  { height: 92%; animation-duration: 0.8s; background: var(--clr-gold); }
.hero__eq span:nth-child(7)  { height: 38%; animation-duration: 1.4s; }
.hero__eq span:nth-child(8)  { height: 74%; animation-duration: 1.2s; background: var(--clr-orange); }
.hero__eq span:nth-child(9)  { height: 58%; animation-duration: 1.0s; }
.hero__eq span:nth-child(10) { height: 86%; animation-duration: 0.75s; }
.hero__eq span:nth-child(11) { height: 34%; animation-duration: 1.6s; background: var(--clr-gold); }
.hero__eq span:nth-child(12) { height: 70%; animation-duration: 1.1s; }
.hero__eq span:nth-child(13) { height: 48%; animation-duration: 0.95s; background: var(--clr-orange); }
.hero__eq span:nth-child(14) { height: 88%; animation-duration: 1.35s; }
.hero__eq span:nth-child(15) { height: 42%; animation-duration: 1.5s; }
.hero__eq span:nth-child(16) { height: 65%; animation-duration: 0.85s; background: var(--clr-gold); }
.hero__eq span:nth-child(17) { height: 77%; animation-duration: 1.0s; }
.hero__eq span:nth-child(18) { height: 33%; animation-duration: 1.45s; background: var(--clr-orange); }
.hero__eq span:nth-child(19) { height: 56%; animation-duration: 1.2s; }
.hero__eq span:nth-child(20) { height: 45%; animation-duration: 0.9s; }
.hero__eq span:nth-child(21) { height: 72%; animation-duration: 1.15s; background: var(--clr-gold); }
.hero__eq span:nth-child(22) { height: 30%; animation-duration: 1.4s; }
.hero__eq span:nth-child(23) { height: 84%; animation-duration: 0.8s; background: var(--clr-orange); }
.hero__eq span:nth-child(24) { height: 50%; animation-duration: 1.3s; }
.hero__eq span:nth-child(25) { height: 66%; animation-duration: 1.05s; }
.hero__eq span:nth-child(26) { height: 39%; animation-duration: 1.55s; background: var(--clr-gold); }
.hero__eq span:nth-child(27) { height: 79%; animation-duration: 0.85s; }
.hero__eq span:nth-child(28) { height: 55%; animation-duration: 1.25s; background: var(--clr-orange); }
.hero__eq span:nth-child(29) { height: 43%; animation-duration: 1.0s; }
.hero__eq span:nth-child(30) { height: 68%; animation-duration: 0.95s; }

@keyframes eqBounce {
  from { transform: scaleY(0.25); }
  to   { transform: scaleY(1); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 700px) {
  .about__grid { grid-template-columns: 3fr 2fr; }
}

.about__text .section-title { margin-bottom: 1.25rem; }

.about__bio {
  color: var(--clr-muted);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.about__bio em {
  color: var(--clr-text);
  font-style: normal;
  font-weight: 600;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.chip {
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-teal);
  color: var(--clr-teal);
  padding: 0.3em 0.9em;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.about__logo-wrap {
  display: flex;
  justify-content: center;
}

.about__logo {
  width: min(280px, 85vw);
  border: 2px solid var(--clr-teal);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--clr-bg-alt);
  box-shadow: 0 0 48px rgba(44, 141, 134, 0.2);
}

/* On mobile, put the logo above the text */
@media (max-width: 699px) {
  .about__logo-wrap { order: -1; }
}

/* ============================================================
   THE MUSIC
   ============================================================ */
.music__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.music__card {
  background: var(--clr-bg);
  border-top: 3px solid var(--clr-gold);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: transform 0.2s;
}
.music__card:hover { transform: translateY(-5px); }

.music__genre {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.05em;
  color: var(--clr-gold);
  margin-bottom: 0.6rem;
}

.music__artists {
  color: var(--clr-muted);
  font-size: 0.875rem;
  line-height: 1.65;
}

/* ============================================================
   WHAT TO EXPECT (SEGMENTS)
   ============================================================ */
.segments__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.segment-card {
  background: var(--clr-bg-alt);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border-left: 3px solid var(--clr-orange);
  transition: transform 0.2s;
}
.segment-card:hover { transform: translateY(-5px); }

.segment-card__icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.segment-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.segment-card__desc {
  color: var(--clr-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ============================================================
   EPISODE LINEUP
   ============================================================ */
.episodes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.ep-card {
  background: var(--clr-bg);
  border-top: 3px solid var(--clr-teal);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.2s;
}
.ep-card:hover { transform: translateY(-5px); }

.ep-card__num {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--clr-orange);
}

.ep-card__title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.ep-card__artists {
  color: var(--clr-muted);
  font-size: 0.8rem;
  line-height: 1.6;
  flex: 1;
}

.ep-card__badge {
  display: inline-block;
  border: 1px solid var(--clr-teal);
  color: var(--clr-teal);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2em 0.75em;
  border-radius: 100px;
  align-self: flex-start;
  margin-top: 0.25rem;
}

/* ============================================================
   FIND ME ON (PLATFORMS)
   ============================================================ */
.platforms__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1rem;
}

.platform-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  padding: 1.25rem 2rem;
  border-radius: var(--radius);
  min-width: 110px;
  transition: transform 0.2s, opacity 0.2s;
}
.platform-link i { font-size: 2rem; }

.platform-link small {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-muted);
}

.platform-link--live {
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-teal);
  color: var(--clr-text);
}
.platform-link--live:hover { transform: translateY(-5px); }

.platform-link--soon {
  background: var(--clr-bg-alt);
  border: 1px solid rgba(140, 143, 154, 0.2);
  color: var(--clr-muted);
  cursor: default;
  opacity: 0.45;
}

/* ============================================================
   LIVE APPEARANCES (VENUE)
   ============================================================ */
.venue__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 700px) {
  .venue__grid { grid-template-columns: 3fr 2fr; }
}

.venue__text .section-sub {
  margin-bottom: 1.5rem;
}

.venue__address {
  font-style: normal;
  color: var(--clr-muted);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.venue__address i {
  color: var(--clr-orange);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.venue__maps-btn {
  display: inline-flex;
}

.venue__next-wrap {
  display: flex;
  justify-content: center;
}

.venue__next-card {
  background: var(--clr-bg-alt);
  border-left: 3px solid var(--clr-gold);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.venue__next-icon {
  font-size: 1.75rem;
  color: var(--clr-gold);
  margin-bottom: 0.25rem;
}

.venue__next-label {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--clr-text);
}

.venue__next-status {
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-muted);
}

.venue__next-hint {
  font-size: 0.8rem;
  color: var(--clr-muted);
  opacity: 0.65;
  margin-top: 0.25rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--clr-bg-alt);
  border-top: 1px solid rgba(140, 143, 154, 0.12);
  padding: 3rem 1.25rem;
}

.footer__logo {
  width: min(110px, 40vw);
  margin: 0 auto 1.25rem;
  opacity: 0.65;
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.footer__social a {
  color: var(--clr-muted);
  transition: color 0.2s;
}
.footer__social a:hover { color: var(--clr-teal); }

.footer__copy {
  color: var(--clr-muted);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1.25rem;
  margin-bottom: 1.25rem;
}

.footer__nav-link {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--clr-muted);
  transition: color 0.15s;
}

.footer__nav-link:hover { color: var(--clr-text); }

/* ============================================================
   MIXES (MIXCLOUD)
   ============================================================ */
.mixes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .mixes__grid { grid-template-columns: 1fr 1fr; }
}

.mix-card {
  background: var(--clr-bg-alt);
  border-top: 3px solid var(--clr-gold);
  border-radius: var(--radius);
  padding: 1.25rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.mix-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.mix-card__date {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--clr-gold);
}

.mix-card__badge {
  display: inline-block;
  border: 1px solid var(--clr-gold);
  color: var(--clr-gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2em 0.75em;
  border-radius: 100px;
}

.mix-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.mix-card__desc {
  color: var(--clr-muted);
  font-size: 0.8rem;
  line-height: 1.6;
}

.mix-card__embed {
  display: block;
  border-radius: 4px;
  border: none;
  width: 100%;
  margin-top: 0.25rem;
}

.mix-card__link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--clr-gold);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.2s;
  align-self: flex-start;
}
.mix-card__link:hover { text-decoration-color: var(--clr-gold); }

/* ============================================================
   BREWERS CASK SETLISTS
   ============================================================ */
.setlists__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .setlists__grid { grid-template-columns: 1fr 1fr; }
}

.setlist-card {
  background: var(--clr-bg-alt);
  border-top: 3px solid var(--clr-orange);
  border-radius: var(--radius);
  padding: 1.25rem 1.25rem 1rem;
}

.setlist-card--hidden { display: none; }

.setlist-card__date {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--clr-orange);
  margin-bottom: 0.75rem;
}

.setlist-card__embed {
  display: block;
  border-radius: 4px;
  border: none;
  width: 100%;
}

.setlists__toggle-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--clr-orange);
  color: var(--clr-orange);
}
.btn--outline:hover {
  background: var(--clr-orange);
  color: var(--clr-bg);
  transform: translateY(-2px);
}

/* ============================================================
   SITE NAV
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(21, 22, 26, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(140, 143, 154, 0.12);
}

.site-nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-nav__brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-nav__logo {
  height: 28px;
  width: auto;
  opacity: 0.8;
  filter: brightness(1.2);
}

.site-nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
}

.site-nav__link {
  display: block;
  padding: 0.35em 0.7em;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--clr-muted);
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}

.site-nav__link:hover {
  color: var(--clr-text);
  background: rgba(140, 143, 154, 0.1);
}

.site-nav__link--active {
  color: var(--clr-orange);
}

/* Mobile hamburger */
.site-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-shrink: 0;
}

.site-nav__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

@media (max-width: 599px) {
  .site-nav__toggle { display: flex; }

  .site-nav__links {
    display: none;
    position: absolute;
    top: 52px;
    left: 0;
    right: 0;
    background: rgba(21, 22, 26, 0.98);
    border-bottom: 1px solid rgba(140, 143, 154, 0.12);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 1rem;
    gap: 0.15rem;
  }
  .site-nav__links.is-open { display: flex; }

  .site-nav__link { padding: 0.65em 0.75em; }

  .site-nav__toggle[aria-expanded="true"] .site-nav__toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .site-nav__toggle[aria-expanded="true"] .site-nav__toggle-bar:nth-child(2) {
    opacity: 0;
  }
  .site-nav__toggle[aria-expanded="true"] .site-nav__toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ============================================================
   WHAT'S HAPPENING NOW
   ============================================================ */
.now__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 700px) {
  .now__grid { grid-template-columns: 1fr 1fr; }
}

.now__card {
  background: var(--clr-bg-alt);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.now__card--mix   { border-top: 3px solid var(--clr-gold); }
.now__card--venue { border-top: 3px solid var(--clr-orange); }

.now__card-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.now__card--mix .now__card-label   { color: var(--clr-gold); }
.now__card--venue .now__card-label { color: var(--clr-orange); }

.now__card-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.now__card-date {
  font-size: 0.82rem;
  color: var(--clr-muted);
  margin-top: -0.25rem;
}

.now__card-desc {
  color: var(--clr-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.now__card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.25rem;
  flex-wrap: wrap;
}

/* Adjust the venue next-card when embedded inside now */
.now__card--venue .venue__next-card {
  max-width: none;
  border-left-color: var(--clr-orange);
  background: rgba(21, 22, 26, 0.4);
}

/* ============================================================
   PHOTO GALLERY
   ============================================================ */
.gallery__filter {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.gallery__filter-btn {
  background: var(--clr-bg-alt);
  border: 1px solid rgba(140, 143, 154, 0.2);
  color: var(--clr-muted);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.06em;
  padding: 0.4em 1.1em;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.gallery__filter-btn:hover {
  color: var(--clr-text);
  border-color: rgba(140, 143, 154, 0.5);
}

.gallery__filter-btn.is-active {
  background: var(--clr-orange);
  border-color: var(--clr-orange);
  color: #fff;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--clr-bg-alt);
  aspect-ratio: 4 / 3;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery__item:hover img { transform: scale(1.04); }

.gallery__caption {
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(transparent, rgba(21, 22, 26, 0.88));
  padding: 1.5rem 0.85rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  transform: translateY(100%);
  transition: transform 0.25s;
}

.gallery__item:hover .gallery__caption { transform: translateY(0); }

.gallery__caption-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--clr-text);
}

.gallery__caption-date {
  font-size: 0.75rem;
  color: var(--clr-muted);
}

.gallery__empty {
  text-align: center;
  padding: 4rem 1.25rem;
  color: var(--clr-muted);
}

.gallery__empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.gallery__empty-text {
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============================================================
   FREQUENTLY PLAYED RECORDS
   ============================================================ */
.records__cta {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.records__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.record-card {
  background: var(--clr-bg-alt);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.2s;
}
.record-card:hover { transform: translateY(-4px); }

.record-card__cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--clr-bg);
  flex-shrink: 0;
}

.record-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.record-card:hover .record-card__cover img { transform: scale(1.04); }

.record-card__cover--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--clr-muted);
  opacity: 0.3;
}

.record-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-top: 3px solid var(--clr-gold);
  flex: 1;
}

.record-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.record-card__genre {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  background: transparent;
}

.record-card__year {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--clr-muted);
}

.record-card__album {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.record-card__artist {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-text);
}

.record-card__label {
  font-size: 0.78rem;
  color: var(--clr-muted);
  letter-spacing: 0.04em;
}

.record-card__notes {
  font-size: 0.82rem;
  color: var(--clr-muted);
  line-height: 1.55;
  border-top: 1px solid rgba(140, 143, 154, 0.15);
  padding-top: 0.6rem;
  margin-top: 0.4rem;
  font-style: italic;
}
