/* ============================================================
   B. CODY SHIELDS — EPK STYLESHEET
   Brand: Black #0D0D0D · Gold #FFD700 · White #FFFFFF
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #0D0D0D;
  --black2:  #161616;
  --black3:  #1e1e1e;
  --gold:    #FFD700;
  --gold2:   #e6c200;
  --white:   #FFFFFF;
  --gray:    #aaaaaa;
  --gray2:   #666666;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;
  --radius: 8px;
  --radius-lg: 14px;
  --transition: 0.3s ease;
  --max-width: 1200px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* ---- UTILITY ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 100px 0;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--gold); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.01em;
  margin-bottom: 48px;
  color: var(--white);
}
.section-title.light { color: var(--white); }

.section-subtitle {
  font-size: 0.95rem;
  color: var(--gray);
  margin-top: -32px;
  margin-bottom: 40px;
}

/* ---- REVEAL ANIMATION ---- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold2); border-color: var(--gold2); transform: translateY(-2px); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  font-size: 0.8rem;
  padding: 10px 20px;
}
.btn-outline:hover { background: var(--gold); color: var(--black); }

.btn-sm { padding: 10px 20px; font-size: 0.8rem; }
.btn-full { width: 100%; justify-content: center; margin-top: 8px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(13,13,13,0.97);
  padding: 12px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.7);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 9px 18px !important;
  border-radius: var(--radius) !important;
}
.nav-cta:hover { background: var(--gold2) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  filter: saturate(0.5) brightness(0.55);
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,13,13,0.5) 0%,
    rgba(13,13,13,0.25) 40%,
    rgba(13,13,13,0.25) 60%,
    rgba(13,13,13,0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 32px 80px;
  max-width: 800px;
}
.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.9;
}
.hero-name {
  font-family: var(--font-heading);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
  color: var(--gold);
}
.name-line-1 {
  display: block;
  font-size: clamp(4.5rem, 11vw, 9rem);
  color: var(--gold);
  font-style: normal;
}
.name-line-2 {
  display: block;
  font-size: clamp(4.5rem, 11vw, 9rem);
  color: var(--gold);
  font-style: normal;
}
.hero-tagline {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 24px;
  font-weight: 400;
}
.hero-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.badge {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid rgba(255,215,0,0.45);
  border-radius: 100px;
  color: rgba(255,255,255,0.8);
}
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--gold);
  padding: 20px 0;
}
.stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 28px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--black);
  text-transform: uppercase;
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(0,0,0,0.65);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(0,0,0,0.2);
  flex-shrink: 0;
}

/* ============================================================
   BIO SECTION
   ============================================================ */
.bio-section { background: var(--black); }
.bio-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
}
.bio-photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 3px rgba(255,215,0,0.15);
}
.bio-photo { width: 100%; aspect-ratio: 1; object-fit: cover; object-position: center 15%; }
.bio-streaming-links { margin-top: 20px; }
.bio-stream-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray2);
  margin-bottom: 10px;
}
.bio-platforms {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.platform-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition);
  background: var(--black3);
  color: var(--white);
}
.platform-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(255,215,0,0.07); }
.platform-btn .fa-spotify { color: #1DB954; }
.platform-btn .fa-apple { color: #fc3c44; }
.platform-btn .fa-youtube { color: #FF0000; }

.bio-text p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
.bio-details {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bio-detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray);
}
.bio-detail-item i { color: var(--gold); width: 16px; text-align: center; }

/* ============================================================
   MUSIC SECTION
   ============================================================ */
.music-section { background: var(--black2); }
.music-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.music-card {
  background: var(--black3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.music-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border-color: rgba(255,215,0,0.25);
}
.music-card.featured-track { border-color: rgba(255,215,0,0.3); }
.music-cover-wrap iframe { display: block; }
.music-info {
  padding: 20px 22px 22px;
}
.music-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.music-meta {
  font-size: 0.75rem;
  color: var(--gray2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.music-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 16px;
}
.milestone-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,215,0,0.12);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255,215,0,0.3);
  margin-bottom: 14px;
}

/* ============================================================
   LIVE PERFORMANCES
   ============================================================ */
.performances-section { background: var(--black); }
.performances-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.perf-card {
  background: var(--black3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}
.perf-card.no-video {
  cursor: default;
}
.perf-card.perf-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.perf-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  border-color: rgba(255,215,0,0.3);
}
.perf-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.perf-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}
.perf-card:hover .perf-thumb { transform: scale(1.05); }
.perf-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  transition: background var(--transition);
}
.perf-card:hover .perf-play-overlay { background: rgba(0,0,0,0.5); }
.perf-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--black);
  box-shadow: 0 0 30px rgba(255,215,0,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.perf-card:hover .perf-play-btn { transform: scale(1.1); box-shadow: 0 0 40px rgba(255,215,0,0.6); }
.perf-play-btn.hidden { display: none; }

.perf-info {
  padding: 20px 22px 22px;
}
.perf-venue {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.perf-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.perf-desc {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* Video modal */
.perf-video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.perf-video-modal video {
  max-width: 900px;
  width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-lg);
  outline: none;
}
.perf-video-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  font-size: 1.2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition);
}
.perf-video-modal-close:hover { background: var(--gold); color: var(--black); }

/* ============================================================
   QUICK CLIPS
   ============================================================ */
.clips-section { background: var(--black2); }
.clips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.clip-thumb-link {
  display: block;
  text-decoration: none;
}
.clip-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.clip-thumb-link:hover .clip-thumb-wrap {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0,0,0,0.6);
  border-color: rgba(255,215,0,0.4);
}
.clip-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.clip-thumb-link:hover .clip-thumb { transform: scale(1.08); }
.clip-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  font-size: 2.5rem;
  color: #FF0000;
  transition: background var(--transition), color var(--transition);
}
.clip-thumb-link:hover .clip-play-btn {
  background: rgba(0,0,0,0.55);
  color: var(--gold);
}

/* ============================================================
   LIVE EXPERIENCE
   ============================================================ */
.live-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.live-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.3) brightness(0.25);
}
.live-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,0.9) 40%, rgba(13,13,13,0.6) 100%);
}
.live-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}
.live-desc {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 36px;
}
.live-venues {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.venue-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  color: rgba(255,255,255,0.85);
}
.venue-item i { color: var(--gold); width: 16px; }
.live-stats-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.live-stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.live-stat-card.highlight {
  background: rgba(255,215,0,0.1);
  border-color: rgba(255,215,0,0.4);
}
.live-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.live-stat-label {
  font-size: 0.73rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
}

/* ============================================================
   PRESS SECTION
   ============================================================ */
.press-section { background: var(--black); }
.press-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.press-card {
  background: var(--black3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.press-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.press-card.featured-press { border-color: rgba(255,215,0,0.3); }
.press-card.brand-card { border-color: rgba(255,215,0,0.15); }
.press-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.press-source {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.press-icon { color: rgba(255,215,0,0.3); font-size: 1.4rem; }
.press-headline {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.press-excerpt {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 18px;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { background: var(--black2); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color var(--transition);
  background: none;
  padding: 0;
}
.gallery-item.gallery-tall { grid-row: span 2; }
.gallery-item.gallery-wide { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.5s ease, filter 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.06); filter: brightness(1.1); }
.gallery-item:hover { border-color: var(--gold); }
.gallery-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  background: rgba(13,13,13,0.5);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

/* ============================================================
   SOCIAL
   ============================================================ */
.social-section { background: var(--black); }
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.social-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  background: var(--black3);
  transition: all var(--transition);
  text-align: center;
}
.social-btn:hover { transform: translateY(-6px); }
.social-btn i { font-size: 2rem; margin-bottom: 4px; }
.social-btn span { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.social-btn small { font-size: 0.75rem; color: var(--gray2); }
.social-btn.instagram:hover { border-color: #E1306C; box-shadow: 0 12px 30px rgba(225,48,108,0.2); }
.social-btn.instagram i { color: #E1306C; }
.social-btn.tiktok:hover { border-color: #69C9D0; box-shadow: 0 12px 30px rgba(105,201,208,0.2); }
.social-btn.tiktok i { color: #69C9D0; }
.social-btn.youtube:hover { border-color: #FF0000; box-shadow: 0 12px 30px rgba(255,0,0,0.2); }
.social-btn.youtube i { color: #FF0000; }
.social-btn.spotify-social:hover { border-color: #1DB954; box-shadow: 0 12px 30px rgba(29,185,84,0.2); }
.social-btn.spotify-social i { color: #1DB954; }

/* ============================================================
   BOOKING
   ============================================================ */
.booking-section {
  background: var(--black2);
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 64px;
  align-items: start;
}
.booking-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 32px;
}
.booking-event-types {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.event-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-heading);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,215,0,0.3);
  color: rgba(255,255,255,0.8);
  background: rgba(255,215,0,0.05);
}
.event-tag i { color: var(--gold); font-size: 0.7rem; }

.contact-card {
  background: var(--black3);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(255,215,0,0.2);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-item > i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}
.contact-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray2);
  margin-bottom: 3px;
}
.contact-value {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
a.contact-value:hover { color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #080808;
  padding: 48px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.footer-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.footer-tagline {
  font-size: 0.82rem;
  color: var(--gray2);
  font-style: italic;
}
.footer-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray2);
  padding: 4px 10px;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  font-size: 1.1rem;
  color: var(--gray2);
  transition: color var(--transition), transform var(--transition);
}
.footer-social a:hover { color: var(--gold); transform: translateY(-2px); }
.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}
.lightbox[hidden] { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox-img-wrap {
  max-width: 1000px;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 80px rgba(0,0,0,0.8);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  cursor: pointer;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background var(--transition), color var(--transition);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .bio-grid { grid-template-columns: 260px 1fr; gap: 40px; }
  .music-grid { grid-template-columns: repeat(2, 1fr); }
  .live-inner { grid-template-columns: 1fr; }
  .live-stats-col { grid-template-columns: repeat(4, 1fr); }
  .booking-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .container { padding: 0 20px; }

  /* Nav */
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(13,13,13,0.98);
    flex-direction: column;
    padding: 16px 20px 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; width: 100%; text-align: left; }

  /* Hero */
  .name-line-1, .name-line-2 { font-size: clamp(3.5rem, 14vw, 6rem); }
  .hero-ctas { flex-direction: column; align-items: center; }

  /* Stats */
  .stats-inner { gap: 0; }
  .stat { padding: 8px 16px; }
  .stat-divider { height: 24px; }

  /* Bio */
  .bio-grid { grid-template-columns: 1fr; }
  .bio-photo-wrap { max-width: 300px; margin: 0 auto; }
  .bio-photo { aspect-ratio: 1; }

  /* Music */
  .music-grid { grid-template-columns: 1fr; }

  /* Performances */
  .performances-grid { grid-template-columns: 1fr; }

  /* Clips */
  .clips-grid { grid-template-columns: repeat(2, 1fr); }

  /* Live */
  .live-stats-col { grid-template-columns: repeat(2, 1fr); }

  /* Press */
  .press-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item.gallery-wide { grid-column: span 1; }

  /* Social */
  .social-grid { grid-template-columns: repeat(2, 1fr); }

  /* Booking */
  .booking-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .clips-grid { grid-template-columns: repeat(2, 1fr); }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
  .live-stats-col { grid-template-columns: 1fr 1fr; }
  .stats-inner { flex-direction: column; }
  .stat-divider { width: 80px; height: 1px; }
}
