/* =========================================================
   TERANGA GROOVE — style.css
   Afro Modern Premium · 2025
   ========================================================= */

/* ── Variables ─────────────────────────────────────────── */
:root {
  --gold:       #d4a343;
  --gold-light: #f0c96a;
  --gold-dark:  #9a6e1a;
  --amber:      #c47a00;
  --rust:       #b43c1e;
  --deep:       #0d0704;
  --dark:       #140c04;
  --dark-mid:   #1e1208;
  --dark-warm:  #2a1a0a;
  --charcoal:   #1a1108;
  --cream:      #f5ead0;
  --cream-dim:  #c9b48a;
  --white:      #fdf8ef;
  --green-af:   #2d6a1f;
  --terracotta: #c45e30;

  --font-logo:  'Bebas Neue', sans-serif;
  --font-head:  'Cormorant Garamond', serif;
  --font-body:  'DM Sans', sans-serif;

  --radius:     12px;
  --radius-lg:  20px;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--deep);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ── Layout ────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

/* ── Reveal animations ─────────────────────────────────── */
.reveal, .reveal-delay-1, .reveal-delay-2 {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal.visible, .reveal-delay-1.visible, .reveal-delay-2.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.5s ease, box-shadow 0.5s ease, padding 0.4s ease;
  padding: 1.5rem 0;
}
#navbar.scrolled {
  background: rgba(13, 7, 4, 0.92);
  backdrop-filter: blur(20px) saturate(1.5);
  box-shadow: 0 1px 0 rgba(212, 163, 67, 0.15);
  padding: 1rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-logo);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--white);
  text-transform: uppercase;
}
.logo-mark {
  color: var(--gold);
  font-size: 1rem;
  animation: spin-slow 8s linear infinite;
}
.logo-text em {
  color: var(--gold);
  font-style: normal;
  font-family: var(--font-head);
  font-weight: 300;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(13, 7, 4, 0.97);
  border-top: 1px solid rgba(212,163,67,0.15);
  padding: 1.5rem 2.5rem;
  gap: 1.5rem;
}
.mobile-menu a {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.mobile-menu.open { display: flex; }

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 90px;
  padding-bottom: 3rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(196, 122, 0, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(180, 60, 30, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 70%, rgba(45, 106, 31, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, #0d0704 0%, #1a0d04 50%, #0d0704 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 100% 50% at 50% 0%, rgba(212, 163, 67, 0.05) 0%, transparent 60%);
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,163,67,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,163,67,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}
.hero-pattern {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.7;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
}

/* Stage scene */
.stage-scene {
  position: relative;
  height: 160px;
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.stage-lights {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 80px;
}
.light {
  width: 2px;
  height: 120px;
  transform-origin: top center;
  position: relative;
}
.light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(212, 163, 67, 0.3) 0%, transparent 100%);
  clip-path: polygon(40% 0%, 60% 0%, 100% 100%, 0% 100%);
  animation: light-flicker 3s ease-in-out infinite;
}
.light::after {
  content: '';
  position: absolute;
  top: -5px; left: 50%;
  transform: translateX(-50%);
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--gold), 0 0 30px rgba(212,163,67,0.5);
}
.l1 { transform: rotate(-20deg); animation-delay: 0.2s; }
.l2 { transform: rotate(-5deg); animation-delay: 0.7s; }
.l3 { transform: rotate(5deg); animation-delay: 0.4s; }
.l4 { transform: rotate(20deg); animation-delay: 1s; }

.light.l1::before { background: linear-gradient(to bottom, rgba(212,163,67,0.3) 0%, transparent 100%); }
.light.l2::before { background: linear-gradient(to bottom, rgba(196,94,48,0.3) 0%, transparent 100%); }
.light.l3::before { background: linear-gradient(to bottom, rgba(45,106,31,0.3) 0%, transparent 100%); }
.light.l4::before { background: linear-gradient(to bottom, rgba(212,163,67,0.3) 0%, transparent 100%); }

.stage-silhouettes {
  display: flex;
  gap: 2.5rem;
  align-items: flex-end;
  position: relative;
  z-index: 2;
}
.silhouette {
  width: 50px;
  opacity: 0.85;
  filter: drop-shadow(0 0 12px rgba(212,163,67,0.5));
  animation: sway 4s ease-in-out infinite;
}
.silhouette svg { width: 100%; fill: var(--cream); }
.s-drums { animation-delay: 0s; }
.s-bass { animation-delay: 0.5s; height: 100px; }
.s-vocal { animation-delay: 1s; }
.s-guitar { animation-delay: 0.3s; }

.hero-badge {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-badge::before, .hero-badge::after {
  content: '';
  display: inline-block;
  width: 30px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-title {
  line-height: 0.9;
  margin-bottom: 1.2rem;
}
.title-teranga {
  display: block;
  font-family: var(--font-logo);
  font-size: clamp(4.5rem, 14vw, 11rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow:
    0 0 60px rgba(212, 163, 67, 0.2),
    0 2px 40px rgba(0,0,0,0.5);
}
.title-groove {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 7vw, 5.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-shadow: 0 0 40px rgba(212, 163, 67, 0.4);
}

.hero-sub {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 2.5rem;
}

.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: color 0.4s;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-primary span {
  position: relative;
  z-index: 1;
}
.btn-primary:hover { color: var(--deep); }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }

/* ── Audio Player ──────────────────────────────────────── */
.audio-section {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 680px;
  margin: 3rem auto 2rem;
  padding: 0 1.5rem;
}

.audio-player {
  background: rgba(26, 17, 8, 0.85);
  border: 1px solid rgba(212, 163, 67, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.8rem 2rem;
  backdrop-filter: blur(20px);
  box-shadow:
    0 0 0 1px rgba(212,163,67,0.05),
    0 20px 60px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(212,163,67,0.1);
}

.audio-info {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.audio-disc {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-dark) 0%, var(--dark-warm) 60%, var(--dark) 100%);
  border: 2px solid rgba(212,163,67,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.audio-disc::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(212,163,67,0.15);
}
.disc-inner {
  color: var(--gold);
  font-size: 1rem;
  transition: transform 0.3s;
}
.playing .audio-disc { animation: spin-disc 3s linear infinite; }

.audio-meta { flex: 1; }
.audio-track { display: block; font-size: 1rem; font-weight: 500; color: var(--white); margin-bottom: 0.2rem; }
.audio-artist { font-size: 0.75rem; color: var(--cream-dim); letter-spacing: 0.08em; }

.audio-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
}
.audio-btn {
  color: var(--cream-dim);
  font-size: 0.9rem;
  padding: 0.5rem;
  transition: color 0.3s;
  line-height: 1;
}
.audio-btn:hover { color: var(--gold); }
.play-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 0 20px rgba(212,163,67,0.3);
  transition: transform 0.2s, box-shadow 0.3s;
}
.play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 35px rgba(212,163,67,0.5);
  color: var(--deep);
}
.play-btn:hover .play-icon {
  color: var(--deep);
  position: relative;
  z-index: 2;
}
.audio-progress-wrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}
.time { font-size: 0.7rem; color: var(--cream-dim); font-variant-numeric: tabular-nums; min-width: 2.5rem; }
.progress-bar {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}
.progress-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(212,163,67,0.6);
  left: 0%;
  transition: left 0.1s linear;
  opacity: 0;
  transition-property: opacity;
}
.progress-bar:hover .progress-thumb { opacity: 1; }

/* Visualizer */
.visualizer {
  height: 36px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.viz-bars {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 100%;
}
.viz-bar {
  width: 3px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(to top, var(--gold-dark), var(--gold-light));
  height: 4px;
  transition: height 0.1s;
}
.playing .viz-bar { animation: viz-pulse var(--dur, 0.5s) ease-in-out infinite alternate; }

/* ── Carousel ──────────────────────────────────────────── */
.carousel-section {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212,163,67,0.15);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.carousel-slide { min-width: 100%; }

.slide-img {
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.slide-scene {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem;
  position: relative;
}
.scene-lights { position: absolute; top: 0; left: 0; right: 0; height: 100%; pointer-events: none; }
.sc-light {
  position: absolute;
  top: 0; left: 30%;
  width: 120px; height: 100%;
  background: linear-gradient(to bottom, var(--sc, rgba(212,163,67,0.15)) 0%, transparent 70%);
  clip-path: polygon(30% 0%, 70% 0%, 100% 100%, 0% 100%);
  animation: light-flicker 3s ease-in-out infinite;
}
.sc-light.sl2 { left: 50%; animation-delay: 1.2s; }

.scene-crowd {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50px;
  background: repeating-linear-gradient(
    90deg,
    rgba(0,0,0,0.4) 0px, rgba(0,0,0,0.4) 10px,
    rgba(0,0,0,0.2) 10px, rgba(0,0,0,0.2) 20px
  );
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 50'%3E%3Cpath d='M0 50 Q10 20 20 30 Q30 10 40 25 Q50 5 60 20 Q70 0 80 15 Q90 -5 100 10 Q110 -2 120 12 Q130 3 140 18 Q150 8 160 22 Q170 12 180 28 Q190 18 200 30 L200 50 Z' fill='black'/%3E%3C/svg%3E");
  mask-size: cover;
}

.scene-label {
  position: relative;
  z-index: 2;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,234,208,0.7);
  background: rgba(13,7,4,0.6);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(212,163,67,0.2);
  backdrop-filter: blur(10px);
}

.portrait-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 200px;
  margin-bottom: 2rem;
}
.pg-item {
  height: 70px;
  border-radius: 8px;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--c, rgba(212,163,67,0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-logo);
  font-size: 2rem;
  color: var(--c, var(--gold));
  box-shadow: 0 0 20px var(--c, rgba(212,163,67,0.2));
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(13,7,4,0.7);
  color: var(--cream);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212,163,67,0.2);
  backdrop-filter: blur(10px);
  transition: background 0.3s, border-color 0.3s;
  z-index: 10;
}
.carousel-btn:hover { background: rgba(212,163,67,0.2); border-color: var(--gold); }
.carousel-btn.prev { left: 1rem; }
.carousel-btn.next { right: 1rem; }

.carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(212,163,67,0.3);
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
}
.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* Scroll indicator */
.scroll-indicator {
  position: relative;
  margin-top: 3.5rem;
  left: auto;
  bottom: auto;
  transform: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scroll-down 1.5s ease-in-out infinite;
}
.scroll-indicator span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
}

/* ═══════════════════════════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: var(--font-logo);
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1.2rem;
}
.title-line {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════
   À PROPOS
═══════════════════════════════════════════════════════ */
.about {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--deep) 0%, #1a0d04 50%, var(--deep) 100%);
  overflow: hidden;
}
.about-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.8;
  pointer-events: none;
}
.about-bg-pattern svg { width: 100%; height: 100%; }

.about-intro {
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
}
.about-quote {
  max-width: 700px;
  text-align: center;
  position: relative;
  padding: 0 3rem;
}
.about-quote p {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.5;
}
.quote-mark {
  font-family: var(--font-head);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0;
  position: absolute;
  top: 0.5rem;
  left: 0;
}
.quote-mark.right {
  top: auto;
  bottom: -1.5rem;
  right: 0;
  left: auto;
}

.about-text {
  max-width: 700px;
  margin: 0 auto 5rem;
  text-align: center;
}
.about-text p {
  color: var(--cream-dim);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}
.about-text strong { color: var(--white); }
.about-text em { color: var(--gold); font-style: normal; }

/* Members */
.members-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.member-card {
  background: rgba(26, 17, 8, 0.6);
  border: 1px solid rgba(212,163,67,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s;
  backdrop-filter: blur(10px);
}
.member-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--mc, var(--gold)), transparent);
  opacity: 0.5;
}
.member-card:hover {
  border-color: rgba(212,163,67,0.3);
  transform: translateY(-6px);
}

.member-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  background: radial-gradient(circle, var(--mc, var(--gold)) 0%, rgba(0,0,0,0.5) 100%);
  border: 2px solid var(--mc, var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.member-glow {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--mc, var(--gold)) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.member-card:hover .member-glow { opacity: 0.15; }
.member-initial {
  font-family: var(--font-logo);
  font-size: 2rem;
  color: var(--white);
}
.member-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.member-role {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.member-desc {
  font-size: 0.85rem;
  color: var(--cream-dim);
  line-height: 1.6;
}

/* Style tags */
.style-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.style-tags span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border: 1px solid rgba(212,163,67,0.25);
  border-radius: 20px;
  color: var(--cream-dim);
  transition: border-color 0.3s, color 0.3s;
}
.style-tags span:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════
   CONCERTS
═══════════════════════════════════════════════════════ */
.concerts {
  padding: 8rem 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(196,122,0,0.06) 0%, transparent 60%),
    var(--deep);
}

.concerts-grid {
  display: grid;
  gap: 1rem;
}

.concert-card {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: rgba(26,17,8,0.5);
  border: 1px solid rgba(212,163,67,0.1);
  border-radius: var(--radius);
  transition: border-color 0.4s, transform 0.3s, background 0.4s;
  position: relative;
  overflow: hidden;
}
.concert-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold), var(--rust));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s var(--transition);
}
.concert-card:hover {
  border-color: rgba(212,163,67,0.25);
  background: rgba(26,17,8,0.8);
  transform: translateX(4px);
}
.concert-card:hover::before { transform: scaleY(1); }

.concert-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(212,163,67,0.08);
  border: 1px solid rgba(212,163,67,0.15);
  border-radius: var(--radius);
  padding: 0.8rem 0.5rem;
  text-align: center;
}
.cdate-day {
  font-family: var(--font-logo);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.cdate-month {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.cdate-year {
  font-size: 0.6rem;
  color: var(--cream-dim);
  opacity: 0.5;
}

.concert-info h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.concert-city {
  font-size: 0.75rem;
  color: var(--cream-dim);
  margin-bottom: 0.5rem;
}
.concert-badge {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  background: rgba(212,163,67,0.12);
  color: var(--gold);
  border: 1px solid rgba(212,163,67,0.2);
}
.concert-badge.sold-out {
  background: rgba(180,60,30,0.12);
  color: var(--terracotta);
  border-color: rgba(180,60,30,0.3);
}

.btn-concert {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  padding: 0.6rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  white-space: nowrap;
  transition: color 0.3s, border-color 0.3s;
}
.btn-concert span { transition: transform 0.3s; }
.btn-concert:hover { color: var(--gold); border-color: rgba(212,163,67,0.4); }
.btn-concert:hover span { transform: translateX(3px); }

/* ═══════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════ */
.contact {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}
.contact-bg { position: absolute; inset: 0; pointer-events: none; }
.contact-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.contact-glow.g1 {
  width: 500px; height: 500px;
  background: rgba(212,163,67,0.06);
  top: -100px; left: -100px;
}
.contact-glow.g2 {
  width: 400px; height: 400px;
  background: rgba(180,60,30,0.05);
  bottom: -50px; right: -50px;
}

.contact-card {
  max-width: 560px;
  margin: 0 auto;
  background: rgba(26,17,8,0.7);
  border: 1px solid rgba(212,163,67,0.15);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  text-align: center;
  backdrop-filter: blur(20px);
  box-shadow:
    0 0 0 1px rgba(212,163,67,0.05),
    0 40px 100px rgba(0,0,0,0.5);
}

.contact-logo-big {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.clb-mark {
  color: var(--gold);
  font-size: 1.2rem;
  animation: spin-slow 8s linear infinite;
}
.clb-text {
  font-family: var(--font-logo);
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
}
.clb-text em {
  color: var(--gold);
  font-style: normal;
  font-family: var(--font-head);
  font-weight: 300;
}

.contact-intro {
  font-size: 0.88rem;
  color: var(--cream-dim);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(212,163,67,0.05);
  border: 1px solid rgba(212,163,67,0.1);
  border-radius: var(--radius);
  transition: border-color 0.3s, background 0.3s;
  text-align: left;
}
.contact-item:hover {
  border-color: rgba(212,163,67,0.3);
  background: rgba(212,163,67,0.08);
}
.ci-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(212,163,67,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.ci-icon svg { width: 18px; height: 18px; }
.ci-text { display: flex; flex-direction: column; }
.ci-label { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.15rem; }
.ci-value { font-size: 0.95rem; color: var(--cream); }

.social-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 1rem;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.social-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(212,163,67,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-dim);
  transition: color 0.3s, border-color 0.3s, background 0.3s, transform 0.3s;
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(212,163,67,0.1);
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer {
  padding: 2rem;
  border-top: 1px solid rgba(212,163,67,0.1);
  background: rgba(13,7,4,0.8);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(201,180,138,0.4);
  text-transform: uppercase;
}
.footer-logo { color: var(--gold); opacity: 0.7; font-family: var(--font-logo); font-size: 0.85rem; }

/* ═══════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════ */
@keyframes spin-slow {
  to { transform: rotate(360deg); }
}
@keyframes spin-disc {
  to { transform: rotate(360deg); }
}
@keyframes sway {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  25% { transform: translateX(-2px) rotate(-1deg); }
  75% { transform: translateX(2px) rotate(1deg); }
}
@keyframes light-flicker {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}
@keyframes scroll-down {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes viz-pulse {
  from { height: 4px; }
  to { height: var(--h, 28px); }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }

  .stage-silhouettes { gap: 1.2rem; }
  .silhouette { width: 36px; }

  .audio-player { padding: 1.4rem; }
  .slide-img { height: 260px; }

  .concert-card {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto;
  }
  .concert-action {
    grid-column: 1 / -1;
    text-align: right;
  }

  .contact-card { padding: 2rem 1.5rem; }

  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 480px) {
  .members-grid { grid-template-columns: 1fr; }
  .stage-lights { gap: 50px; }
  .l1, .l4 { display: none; }
}
