/* ============================================================
   AFRO PULSE & KOOL RUNNINGS 2 — PROFESSIONAL REDESIGN
   Editorial · Refined · Photography-Led
   ============================================================ */

/* ===== DESIGN TOKENS ===== */
:root {
  /* Backgrounds — warm near-black */
  --bg-0: #0d0c0b;
  --bg-1: #131210;
  --bg-2: #1a1917;
  --bg-3: #222120;

  /* Typography */
  --white:  #f2ede8;
  --grey-1: #b8b3ac;
  --grey-2: #7a7670;
  --grey-3: #3e3c3a;

  /* Accent — warm gold, used sparingly */
  --gold:       #c9a55a;
  --gold-light: #e2c07a;
  --gold-dim:   rgba(201, 165, 90, 0.18);
  --gold-line:  rgba(201, 165, 90, 0.35);

  /* KR2 accent — steel blue, used sparingly */
  --steel:       #5d90b8;
  --steel-light: #80afd0;
  --steel-dim:   rgba(93, 144, 184, 0.15);
  --steel-line:  rgba(93, 144, 184, 0.3);

  /* Borders */
  --rule:   rgba(255, 255, 255, 0.07);
  --rule-2: rgba(255, 255, 255, 0.12);

  /* Fonts */
  --sans:    'Outfit', sans-serif;
  --serif:   'Playfair Display', serif;

  /* Spacing */
  --section: 110px;
  --max:     1160px;
  --pad:     48px;

  /* Easing */
  --ease: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--bg-0);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== TYPOGRAPHY UTILITIES ===== */
.eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-2);
  margin-bottom: 14px;
}

.eyebrow-gold { color: var(--gold); }
.eyebrow-steel { color: var(--steel); }

/* ===== BUTTONS — Clean, editorial fill-to-outline ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
}

.btn-primary { color: #0d0c0b; }

.afro-btn {
  background: var(--gold);
  border-color: var(--gold);
}
.afro-btn:hover {
  background: transparent;
  color: var(--gold);
}

.kool-btn {
  background: var(--steel);
  border-color: var(--steel);
  color: #fff;
}
.kool-btn:hover {
  background: transparent;
  color: var(--steel-light);
  border-color: var(--steel);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--grey-1);
}
.btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
}

.btn-sm { padding: 10px 22px; font-size: 0.73rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* Remove old pill tag — now just small caps label */
.section-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-2);
  display: block;
  margin-bottom: 14px;
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

/* Replace gradient text with gold accent */
.gradient-text {
  color: var(--gold);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}

.gradient-text-kool {
  color: var(--steel-light);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}

.section-subtitle {
  color: var(--grey-1);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 300;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 5px 14px;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  padding: 2px 4px;
  transition: color 0.2s;
}
.lang-btn.active { color: var(--gold); }
.lang-btn:hover:not(.active) { color: rgba(255,255,255,0.7); }
.lang-sep {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.2);
  user-select: none;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--ease-slow), border-color var(--ease-slow);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(13, 12, 11, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--rule);
}

.nav-container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.logo-afro {
  color: var(--gold);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}

.logo-divider { color: var(--white); font-weight: 300; }

.logo-kool {
  color: var(--white);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--grey-2);
  border-radius: 0;
  letter-spacing: 0.02em;
  transition: color var(--ease);
  background: none;
}

.nav-link:hover { color: var(--white); }

.nav-link.nav-cta {
  background: var(--gold);
  color: #0d0c0b !important;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 2px;
  margin-left: 8px;
  box-shadow: none;
  border: 1px solid var(--gold);
}

.nav-link.nav-cta:hover {
  background: transparent;
  color: var(--gold) !important;
  transform: none;
  box-shadow: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: var(--ease);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Kill particles */
.hero-particles,
.particle { display: none; }

.hero-switcher {
  position: absolute;
  top: 84px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  background: rgba(13, 12, 11, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--rule-2);
  border-radius: 2px;
  overflow: hidden;
}

.switch-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: none;
  background: transparent;
  color: var(--grey-2);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--ease), background var(--ease);
  border-radius: 0;
}

.switch-btn.active {
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.switch-btn:not(.active):hover { color: var(--grey-1); }

.switch-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.afro-dot { background: var(--gold); }
.kool-dot { background: var(--steel); }

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 0 8% 10%;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease-slow);
  z-index: 5;
}

.hero-content.active {
  opacity: 1;
  pointer-events: all;
}

.hero-image-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  filter: brightness(0.55) saturate(0.7);
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.hero-content.active .hero-image-bg {
  transform: scale(1);
}

/* Clean editorial gradient — not the exaggerated AI one */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 12, 11, 0.92) 0%,
    rgba(13, 12, 11, 0.45) 45%,
    rgba(13, 12, 11, 0.15) 100%
  );
}

.kool-overlay {
  background: linear-gradient(
    to top,
    rgba(8, 12, 18, 0.93) 0%,
    rgba(8, 12, 18, 0.45) 45%,
    rgba(8, 12, 18, 0.15) 100%
  );
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content.active .hero-text {
  animation: heroIn 0.65s ease both;
}

/* Replace pill badge with clean eyebrow */
.hero-badge {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 0;
  border-radius: 0;
  background: none;
  border: none;
}

.afro-badge { color: var(--gold); }
.kool-badge { color: var(--steel-light); }

.hero-title {
  font-family: var(--serif);
  font-size: clamp(4.5rem, 13vw, 10rem);
  font-weight: 700;
  line-height: 0.88;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  letter-spacing: -0.03em;
}

.title-line {
  display: block;
  color: var(--white);
}

/* Replace rainbow gradients with single clean accent */
.accent-afro {
  color: var(--gold-light);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  filter: none;
}

.accent-kool {
  color: var(--steel-light);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  filter: none;
}

.hero-subtitle {
  color: rgba(242, 237, 232, 0.7);
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  line-height: 1.75;
  margin-bottom: 18px;
  max-width: 480px;
  font-weight: 300;
}

.hero-members-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(242, 237, 232, 0.35);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.hero-members-preview .sep { opacity: 0.4; }

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 8%;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(242, 237, 232, 0.3);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 18px;
  height: 18px;
  border-right: 1px solid rgba(242, 237, 232, 0.3);
  border-bottom: 1px solid rgba(242, 237, 232, 0.3);
  transform: rotate(45deg);
  animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
  0%, 100% { opacity: 0.3; transform: rotate(45deg) translateY(0); }
  50% { opacity: 0.7; transform: rotate(45deg) translateY(4px); }
}

/* ===== BANDS SECTION ===== */
.bands-section {
  padding: var(--section) 0;
  background: var(--bg-1);
}

.bands-section > .section-header {
  padding: 0 var(--pad);
}

.band-profile {
  max-width: var(--max);
  margin: 0 auto 96px;
  padding: 0 var(--pad);
}

.band-profile:last-child { margin-bottom: 0; }

/* Thin top rule separating profiles */
.band-profile + .band-profile {
  padding-top: 80px;
  border-top: 1px solid var(--rule);
}

.band-profile-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.band-profile-reverse .band-profile-inner { direction: rtl; }
.band-profile-reverse .band-profile-inner > * { direction: ltr; }

.band-profile-image-wrap {
  display: flex;
  flex-direction: column;
}

.band-profile-image-wrap .listen-now-badge {
  align-self: flex-start;
  margin-bottom: 14px;
}

.band-profile-image-wrap .listen-panel.open {
  margin-bottom: 14px;
}

.band-profile-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.band-profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
  transition: transform 0.7s ease, filter 0.5s ease;
}

.band-profile-image:hover img {
  transform: scale(1.03);
  filter: saturate(1);
}

/* Replace glowing pill badge with clean text overlay */
.band-img-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  backdrop-filter: none;
}

.afro-img-badge { color: var(--gold); }
.kool-img-badge { color: var(--steel-light); }
.badge-icon { display: none; } /* remove emoji icon */

/* Replace pill tag with eyebrow line */
.band-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
}

.band-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  flex-shrink: 0;
}

.afro-tag { color: var(--gold); }
.afro-tag::before { background: var(--gold); }

.kool-tag { color: var(--steel-light); }
.kool-tag::before { background: var(--steel); }

/* Section tag same treatment */
.event-band-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: inline-block;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
}

.band-name {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* Genre pills — refined into plain text tags */
.band-genre-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.genre-pill {
  padding: 4px 12px;
  background: transparent;
  border: 1px solid var(--rule-2);
  border-radius: 1px;
  font-size: 0.72rem;
  color: var(--grey-2);
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: border-color var(--ease), color var(--ease);
}

.genre-pill:hover {
  border-color: var(--gold-line);
  color: var(--gold);
  background: none;
}

.kool-pill:hover {
  border-color: var(--steel-line);
  color: var(--steel-light);
  background: none;
}

.band-description {
  color: var(--grey-1);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.95rem;
  font-weight: 300;
}

/* Stats — replace glowing number box with clean inline list */
.band-stats {
  display: flex;
  gap: 0;
  margin: 32px 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 8px;
  padding: 20px 0;
  border-right: 1px solid var(--rule);
  padding-left: 24px;
}

.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}

.kool-stat .stat-number { color: var(--white); }

.stat-label {
  font-size: 0.72rem;
  color: var(--grey-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ===== ABOUT / MEMBERS ===== */
.about-section {
  position: relative;
  padding: var(--section) var(--pad);
  background: var(--bg-0);
  overflow: hidden;
}

.about-bg-texture { display: none; }
.about-section .section-header { position: relative; z-index: 1; }

.members-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  min-width: 0;
}

.member-card[data-member="shantel"],
.member-card[data-member="lee"] {
  grid-column: span 3;
}

.member-card[data-member="jomo"],
.member-card[data-member="david"],
.member-card[data-member="manuel"] {
  grid-column: span 2;
}

.member-card {
  background: var(--bg-0);
  border: none;
  border-radius: 0;
  overflow: hidden;
  transition: background var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

/* Remove glow pseudo-element entirely */
.member-card::before { display: none; }

.member-card:hover {
  background: var(--bg-2);
  transform: none;
  box-shadow: none;
}

.member-card[data-member="lee"]:hover { background: var(--bg-2); }

/* Hover Bio Overlay */
.member-bio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 12, 11, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--ease);
  z-index: 2;
}

.member-card:hover .member-bio-overlay {
  opacity: 1;
}

.view-bio-btn {
  padding: 8px 16px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  border: 1px solid var(--gold-line);
  background: rgba(19, 18, 16, 0.9);
  border-radius: 2px;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}

.member-card:hover .view-bio-btn {
  border-color: var(--gold);
  color: var(--gold-light);
  background: var(--bg-0);
}

.member-photo-wrap {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
}

.member-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: none;
  transition: transform 0.6s ease;
}

.member-card:hover .member-photo {
  transform: scale(1.04);
  filter: none;
}

/* Remove color glow overlays */
.member-photo-glow { display: none; }

/* Band badges — clean, minimal */
.member-bands {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mb-tag {
  padding: 3px 8px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 1px;
}

.afro-mb {
  background: var(--gold);
  color: #0d0c0b;
}

.kool-mb {
  background: var(--steel);
  color: #fff;
}

.member-info { padding: 20px; }

.member-name {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

/* Role badges — remove pill styling */
.member-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 12px;
}

.role-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-2);
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  margin-right: 10px;
}

/* Remove emoji from roles via pseudo-content workaround — handled by CSS font rules */

.member-bio {
  color: var(--grey-1);
  font-size: 0.85rem;
  line-height: 1.75;
  margin-bottom: 12px;
  font-weight: 300;
}

.member-instruments {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.member-instruments span {
  font-size: 0.68rem;
  color: var(--grey-3);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-right: 10px;
}

/* ===== REPERTOIRE ===== */
.repertoire-section {
  padding: var(--section) var(--pad);
  background: var(--bg-1);
}

.repertoire-section .section-header {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

/* Replace pill tabs with clean underline tabs */
.rep-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--rule);
}

.rep-tab {
  padding: 12px 28px;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  background: transparent;
  color: var(--grey-2);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--ease), border-color var(--ease);
  border-radius: 0;
}

.rep-tab:hover { color: var(--white); }

.rep-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
  background: transparent;
}

.rep-content {
  display: none;
  max-width: var(--max);
  margin: 0 auto;
  animation: fadeUp 0.4s ease both;
}

.rep-content.active { display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Replace tinted banner with clean editorial bar */
.rep-highlight-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 24px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--rule);
  background: none;
  border-radius: 0;
  border-top: none;
  border-left: none;
  border-right: none;
}

.afro-rep-banner { border-bottom-color: var(--gold-line); }
.kool-rep-banner { border-bottom-color: var(--steel-line); }

.rep-banner-text h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 4px;
}

.rep-banner-text p {
  color: var(--grey-1);
  font-size: 0.88rem;
  max-width: 500px;
  font-weight: 300;
}

.rep-banner-icon { display: none; }

/* Genre cards — flat, clean */
.genre-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.genre-card {
  background: var(--bg-1);
  border: none;
  border-radius: 0;
  padding: 28px 24px;
  transition: background var(--ease);
  position: relative;
  overflow: hidden;
}

/* Subtle left accent line instead of top bar */
.genre-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 2px;
  background: var(--genre-color, var(--gold));
  opacity: 0;
  transition: opacity var(--ease);
}

.genre-card:hover {
  background: var(--bg-2);
  transform: none;
  box-shadow: none;
  border-color: transparent;
}

.genre-card:hover::before { opacity: 0.7; }

.genre-icon { display: none; }

.genre-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0;
}

.song-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.song-list li {
  color: var(--grey-1);
  font-size: 0.83rem;
  padding-left: 12px;
  position: relative;
  font-weight: 300;
  line-height: 1.5;
}

.song-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--genre-color, var(--gold));
  font-size: 0.7rem;
  top: 4px;
}

/* ===== MEDIA ===== */
.media-section {
  padding: var(--section) var(--pad);
  background: var(--bg-0);
}

.media-section .section-header {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.media-content {
  display: none;
  max-width: var(--max);
  margin: 0 auto;
  animation: fadeUp 0.4s ease both;
}

.media-content.active { display: block; }

.media-sub-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--rule);
}

.media-sub-tab {
  padding: 10px 20px;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  background: transparent;
  color: var(--grey-2);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--ease), border-color var(--ease);
  border-radius: 0;
}

.media-sub-tab.active {
  color: var(--white);
  border-bottom-color: var(--white);
  background: transparent;
}

.media-panel {
  display: none;
  animation: fadeUp 0.35s ease both;
}

.media-panel.active { display: block; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  margin-bottom: 24px;
}

.video-embed-card {
  border-radius: 0;
  overflow: hidden;
  background: var(--bg-1);
  border: none;
}

.video-placeholder {
  position: relative;
  aspect-ratio: 16/9;
  cursor: pointer;
  overflow: hidden;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) brightness(0.85);
  transition: filter 0.4s ease, transform 0.6s ease;
}

.video-placeholder:hover .video-thumb {
  transform: scale(1.04);
  filter: grayscale(0%) brightness(1);
}

.play-btn-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background var(--ease);
}

.video-placeholder:hover .play-btn-overlay { background: rgba(0,0,0,0.15); }

.play-icon {
  width: 52px;
  height: 52px;
  border: 1.5px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  padding-left: 3px;
  transition: border-color var(--ease), background var(--ease);
}

.video-placeholder:hover .play-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: #0d0c0b;
}

.video-title-overlay {
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-weight: 500;
  text-align: center;
  padding: 0 16px;
  letter-spacing: 0.02em;
}

.video-embed-card iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}

.media-cta {
  text-align: center;
  padding: 20px;
  color: var(--grey-2);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

/* Photo grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 1px;
  background: var(--rule);
}

.photo-card {
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  background: var(--bg-1);
}

.photo-card.tall { grid-row: span 2; }

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) saturate(0.9);
  transition: transform 0.6s ease, filter 0.4s ease;
}

.photo-card:hover img {
  transform: scale(1.05);
  filter: grayscale(0%) saturate(1.1);
}

.photo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--ease);
}

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

.photo-overlay span {
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ===== EVENTS ===== */
.events-section {
  display: none !important; /* Hidden for now */
  padding: var(--section) var(--pad);
  background: var(--bg-1);
}

.events-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--rule);
}

/* Event card — clean list rows */
.event-card {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 0;
  padding: 0;
  background: var(--bg-1);
  border: none;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  transition: background var(--ease);
}

.event-card:last-child { border-bottom: none; }

.event-card:hover {
  background: var(--bg-2);
  transform: none;
  box-shadow: none;
}

.featured-event {
  background: var(--bg-2);
}

.event-date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: transparent;
  border: none;
  border-right: 1px solid var(--rule);
  border-radius: 0;
  height: 100%;
  min-height: 90px;
}

.kool-date { background: transparent; border-color: var(--rule); }

.event-month {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--grey-2);
  display: block;
  margin-bottom: 2px;
}

.event-day {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}

.event-details {
  padding: 20px 24px;
}

.event-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}

.event-venue {
  font-size: 0.78rem;
  color: var(--grey-2);
  margin-bottom: 3px;
}

.event-desc {
  font-size: 0.82rem;
  color: var(--grey-1);
  font-weight: 300;
}

.event-action {
  padding: 20px 24px;
}

.events-cta-box {
  text-align: center;
  padding: 52px 40px;
  background: var(--bg-0);
  border: none;
  border-top: 1px solid var(--rule);
  border-radius: 0;
}

.events-cta-icon { display: none; }

.events-cta-box h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.events-cta-box p {
  color: var(--grey-1);
  max-width: 480px;
  margin: 0 auto 28px;
  font-size: 0.9rem;
  line-height: 1.75;
  font-weight: 300;
}

/* ===== WHY SECTION ===== */
.why-section {
  position: relative;
  padding: var(--section) var(--pad);
  background: var(--bg-0);
  overflow: hidden;
}

.why-bg { display: none; }

.why-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.why-card {
  background: var(--bg-0);
  border: none;
  border-radius: 0;
  padding: 36px 28px;
  transition: background var(--ease);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease-slow);
}

.why-card:hover {
  background: var(--bg-2);
  transform: none;
  box-shadow: none;
}

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

.why-icon { display: none; }

.why-card h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p {
  color: var(--grey-1);
  font-size: 0.85rem;
  line-height: 1.8;
  font-weight: 300;
}

/* Small gold number for each card */
.why-card::before {
  content: counter(why-counter);
  counter-increment: why-counter;
  display: block;
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--grey-3);
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1;
}

.why-grid { counter-reset: why-counter; }

/* ===== CONTACT ===== */
.contact-section {
  position: relative;
  padding: var(--section) var(--pad);
  background: var(--bg-1);
  overflow: hidden;
}

.contact-bg-overlay { display: none; }

.contact-container {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.contact-info-card {
  background: var(--bg-0);
  border: 1px solid var(--rule);
  border-radius: 0;
  padding: 32px;
  height: fit-content;
  position: sticky;
  top: 90px;
}

.contact-info-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}

.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-icon { display: none; }

.contact-detail strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--grey-2);
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-detail p, .contact-detail a {
  font-size: 0.88rem;
  color: var(--grey-1);
  line-height: 1.5;
  font-weight: 300;
}

.contact-detail a:hover { color: var(--gold); }

/* Make contact details work without the icon */
.contact-detail { flex-direction: column; gap: 4px; }

.social-links {
  display: flex;
  gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid var(--rule-2);
  border-radius: 1px;
  color: var(--grey-2);
  transition: border-color var(--ease), color var(--ease);
}

.social-link:hover {
  border-color: var(--gold-line);
  color: var(--gold);
  background: none;
  transform: none;
}

/* Contact Form */
.contact-form {
  background: var(--bg-0);
  border: 1px solid var(--rule);
  border-radius: 0;
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

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

.form-group.full-width { margin-bottom: 16px; }

.form-group label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--grey-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-1);
  border: 1px solid var(--rule-2);
  border-radius: 0;
  padding: 12px 14px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.9rem;
  transition: border-color var(--ease);
  outline: none;
  -webkit-appearance: none;
  font-weight: 300;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--bg-1);
  box-shadow: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey-3); }

.form-group select option {
  background: var(--bg-1);
  color: var(--white);
}

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

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: var(--grey-1);
  font-size: 0.83rem;
  font-weight: 300;
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border-radius: 0;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--gold);
}

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 14px 18px;
  background: transparent;
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 0;
  color: #6fcba8;
  font-size: 0.85rem;
}

.form-success.visible { display: flex; }
.success-icon { font-size: 1rem; }

/* ===== FOOTER ===== */
.footer {
  background: #080807;
  border-top: 1px solid var(--rule);
  padding: 56px var(--pad) 28px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.footer-tagline {
  color: var(--grey-3);
  font-size: 0.83rem;
  margin-bottom: 22px;
  line-height: 1.6;
  font-weight: 300;
}

.footer-social { display: flex; gap: 8px; }

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 1px;
  color: var(--grey-3);
  transition: border-color var(--ease), color var(--ease);
}

.footer-social-link:hover {
  color: var(--gold);
  border-color: var(--gold-line);
  background: none;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-2);
  margin-bottom: 14px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  color: var(--grey-3);
  font-size: 0.83rem;
  transition: color var(--ease);
  font-weight: 300;
}

.footer-col a:hover {
  color: var(--white);
  padding-left: 0;
}

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p { color: var(--grey-3); font-size: 0.78rem; font-weight: 300; }

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
}

.lightbox-overlay.open { opacity: 1; pointer-events: all; }

.lightbox-inner {
  max-width: 880px;
  width: 92%;
  position: relative;
}

.lightbox-inner iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: 1px solid var(--rule-2);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-1);
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color var(--ease), color var(--ease);
  border-radius: 0;
}

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

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: var(--grey-3); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--grey-2); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root { --pad: 32px; }

  .band-profile-inner { grid-template-columns: 1fr; gap: 36px; }
  .band-profile-reverse .band-profile-inner { direction: ltr; }

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

  .contact-container { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
}

@media (max-width: 768px) {
  :root { --section: 72px; --pad: 24px; }

  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0; right: 0;
    background: rgba(8, 8, 7, 0.98);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 2px;
    border-bottom: 1px solid var(--rule);
    z-index: 999;
  }

  .nav-links.open { display: flex; }
  .nav-link { padding: 11px 12px; font-size: 0.9rem; width: 100%; }
  .nav-link.nav-cta { margin-left: 0; margin-top: 8px; text-align: center; }

  .hero-switcher { width: calc(100% - 48px); }
  .hero-content { padding: 0 24px 80px; }
  .hero-title { font-size: clamp(3.5rem, 16vw, 5.5rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .hero-subtitle { display: none; }
  .hero-members-preview { display: none; }

  .members-grid { grid-template-columns: repeat(6, 1fr); }
  .member-card { grid-column: span 3 !important; }
  .genre-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-card.tall { grid-row: span 1; }
  .why-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .event-card { grid-template-columns: 70px 1fr; grid-template-rows: auto auto; }
  .event-action { grid-column: 1 / -1; padding: 0 24px 20px; }

  .rep-highlight-banner { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
  .members-grid { grid-template-columns: repeat(6, 1fr); }
  .member-card { grid-column: span 6 !important; }
  .genre-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .hero-switcher { flex-direction: row; }
  .hero-switcher .switch-btn { padding: 9px 14px; font-size: 0.68rem; }
  .band-stats { flex-direction: column; gap: 0; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--rule); padding: 14px 0; }
  .stat-item:last-child { border-bottom: none; }
}

/* ===== ARTIST BIOGRAPHY LAYOUT ===== */
.bio-page-nav {
  border-bottom: 1px solid var(--rule);
}

.bio-back-bar {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px var(--pad);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.bio-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-2);
  transition: color var(--ease);
}

.bio-back-link:hover {
  color: var(--gold);
}

/* Full-width landscape band photo (bio-afropulse.html) */
.band-bio-hero-photo {
  width: 100%;
  background: var(--bg-1);
  border-bottom: 1px solid var(--rule);
}

.band-bio-hero-photo img {
  width: 100%;
  display: block;
  height: auto;
}

.bio-container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px var(--pad) var(--section);
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
}

.bio-sticky-sidebar {
  position: sticky;
  top: 120px;
  align-self: start;
}

.bio-portrait-frame {
  border: 1px solid var(--rule);
  padding: 12px;
  background: var(--bg-1);
  margin-bottom: 32px;
  border-radius: 2px;
}

.bio-portrait-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 2/3;
  object-fit: cover;
  object-position: top;
  border-radius: 1px;
}

.bio-quick-facts {
  border-top: 1px solid var(--rule);
  padding-top: 24px;
}

.bio-facts-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 400;
}

.bio-fact-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--rule-2);
  font-size: 0.8rem;
}

.bio-fact-item:last-child {
  border-bottom: none;
}

.bio-fact-label {
  color: var(--grey-2);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bio-fact-value {
  color: var(--white);
  text-align: right;
  font-weight: 400;
}

/* Right Content Column */
.bio-content-body {
  min-width: 0;
}

.bio-artist-name {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.bio-artist-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 40px;
}

.bio-narrative p {
  color: var(--grey-1);
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 24px;
}

.bio-narrative p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 4rem;
  float: left;
  line-height: 0.8;
  margin-right: 12px;
  margin-top: 4px;
  color: var(--gold);
  font-weight: 400;
}

.bio-sec-title {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--white);
  margin: 48px 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
  letter-spacing: -0.01em;
}

.bio-highlights-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bio-highlight-item {
  position: relative;
  padding-left: 24px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--grey-1);
  font-weight: 300;
}

.bio-highlight-item::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

/* Quote box */
.bio-quote-box {
  background: var(--bg-1);
  border-left: 2px solid var(--gold);
  padding: 36px 40px;
  margin: 48px 0;
  border-radius: 2px;
}

.bio-quote-text {
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.6;
  font-style: italic;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 400;
}

.bio-quote-author {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
}

/* Gallery inside Bio */
.bio-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.bio-gallery-item {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 1px;
  cursor: zoom-in;
  border: 1px solid var(--rule);
  background: var(--bg-1);
}

.bio-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.bio-gallery-item:hover img {
  transform: scale(1.04);
}

/* Bio Call To Action */
.bio-cta-box {
  margin-top: 60px;
  padding: 40px;
  border: 1px solid var(--gold-line);
  background: radial-gradient(circle at top right, var(--gold-dim), transparent);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.bio-cta-text h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.bio-cta-text p {
  color: var(--grey-1);
  font-size: 0.88rem;
  font-weight: 300;
}

/* Responsive adjustments for Bio */
@media (max-width: 900px) {
  .bio-container {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 40px;
  }
  .bio-sticky-sidebar {
    position: static;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .bio-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bio-cta-box {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  .bio-cta-box .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  color: #fff;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.contact-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #25d366;
  transition: color var(--ease);
}

.contact-wa-link:hover {
  color: #128c7e;
}

/* ============================================================
   EPK (ELECTRONIC PRESS KIT) STYLES
   ============================================================ */

.band-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.epk-hero {
  position: relative;
  height: 55vh;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 var(--pad);
  overflow: hidden;
}

.epk-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,12,11,0.95) 20%, rgba(13,12,11,0.5) 60%, rgba(13,12,11,0.2) 100%);
  z-index: 1;
}

.epk-hero-overlay.kool-overlay {
  background: linear-gradient(to right, rgba(13,12,11,0.95) 20%, rgba(13,12,11,0.45) 60%, rgba(13,12,11,0.1) 100%);
}

.epk-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  text-align: left;
  margin-top: 40px;
}

.epk-badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 1px;
  margin-bottom: 20px;
}

.epk-badge.afro-badge {
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid var(--gold-line);
}

.epk-badge.kool-badge {
  background: var(--steel-dim);
  color: var(--steel-light);
  border: 1px solid var(--steel-line);
}

.epk-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.epk-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  font-weight: 300;
  color: var(--grey-1);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.epk-quick-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.epk-container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) var(--section);
}

.epk-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--rule);
}

.epk-section:last-child {
  border-bottom: none;
}

.epk-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.epk-sec-subtitle {
  color: var(--grey-2);
  font-size: 0.9rem;
  font-weight: 300;
  margin-top: 8px;
}

.epk-section-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: start;
}

.epk-narrative p {
  color: var(--grey-1);
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 24px;
}

.epk-narrative p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 4rem;
  float: left;
  line-height: 0.8;
  margin-right: 12px;
  margin-top: 4px;
  font-weight: 400;
}

#bio.epk-section .epk-narrative p:first-of-type::first-letter {
  color: var(--gold);
}

.epk-hero-kool + .epk-container #bio.epk-section .epk-narrative p:first-of-type::first-letter {
  color: var(--steel-light);
}

.epk-sidebar-card {
  background: var(--bg-1);
  border: 1px solid var(--gold-line);
  padding: 32px;
  border-radius: 2px;
}

.epk-sidebar-card-kool {
  border-color: var(--steel-line);
}

.epk-sidebar-card h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 400;
}

.epk-facts-list li {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--rule);
  color: var(--grey-1);
}

.epk-facts-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.epk-facts-list strong {
  display: block;
  color: var(--grey-2);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.press-photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.press-photo-card {
  background: var(--bg-1);
  border: 1px solid var(--rule);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.press-photo-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
  background: #000;
}

.press-photo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s var(--ease);
}

.press-photo-card:hover .press-photo-img img {
  transform: scale(1.03);
}

.press-photo-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
  justify-content: space-between;
}

.press-photo-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white);
}

.press-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--gold-line);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 1px;
  transition: background var(--ease), color var(--ease);
}

.press-download-btn:hover {
  background: var(--gold);
  color: #0d0c0b;
}

.press-download-btn-kool {
  border-color: var(--steel-line);
  color: var(--steel-light);
}

.press-download-btn-kool:hover {
  background: var(--steel);
  color: #fff;
}

.download-icon {
  font-size: 0.9rem;
  line-height: 1;
}

.epk-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 32px 0;
  border: 1px solid var(--rule);
  border-radius: 2px;
  background: var(--bg-1);
  -webkit-overflow-scrolling: touch;
}

.epk-repertoire-table, .rider-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.88rem;
  min-width: 600px;
}

.epk-repertoire-table th, .rider-table th {
  background: var(--bg-2);
  color: var(--grey-2);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  padding: 18px 24px;
  border-bottom: 1px solid var(--rule-2);
}

.epk-repertoire-table td, .rider-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--rule);
  color: var(--grey-1);
  font-weight: 300;
  line-height: 1.5;
}

.epk-repertoire-table tr:last-child td, .rider-table tr:last-child td {
  border-bottom: none;
}

.epk-repertoire-table tr:hover td, .rider-table tr:hover td {
  background: rgba(255, 255, 255, 0.015);
}

.song-title {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--white) !important;
  font-weight: 400;
}

.song-artist {
  font-weight: 500 !important;
  color: var(--white);
}

.song-genre {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.epk-repertoire-table .song-genre {
  color: var(--gold);
}

.epk-repertoire-table-kool .song-genre {
  color: var(--steel-light);
}

.rider-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.rider-column h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 400;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rule-2);
}

.rider-list li {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
  color: var(--grey-1);
  font-weight: 300;
}

.rider-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.epk-hero-kool + .epk-container .rider-list li::before {
  color: var(--steel-light);
}

.epk-cta-box {
  padding: 60px;
  border: 1px solid var(--gold-line);
  background: radial-gradient(circle at top right, var(--gold-dim), transparent);
  border-radius: 2px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: center;
}

.epk-cta-box-kool {
  border-color: var(--steel-line);
  background: radial-gradient(circle at top right, var(--steel-dim), transparent);
}

.epk-cta-title {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--white);
}

.epk-cta-text {
  color: var(--grey-1);
  font-size: 0.98rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 24px;
}

.epk-contact-details {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.epk-contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.epk-contact-item strong {
  font-size: 0.68rem;
  color: var(--grey-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.epk-contact-item a {
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
  transition: color var(--ease);
}

.epk-contact-item a:hover {
  color: var(--gold);
}

.epk-cta-box-kool .epk-contact-item a:hover {
  color: var(--steel-light);
}

.epk-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.epk-cta-actions .btn {
  width: 100%;
  justify-content: center;
}

/* ===== EPK RESPONSIVE ===== */
@media (max-width: 1024px) {
  .press-photos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .epk-section-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .epk-sidebar-block {
    max-width: 480px;
    width: 100%;
  }
  .rider-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .epk-cta-box {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px;
  }
}

@media (max-width: 600px) {
  .epk-hero {
    height: auto;
    padding: 120px 24px 60px;
  }
  .press-photos-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
  .epk-quick-actions {
    flex-direction: column;
  }
  .epk-quick-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Read More Link */
.read-more-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  margin-left: 5px;
  white-space: nowrap;
  transition: color var(--ease);
}

.read-more-link:hover {
  color: var(--white);
  text-decoration: underline;
}


/* ============================================================
   MUSIC SAMPLES SECTION
   ============================================================ */

/* Category label row */
.music-category-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.music-category-label::before,
.music-category-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule-2);
}

.music-cat-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.music-cat-original {
  background: var(--gold-dim);
  color: var(--gold-light);
  border: 1px solid var(--gold-line);
}

.music-cat-cover {
  background: var(--steel-dim);
  color: var(--steel-light);
  border: 1px solid var(--steel-line);
}

/* Grid */
.music-samples-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .music-samples-grid {
    grid-template-columns: 1fr;
  }
}

/* Music card */
.music-card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--rule-2);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
  display: flex;
  flex-direction: column;
}

.music-card:hover {
  border-color: rgba(201, 165, 90, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Colored left-edge accent */
.music-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  border-radius: 4px 0 0 4px;
}

.music-accent-gold {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
}

.music-accent-steel {
  background: linear-gradient(180deg, var(--steel-light) 0%, var(--steel) 100%);
}

/* Card body */
.music-card-body {
  padding: 24px 24px 24px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

/* Meta row: badge + duration */
.music-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Badge (Original / Cover) */
.music-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.music-badge-original {
  background: var(--gold-dim);
  color: var(--gold-light);
  border: 1px solid var(--gold-line);
}

.music-badge-cover {
  background: var(--steel-dim);
  color: var(--steel-light);
  border: 1px solid var(--steel-line);
}

/* Duration label */
.music-duration-label {
  font-size: 0.72rem;
  color: var(--grey-2);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.05em;
}

/* Track title */
.music-track-title {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin: 0;
}

/* Track sub-title (snippet label) */
.music-track-sub {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0;
}

.music-card:has(.music-accent-steel) .music-track-sub {
  color: var(--steel-light);
}

/* Track description */
.music-track-desc {
  font-size: 0.85rem;
  color: var(--grey-1);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

/* Player row */
.music-player {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
}

/* Play/Pause button */
.music-play-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--gold);
  color: #0d0c0b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
  box-shadow: 0 4px 16px rgba(201, 165, 90, 0.3);
}

.music-play-btn svg {
  width: 22px;
  height: 22px;
}

.music-play-btn:hover {
  background: var(--gold-light);
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(201, 165, 90, 0.5);
}

.music-play-btn.playing {
  background: var(--gold-light);
  box-shadow: 0 0 0 4px var(--gold-dim), 0 6px 24px rgba(201, 165, 90, 0.4);
  animation: pulse-gold 2s ease-in-out infinite;
}

.music-play-btn-steel {
  background: var(--steel);
  box-shadow: 0 4px 16px rgba(93, 144, 184, 0.3);
  color: #fff;
}

.music-play-btn-steel:hover {
  background: var(--steel-light);
  box-shadow: 0 6px 24px rgba(93, 144, 184, 0.5);
}

.music-play-btn-steel.playing {
  background: var(--steel-light);
  box-shadow: 0 0 0 4px var(--steel-dim), 0 6px 24px rgba(93, 144, 184, 0.4);
  animation: pulse-steel 2s ease-in-out infinite;
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 4px var(--gold-dim), 0 6px 24px rgba(201, 165, 90, 0.4); }
  50%       { box-shadow: 0 0 0 8px rgba(201, 165, 90, 0.08), 0 6px 28px rgba(201, 165, 90, 0.55); }
}

@keyframes pulse-steel {
  0%, 100% { box-shadow: 0 0 0 4px var(--steel-dim), 0 6px 24px rgba(93, 144, 184, 0.4); }
  50%       { box-shadow: 0 0 0 8px rgba(93, 144, 184, 0.08), 0 6px 28px rgba(93, 144, 184, 0.55); }
}

/* Progress bar wrap */
.music-progress-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Progress bar track */
.music-progress-bar {
  position: relative;
  height: 5px;
  background: var(--bg-3);
  border-radius: 100px;
  cursor: pointer;
  overflow: hidden;
}

.music-progress-bar:hover {
  height: 7px;
}

/* Progress fill */
.music-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 100px;
  transition: width 0.15s linear;
}

.music-fill-steel {
  background: linear-gradient(90deg, var(--steel) 0%, var(--steel-light) 100%);
}

/* Time row */
.music-time-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.music-time-current,
.music-time-total {
  font-size: 0.72rem;
  color: var(--grey-2);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  font-family: var(--sans);
}

/* Footer note */
.music-note {
  margin-top: 36px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--grey-2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  background: var(--bg-2);
  border: 1px solid var(--rule);
  border-radius: 12px;
}

.music-note a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--ease);
}

.music-note a:hover {
  color: var(--gold-light);
}


/* ============================================================
   VIDEO COMING-SOON PLACEHOLDER CARDS
   ============================================================ */

.video-coming-soon {
  background: var(--bg-2);
  border: 1.5px dashed var(--rule-2);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--ease);
}

.video-coming-soon:hover {
  border-color: var(--gold-line);
}

.video-coming-soon-inner {
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.video-cs-icon {
  font-size: 2rem;
  line-height: 1;
  opacity: 0.6;
}

.video-cs-title {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--grey-1);
  font-weight: 600;
  margin: 0;
}

.video-cs-sub {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
  opacity: 0.8;
}


/* ============================================================
   HOMEPAGE MINI AUDIO PLAYER (SunJamma)
   ============================================================ */

/* ── Hero MP3 Player Overlay ── */
.hero-player {
  position: absolute;
  bottom: 10%;
  right: 8%;
  z-index: 10;
  background: rgba(8, 8, 7, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 14px 16px 12px;
  width: 250px;
}

.hero-player-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
  margin-bottom: 10px;
}

.ha-track {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ha-track:last-of-type { border-bottom: none; }

.ha-play-btn {
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  color: var(--gold);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  opacity: 0.85;
  transition: opacity 0.15s, transform 0.15s;
}
.ha-play-btn:hover { opacity: 1; transform: scale(1.12); }
.ha-play-btn:focus-visible { outline: 1px solid var(--gold); outline-offset: 3px; }
.ha-play-btn svg { width: 15px; height: 15px; }

.ha-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.ha-title {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ha-bar {
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  overflow: hidden;
}
.ha-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.15s linear;
}

.ha-time {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.3);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  /* Container: transparent, floating pills higher in hero */
  .hero-player {
    left: 0;
    right: 0;
    bottom: auto;
    top: 30%;
    transform: translateY(-50%);
    width: 100%;
    background: none;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  /* Badge: small centered label above pills */
  .hero-player .hero-player-badge {
    justify-content: center;
    margin-bottom: 4px;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.45);
  }

  /* Each track = a glass pill, more transparent */
  .hero-player .ha-track {
    width: calc(100% - 48px);
    max-width: 300px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    padding: 10px 16px 10px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  }
  .hero-player .ha-track:last-of-type {
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }

  /* Bigger play button on mobile */
  .hero-player .ha-play-btn svg {
    width: 24px;
    height: 24px;
  }

  /* Progress bar */
  .hero-player .ha-bar {
    background: rgba(255,255,255,0.1);
  }

  /* Title */
  .hero-player .ha-title {
    font-size: 0.8rem;
    font-weight: 600;
  }

  /* Time */
  .hero-player .ha-time {
    color: rgba(255,255,255,0.45);
    font-size: 0.65rem;
  }
}

/* ── Genre Card Button & Desc ── */
.genre-desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin: 4px 0 16px;
  line-height: 1.4;
}

.genre-rep-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  color: rgba(255,255,255,0.75);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  font-family: var(--sans);
}

.genre-rep-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Repertoire Modal ── */
.rep-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  z-index: 2000;
}

.rep-modal-overlay.open { display: block; }

.rep-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  width: min(680px, calc(100vw - 32px));
  max-height: 80vh;
  background: #111110;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 36px 36px 32px;
  z-index: 2001;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}

.rep-modal.open {
  display: block;
  animation: modalIn 0.22s ease both;
}

@keyframes modalIn {
  from { opacity: 0; transform: translate(-50%, -46%); }
  to   { opacity: 1; transform: translate(-50%, -48%); }
}

.rep-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}

.rep-modal-close:hover { color: #fff; background: rgba(255,255,255,0.08); }

.rep-modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.rep-modal-icon { font-size: 1.5rem; }

.rep-modal-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.rep-modal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 32px;
}

.rep-modal-list li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  break-inside: avoid;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rep-modal-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  opacity: 0.7;
}

@media (max-width: 480px) {
  .rep-modal { padding: 28px 20px 24px; }
  .rep-modal-list { columns: 1; }
}

/* ── SunJamma Original Songs Player ── */
.sj-player {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sj-player-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  opacity: 0.8;
}

.sj-track {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sj-track:last-of-type { border-bottom: none; }

.sj-play-btn {
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  color: var(--gold);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  opacity: 0.85;
  transition: opacity 0.15s, transform 0.15s;
}

.sj-play-btn:hover { opacity: 1; transform: scale(1.12); }
.sj-play-btn:focus-visible { outline: 1px solid var(--gold); outline-offset: 3px; }

.sj-play-btn svg { width: 16px; height: 16px; }

.sj-track-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.sj-track-title {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sj-track-by {
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
}

.sj-progress-bar {
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  overflow: hidden;
}

.sj-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.15s linear;
}

.sj-track-time {
  font-family: var(--sans);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.3);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.sj-volume {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
}

.sj-vol-icon {
  width: 13px;
  height: 13px;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

.sj-vol-slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--gold) var(--vol-pct, 80%),
    rgba(255,255,255,0.12) var(--vol-pct, 80%)
  );
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

.sj-vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 0;
  height: 0;
}

.sj-vol-slider:hover::-webkit-slider-thumb {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  margin-top: -4px;
}

.sj-vol-slider::-moz-range-thumb {
  width: 0;
  height: 0;
  border: none;
  background: transparent;
}

.sj-vol-slider:hover::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  border: none;
}

/* Listen Now Badge */
.listen-now-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-3);
  border: 1px solid var(--gold-line);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  margin-top: 16px;
  position: relative;
  overflow: hidden;
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}

.listen-now-badge:hover {
  background: var(--gold-dim);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.listen-badge-icon {
  color: var(--gold);
  font-size: 0.8rem;
  transition: transform var(--ease);
}

.listen-now-badge:hover .listen-badge-icon {
  transform: scale(1.2);
}

/* Pulsing dot indicator */
.listen-badge-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--gold);
  border-radius: 50%;
  position: relative;
}

.listen-badge-pulse::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 1.5s infinite ease-in-out;
}

@keyframes pulse-dot {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(3.5); opacity: 0; }
}

/* Listen panel wrapper */
.listen-panel {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  margin-top: 0;
  text-align: left;
}

.listen-panel.open {
  max-height: 280px;
  opacity: 1;
  margin-top: 14px;
}

.listen-panel-inner {
  background: var(--bg-2);
  border: 1px solid var(--rule-2);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.listen-panel-title {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-2);
  margin: 0;
}

/* Track row */
.listen-track {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-3);
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--rule);
}

.listen-play-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--gold);
  color: #0d0c0b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--ease), background var(--ease);
}

.listen-play-btn:hover {
  background: var(--gold-light);
  transform: scale(1.08);
}

.listen-play-btn svg {
  width: 14px;
  height: 14px;
}

.listen-track-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.listen-track-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

/* Progress bar inside mini-player */
.listen-progress-bar {
  position: relative;
  height: 4px;
  background: var(--bg-0);
  border-radius: 100px;
  cursor: pointer;
}

.listen-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: 100px;
  transition: width 0.15s linear;
}

.listen-track-time {
  font-size: 0.72rem;
  color: var(--grey-2);
  font-variant-numeric: tabular-nums;
}

