/* =========================================================
   RADIO FRÉQUENCE VIE 89.4 FM — STYLESHEET
   ========================================================= */

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

:root {
  /* Palette */
  --gold:        hsl(40, 95%, 50%);
  --gold-light:  hsl(45, 100%, 65%);
  --gold-dark:   hsl(35, 90%, 38%);
  --deep:        hsl(220, 25%, 8%);
  --deep-2:      hsl(220, 22%, 12%);
  --deep-3:      hsl(220, 20%, 16%);
  --deep-4:      hsl(220, 18%, 20%);
  --surface:     hsl(220, 16%, 14%);
  --purple:      hsl(270, 60%, 55%);
  --purple-light:hsl(280, 65%, 68%);
  --white:       #ffffff;
  --white-80:    rgba(255,255,255,0.8);
  --white-60:    rgba(255,255,255,0.6);
  --white-30:    rgba(255,255,255,0.3);
  --white-10:    rgba(255,255,255,0.1);
  --white-06:    rgba(255,255,255,0.06);

  /* Gradients */
  --grad-gold:    linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  --grad-brand:   linear-gradient(135deg, hsl(35,90%,45%) 0%, hsl(280,65%,55%) 100%);
  --grad-dark:    linear-gradient(180deg, var(--deep) 0%, var(--deep-2) 100%);

  /* Typography */
  --font-main: 'Outfit', sans-serif;
  --font-serif: 'Lora', serif;

  /* Sizes */
  --nav-h: 80px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  /* Shadows */
  --shadow-gold: 0 0 40px rgba(255, 180, 0, 0.25);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.35);
  --shadow-glow: 0 0 60px rgba(255, 180, 0, 0.15);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  background: var(--deep);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* ——— CONTAINERS ——————————————————————————————————————— */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ——— SECTION HEADERS ——————————————————————————————————— */
.section { padding: 100px 0; }

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

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255, 176, 0, 0.12);
  border: 1px solid rgba(255, 176, 0, 0.25);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-label.light { color: var(--white); border-color: var(--white-30); background: var(--white-10); }

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title em { font-family: var(--font-serif); font-style: italic; color: var(--gold); }
.section-title.light { color: var(--white); }

.section-desc { font-size: 1.1rem; color: var(--white-60); max-width: 560px; margin: 0 auto; }

/* ——— BUTTONS ——————————————————————————————————————————— */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--grad-gold);
  color: hsl(30, 60%, 12%);
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 4px 20px rgba(255,176,0,0.3);
  text-decoration: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,176,0,0.45); }
.btn-primary:active { transform: translateY(0); }
.btn-primary.light { background: var(--white); color: var(--deep); box-shadow: 0 4px 20px rgba(255,255,255,0.2); }
.btn-primary.light:hover { box-shadow: 0 8px 32px rgba(255,255,255,0.3); }
.btn-primary.full-width { width: 100%; justify-content: center; font-size: 1rem; padding: 16px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white-10);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1px solid var(--white-30);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(10px);
  text-decoration: none;
}
.btn-secondary:hover { background: var(--white-20, rgba(255,255,255,0.2)); transform: translateY(-2px); }

/* ——— NAVBAR ——————————————————————————————————————————— */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
  padding: 0;
}
.navbar.scrolled {
  background: rgba(10, 12, 20, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--white-10), 0 4px 24px rgba(0,0,0,0.4);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 32px;
  gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 14px; }
.logo-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--grad-gold);
  color: hsl(30, 60%, 12%);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  line-height: 1;
  box-shadow: var(--shadow-gold);
}
.logo-badge.small { padding: 4px 8px; }
.logo-freq { font-size: 1.3rem; font-weight: 900; letter-spacing: -0.5px; }
.logo-badge.small .logo-freq { font-size: 1rem; }
.logo-fm { font-size: 0.55rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-size: 1.05rem; font-weight: 800; color: var(--white); line-height: 1.1; }
.logo-tagline { font-size: 0.65rem; color: var(--white-60); letter-spacing: 0.08em; font-weight: 400; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white-80);
  padding: 8px 14px;
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: var(--white-10); }

.btn-ecouter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: hsl(30, 60%, 12%);
  background: var(--grad-gold);
  padding: 10px 20px;
  border-radius: 100px;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(255,176,0,0.3);
}
.btn-ecouter:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(255,176,0,0.45); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px 24px 24px;
  background: rgba(10, 12, 20, 0.96);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--white-10);
}
.mobile-nav.open { display: flex; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav .nav-link { display: block; padding: 12px 16px; font-size: 1rem; }
.mobile-nav .mobile-listen { margin-top: 12px; justify-content: center; }

/* ——— HERO ——————————————————————————————————————————————— */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 7, 15, 0.55) 0%,
    rgba(5, 7, 15, 0.45) 40%,
    rgba(5, 7, 15, 0.85) 80%,
    var(--deep) 100%
  );
}

/* Sound waves animation */
.sound-waves {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}
.wave {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 176, 0, 0.15);
  transform: translate(-50%, -50%);
  animation: ripple 6s ease-out infinite;
}
.wave-1 { width: 300px; height: 300px; animation-delay: 0s; }
.wave-2 { width: 500px; height: 500px; animation-delay: 1s; }
.wave-3 { width: 700px; height: 700px; animation-delay: 2s; }
.wave-4 { width: 900px; height: 900px; animation-delay: 3s; }
.wave-5 { width: 1100px; height: 1100px; animation-delay: 4s; }

@keyframes ripple {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
  20%  { opacity: 1; }
  80%  { opacity: 0.2; }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.2); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 24px;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 60, 60, 0.18);
  border: 1px solid rgba(255, 60, 60, 0.4);
  color: #ff8888;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ff4444;
  box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.6);
  animation: pulse-red 1.5s infinite;
}
@keyframes pulse-red {
  0% { box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(255, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 68, 68, 0); }
}

.hero-title {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 12px;
  letter-spacing: -1px;
}
.text-gold { color: var(--gold); text-shadow: 0 0 40px rgba(255,176,0,0.4); }

.hero-freq {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 600;
  color: var(--white-80);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.freq-dot { color: var(--gold); margin: 0 8px; }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--white-60);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.freq-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.freq-chip {
  background: var(--white-06);
  border: 1px solid var(--white-10);
  backdrop-filter: blur(10px);
  color: var(--white-80);
  font-size: 0.8rem;
  padding: 7px 14px;
  border-radius: 100px;
  transition: background 0.2s, border-color 0.2s;
}
.freq-chip:hover { background: rgba(255,176,0,0.12); border-color: rgba(255,176,0,0.3); }
.freq-chip span { color: var(--gold); font-weight: 600; margin-right: 4px; }

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-mouse {
  width: 26px; height: 40px;
  border: 2px solid var(--white-30);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-down 2s ease infinite;
}
@keyframes scroll-down {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ——— PLAYER SECTION ——————————————————————————————————— */
.player-section {
  padding: 0;
  position: relative;
  z-index: 5;
  margin-top: -2px;
}
.player-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  background: linear-gradient(135deg, rgba(30,24,10,0.97) 0%, rgba(18,12,30,0.97) 100%);
  border: 1px solid rgba(255,176,0,0.2);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  box-shadow: var(--shadow-gold), var(--shadow-card);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}
.player-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,176,0,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.player-info { display: flex; align-items: center; gap: 20px; }
.player-on-air {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 50, 50, 0.15);
  border: 1px solid rgba(255,50,50,0.35);
  color: #ff6666;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 6px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.on-air-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ff4444;
  animation: pulse-red 1.2s infinite;
}
.player-station { font-weight: 700; font-size: 0.98rem; color: var(--white); margin-bottom: 2px; }
.player-current { font-size: 0.82rem; color: var(--gold); }

.player-controls { display: flex; align-items: center; gap: 24px; }

/* Equalizer */
.equalizer { display: flex; align-items: flex-end; gap: 4px; height: 32px; }
.eq-bar {
  width: 4px;
  background: var(--gold);
  border-radius: 2px;
  animation: eq-dance 0.8s ease infinite alternate;
  opacity: 0.7;
}
.eq-bar:nth-child(1) { animation-delay: 0.0s; height: 60%; }
.eq-bar:nth-child(2) { animation-delay: 0.15s; height: 85%; }
.eq-bar:nth-child(3) { animation-delay: 0.3s; height: 45%; }
.eq-bar:nth-child(4) { animation-delay: 0.45s; height: 75%; }
.eq-bar:nth-child(5) { animation-delay: 0.6s; height: 55%; }
.equalizer.paused .eq-bar { animation-play-state: paused; }

@keyframes eq-dance {
  from { transform: scaleY(0.3); }
  to   { transform: scaleY(1); }
}

.play-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--grad-gold);
  border: none;
  cursor: pointer;
  color: hsl(30, 60%, 12%);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(255,176,0,0.35);
  flex-shrink: 0;
}
.play-btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(255,176,0,0.5); }
.play-btn:active { transform: scale(0.96); }

.volume-control { display: flex; align-items: center; gap: 10px; color: var(--white-60); }
.volume-control input[type=range] {
  -webkit-appearance: none;
  width: 100px;
  height: 4px;
  border-radius: 2px;
  background: var(--white-30);
  outline: none;
  cursor: pointer;
}
.volume-control input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 0 6px rgba(255,176,0,0.5);
}

.player-social { display: flex; gap: 10px; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white-10);
  border: 1px solid var(--white-10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-80);
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.social-btn:hover { background: var(--gold); color: hsl(30, 60%, 12%); border-color: var(--gold); transform: translateY(-2px); }

/* ——— À PROPOS ——————————————————————————————————————————— */
.apropos-section { background: var(--deep-2); }

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

.apropos-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.apropos-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.apropos-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--grad-gold);
  color: hsl(30, 60%, 12%);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.badge-year { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.badge-num { display: block; font-size: 2.5rem; font-weight: 900; line-height: 1; }

.apropos-intro {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.7;
}
.apropos-intro strong { color: var(--gold); font-weight: 700; }

.apropos-text { color: var(--white-60); line-height: 1.8; margin-bottom: 40px; }

.apropos-values { display: flex; flex-direction: column; gap: 24px; }
.value-item { display: flex; align-items: flex-start; gap: 18px; }
.value-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(255,176,0,0.12);
  border: 1px solid rgba(255,176,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 2px;
}
.value-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.value-item p { font-size: 0.88rem; color: var(--white-60); }

/* ——— STATS ——————————————————————————————————————————— */
.stats-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.stats-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsl(35,90%,12%) 0%, hsl(270,55%,12%) 100%);
}
.stats-section .container { position: relative; z-index: 1; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item {
  text-align: center;
  padding: 40px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.3s, background 0.3s;
}
.stat-item:hover { transform: translateY(-6px); background: rgba(255,176,0,0.08); border-color: rgba(255,176,0,0.2); }
.stat-num {
  display: block;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-unit { font-size: 1.2rem; font-weight: 600; color: var(--gold-light); margin-left: 2px; }
.stat-suffix { font-size: 2rem; }
.stat-label { font-size: 0.9rem; color: var(--white-60); margin-top: 8px; }

/* ——— ÉMISSIONS ——————————————————————————————————————— */
.emissions-section { background: var(--deep); }

.emissions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.emission-card {
  background: var(--surface);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.emission-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-gold);
  opacity: 0;
  transition: opacity 0.3s;
}
.emission-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); border-color: rgba(255,176,0,0.2); }
.emission-card:hover::before { opacity: 1; }

.emission-card.featured {
  background: linear-gradient(135deg, rgba(40,25,5,0.9) 0%, rgba(30,15,45,0.9) 100%);
  border-color: rgba(255,176,0,0.3);
}
.emission-card.featured::before { opacity: 1; }

.emission-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(255,176,0,0.1);
  border: 1px solid rgba(255,176,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.emission-time { font-size: 0.78rem; font-weight: 600; color: var(--gold); letter-spacing: 0.05em; margin-bottom: 10px; }
.emission-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.emission-desc { font-size: 0.88rem; color: var(--white-60); line-height: 1.7; margin-bottom: 20px; }
.emission-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white-60);
  background: var(--white-06);
  border: 1px solid var(--white-10);
  padding: 4px 12px;
  border-radius: 100px;
}
.featured-tag { color: var(--gold); background: rgba(255,176,0,0.1); border-color: rgba(255,176,0,0.25); }

/* ——— MUSIQUE ——————————————————————————————————————————— */
.musique-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.musique-bg { position: absolute; inset: 0; z-index: 0; }
.musique-bg-img { width: 100%; height: 100%; object-fit: cover; }
.musique-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 8, 20, 0.88) 0%,
    rgba(20, 5, 40, 0.82) 100%
  );
}
.musique-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.musique-text { font-size: 1.05rem; color: var(--white-70, rgba(255,255,255,0.7)); line-height: 1.8; margin-bottom: 32px; }

.genre-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.genre-tag {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white-80);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  backdrop-filter: blur(10px);
  transition: background 0.2s, border-color 0.2s;
}
.genre-tag:hover { background: rgba(255,176,0,0.15); border-color: rgba(255,176,0,0.35); color: var(--gold); }

/* ——— STUDIO ——————————————————————————————————————————— */
.studio-section { background: var(--deep-2); }
.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.studio-text { font-size: 1rem; color: var(--white-60); line-height: 1.8; margin-bottom: 36px; }
.studio-features { display: flex; flex-direction: column; gap: 16px; }
.studio-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  color: var(--white-80);
}
.studio-feature i { color: var(--gold); font-size: 1rem; flex-shrink: 0; }

.studio-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.studio-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform 0.5s ease;
}
.studio-img-wrap:hover .studio-img { transform: scale(1.03); }
.studio-img-glow {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 60px rgba(255,176,0,0.08);
  pointer-events: none;
}

/* ——— CONTACT ——————————————————————————————————————————— */
.contact-section { background: var(--deep); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  transition: transform 0.25s, border-color 0.25s;
}
.contact-card:hover { transform: translateX(4px); border-color: rgba(255,176,0,0.25); }
.contact-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(255,176,0,0.1);
  border: 1px solid rgba(255,176,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}
.contact-card h3 { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white-60); margin-bottom: 4px; }
.contact-card p, .contact-card a { font-size: 0.95rem; color: var(--white); font-weight: 500; }
.contact-card a:hover { color: var(--gold); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--white-80); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.92rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: rgba(255,176,0,0.5);
  background: rgba(255,176,0,0.04);
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--deep-3); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(80, 200, 80, 0.1);
  border: 1px solid rgba(80, 200, 80, 0.25);
  color: #7fdd88;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.9rem;
  font-weight: 500;
}
.form-success.visible { display: flex; }

/* ——— FOOTER ——————————————————————————————————————————— */
.footer {
  background: hsl(220, 28%, 5%);
  position: relative;
  padding: 80px 0 40px;
  color: var(--white-60);
}
.footer-wave {
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 100px;
  color: var(--deep);
  pointer-events: none;
}
.footer-wave svg { width: 100%; height: 100%; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.footer-desc { font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; max-width: 320px; }
.footer-social { display: flex; gap: 10px; }
.footer-social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--white-06);
  border: 1px solid var(--white-10);
  display: flex; align-items: center; justify-content: center;
  color: var(--white-60);
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}
.footer-social-btn:hover { background: var(--gold); color: hsl(30, 60%, 12%); border-color: var(--gold); }

.footer-col h3 { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li { font-size: 0.88rem; display: flex; align-items: center; gap: 8px; }
.footer-col ul li i { color: var(--gold); width: 14px; }
.footer-col a { color: var(--white-60); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--white-10);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
}
.footer-verse { font-style: italic; color: rgba(255,176,0,0.6); max-width: 480px; text-align: right; }

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

/* ——— RESPONSIVE ————————————————————————————————————————— */
@media (max-width: 1024px) {
  .apropos-grid, .studio-grid { grid-template-columns: 1fr; gap: 48px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .emissions-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .apropos-img-wrap { max-width: 560px; }
  .apropos-img { height: 380px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .nav-links, .btn-ecouter { display: none; }
  .hamburger { display: flex; }

  .section { padding: 72px 0; }
  .hero-title { font-size: 2.8rem; }
  .emissions-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-verse { text-align: center; }

  .player-card { flex-direction: column; align-items: stretch; text-align: center; padding: 24px; }
  .player-info { flex-direction: column; gap: 12px; }
  .player-controls { justify-content: center; }
  .player-social { justify-content: center; }

  .contact-form { padding: 28px 24px; }
  .nav-container { padding: 0 20px; }

  .freq-chips { display: none; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 280px; justify-content: center; }
}
