/* =========================================
   WALKIN' GROOV — V2 "Stage Lights"
   Inspiré de l'affiche concert : magenta,
   cyan, violet profond, faisceaux de scène
   ========================================= */

:root {
  /* Palette affiche concert */
  --noir: #050010;
  --noir-2: #0d0420;
  --violet-deep: #1a0838;
  --violet: #9d4edd;
  --violet-light: #c77dff;
  --magenta: #ff006e;
  --magenta-hot: #ff2d8c;
  --rose: #ff5fa2;
  --cyan: #00d4e7;
  --cyan-deep: #0096c7;
  --or: #fcbf49;
  --or-bright: #ffd166;
  --rouge-stamp: #e63946;
  --argent: #d8d8e3;
  --creme: #fff8e7;
  --gris: #b8a9c9;

  /* Gradients signature */
  --grad-stage: linear-gradient(135deg, #ff006e 0%, #c77dff 50%, #00d4e7 100%);
  --grad-magenta: linear-gradient(135deg, #ff2d8c 0%, #ff006e 100%);
  --grad-or: linear-gradient(135deg, #ffd166 0%, #fcbf49 50%, #ff006e 100%);
  --grad-chrome: linear-gradient(180deg, #ffffff 0%, #d8d8e3 50%, #6c6c80 100%);

  /* Polices */
  --font-display: 'Bungee', 'Impact', sans-serif;
  --font-accent: 'Audiowide', sans-serif;
  --font-body: 'Poppins', system-ui, -apple-system, sans-serif;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;

  --shadow-stage: 0 0 60px rgba(255, 0, 110, 0.5), 0 0 120px rgba(199, 125, 255, 0.3);
  --shadow-soft: 0 12px 50px rgba(0, 0, 0, 0.6);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--creme);
  background: var(--noir);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Image de scène en fond fixe (couche image) */
body::before {
  content: '';
  position: fixed;
  inset: -10px;
  background-image: url('images/fond1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(1.1);
  z-index: -2;
  pointer-events: none;
}

/* Overlay plus léger : la photo reste bien visible */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(5,0,16,0.30) 0%, rgba(5,0,16,0.65) 100%),
    linear-gradient(180deg, rgba(5,0,16,0.30) 0%, rgba(13,4,32,0.45) 50%, rgba(5,0,16,0.75) 100%);
  pointer-events: none;
  z-index: -1;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { padding: 0; margin: 0; list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ---------- Faisceaux animés en surcouche ---------- */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.ambient .stage-beam {
  position: absolute;
  top: -20vh;
  width: 280px;
  height: 140vh;
  filter: blur(80px);
  opacity: 0.22;
  transform-origin: top center;
  mix-blend-mode: screen;
}
.stage-beam.b1 { left: 12%;  background: linear-gradient(180deg, var(--magenta-hot), transparent 75%);  animation: sweepLeft 14s ease-in-out infinite; }
.stage-beam.b2 { left: 88%;  background: linear-gradient(180deg, var(--cyan), transparent 75%);          animation: sweepRight 16s ease-in-out infinite -8s; }

@keyframes sweepLeft {
  0%, 100% { transform: rotate(-8deg) translateX(0); }
  50%      { transform: rotate(8deg) translateX(-30px); }
}
@keyframes sweepRight {
  0%, 100% { transform: rotate(8deg) translateX(0); }
  50%      { transform: rotate(-8deg) translateX(30px); }
}

/* Particules de poussière de scène */
.ambient .dust {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.04) 1px, transparent 2px),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,0.04) 1px, transparent 2px),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,0.04) 1px, transparent 2px),
    radial-gradient(circle at 90% 30%, rgba(255,255,255,0.04) 1px, transparent 2px);
  background-size: 200px 200px;
  animation: dustFloat 25s linear infinite;
}
@keyframes dustFloat {
  to { background-position: 200px 200px, -200px 200px, 200px -200px, -200px -200px; }
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(13, 4, 32, 0.65);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 0, 110, 0.15);
  transition: padding 0.3s, background 0.3s;
}
.header.scrolled {
  padding: 10px 0;
  background: rgba(13, 4, 32, 0.92);
  border-bottom-color: rgba(255, 0, 110, 0.3);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-logo {
  height: 78px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 14px rgba(255, 0, 110, 0.55))
          drop-shadow(0 0 28px rgba(199, 125, 255, 0.35));
  transition: transform 0.3s ease, filter 0.3s ease, height 0.3s ease;
}
.brand:hover .brand-logo {
  transform: scale(1.04);
  filter: drop-shadow(0 0 20px rgba(255, 0, 110, 0.7))
          drop-shadow(0 0 40px rgba(0, 212, 231, 0.35));
}
.header.scrolled .brand-logo { height: 58px; }

.menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.menu a {
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 2px;
  transition: color 0.2s, text-shadow 0.2s;
}
.menu a:not(.cta-link)::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--grad-stage);
  transition: width 0.25s ease;
}
.menu a:hover::after { width: 100%; }
.menu a:hover {
  color: var(--creme);
  text-shadow: 0 0 12px rgba(255, 0, 110, 0.7);
}
.menu .cta-link {
  padding: 9px 22px;
  border-radius: 100px;
  background: var(--grad-magenta);
  color: white;
  font-weight: 600;
  letter-spacing: 0.1em;
  box-shadow: 0 6px 24px rgba(255, 0, 110, 0.5),
              inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.menu .cta-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 0, 110, 0.7),
              inset 0 1px 0 rgba(255,255,255,0.3);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(255, 0, 110, 0.25);
  position: relative;
  z-index: 101;
  background: transparent;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--creme);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.2s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
  z-index: 2;
}

/* Tampon "LIVE CONCERT" en haut, comme sur l'affiche */
.live-stamp {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.18em;
  color: #fff;
  background: var(--rouge-stamp);
  padding: 8px 22px;
  border: 3px solid #fff;
  border-radius: 4px;
  box-shadow: 0 4px 0 rgba(0,0,0,0.4),
              inset 0 0 0 1px rgba(0,0,0,0.2);
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  transform: rotate(-4deg);
  margin: 0 0 28px;
  position: relative;
  z-index: 3;
}
.live-stamp::before {
  content: '\2605';
  margin-right: 8px;
  color: #ffd166;
}

.hero-inner {
  position: relative;
  text-align: center;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 28px;
  padding: 8px 22px;
  border: 1px solid rgba(0, 212, 231, 0.35);
  border-radius: 100px;
  background: rgba(0, 212, 231, 0.05);
  text-shadow: 0 0 10px rgba(0, 212, 231, 0.5);
}
.hero-eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 14px var(--magenta);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  margin: 0 0 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-logo {
  max-width: min(1460px, 95vw);
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 0 30px rgba(255, 0, 110, 0.55))
    drop-shadow(0 0 70px rgba(199, 125, 255, 0.4))
    drop-shadow(0 0 130px rgba(0, 212, 231, 0.25))
    drop-shadow(0 12px 30px rgba(0, 0, 0, 0.6));
  animation: heroLogoIn 1.1s ease-out both, heroGlow 5s ease-in-out infinite alternate;
}
@keyframes heroLogoIn {
  from { opacity: 0; transform: translateY(20px) scale(0.94); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes heroGlow {
  0%   { filter: drop-shadow(0 0 30px rgba(255, 0, 110, 0.55))
                drop-shadow(0 0 70px rgba(199, 125, 255, 0.4))
                drop-shadow(0 0 130px rgba(0, 212, 231, 0.25))
                drop-shadow(0 12px 30px rgba(0, 0, 0, 0.6)); }
  100% { filter: drop-shadow(0 0 50px rgba(255, 209, 102, 0.5))
                drop-shadow(0 0 90px rgba(255, 0, 110, 0.5))
                drop-shadow(0 0 150px rgba(0, 212, 231, 0.35))
                drop-shadow(0 12px 30px rgba(0, 0, 0, 0.6)); }
}

.hero-tagline {
  font-size: clamp(16px, 1.6vw, 20px);
  max-width: 600px;
  margin: 0 auto 40px;
  color: var(--creme);
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.hero-tagline strong { color: var(--or); font-weight: 600; }
.hero-tagline em {
  color: var(--magenta-hot);
  font-style: normal;
  font-weight: 600;
  text-shadow: 0 0 20px rgba(255, 45, 140, 0.6);
}

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

.hero-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin: 0 auto;
  padding: 24px 32px;
  background: rgba(13, 4, 32, 0.6);
  border: 1px solid rgba(255, 0, 110, 0.2);
  border-radius: var(--radius);
  max-width: 700px;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4),
              inset 0 1px 0 rgba(255,255,255,0.05);
}
.hero-meta li {
  font-size: 13px;
  color: var(--gris);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  background: var(--grad-or);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 4px;
  text-shadow: 0 0 20px rgba(255, 209, 102, 0.3);
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(255, 0, 110, 0.4);
  border-radius: 100px;
  display: grid;
  place-items: center;
  z-index: 3;
  background: rgba(13, 4, 32, 0.4);
  backdrop-filter: blur(4px);
}
.scroll-down span {
  width: 4px; height: 8px;
  background: var(--magenta-hot);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--magenta-hot);
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translateY(-6px); opacity: 0; }
  50%      { transform: translateY(6px); opacity: 1; }
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
}
.btn-primary {
  background: var(--grad-magenta);
  color: white;
  box-shadow: 0 8px 30px rgba(255, 0, 110, 0.55),
              inset 0 1px 0 rgba(255,255,255,0.25);
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(255, 0, 110, 0.75),
              0 0 60px rgba(199, 125, 255, 0.4),
              inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-ghost {
  background: rgba(0, 212, 231, 0.05);
  color: var(--creme);
  border: 1px solid rgba(0, 212, 231, 0.4);
}
.btn-ghost:hover {
  background: rgba(0, 212, 231, 0.12);
  border-color: var(--cyan);
  color: var(--cyan);
  text-shadow: 0 0 12px rgba(0, 212, 231, 0.6);
  transform: translateY(-3px);
}
.btn-small { padding: 12px 22px; font-size: 14px; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Sections génériques ---------- */
section {
  position: relative;
  padding: 100px 0;
  z-index: 2;
}
.section-eyebrow {
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--magenta-hot);
  margin: 0 0 16px;
  text-shadow: 0 0 14px rgba(255, 45, 140, 0.5);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
  color: var(--creme);
  text-shadow: 0 0 30px rgba(0,0,0,0.8);
}
.section-title .accent {
  background: var(--grad-stage);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(255, 0, 110, 0.5));
}
.section-sub {
  max-width: 620px;
  color: var(--gris);
  font-size: 17px;
  margin: 0 auto;
}
.section-head {
  text-align: center;
  margin-bottom: 64px;
}

/* ---------- Backgrounds variés par section (album1/2/3) ---------- */
.about,
.repertoire,
.contact {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.about {
  background-image:
    linear-gradient(180deg, rgba(5,0,16,0.55) 0%, rgba(13,4,32,0.65) 100%),
    url('images/album2.jpg');
}
.repertoire {
  background-image:
    linear-gradient(180deg, rgba(13,4,32,0.70) 0%, rgba(5,0,16,0.78) 100%),
    url('images/album1.jpg');
  background-position: center 30%;
}
.contact {
  background-image:
    linear-gradient(180deg, rgba(5,0,16,0.55) 0%, rgba(13,4,32,0.68) 100%),
    url('images/album3.jpg');
}
/* Transitions douces aux extrémités de chaque section */
.about::after,
.repertoire::after,
.contact::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg,
    var(--noir) 0%,
    transparent 6%,
    transparent 94%,
    var(--noir) 100%);
  z-index: 0;
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text p {
  color: var(--creme);
  margin-bottom: 18px;
  font-size: 17px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.7);
}
.about-text strong { color: var(--or-bright); }
.about-text em { color: var(--cyan); font-style: normal; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 0, 110, 0.2);
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  background: var(--grad-or);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  text-shadow: 0 0 20px rgba(255, 209, 102, 0.25);
}
.stat-label {
  display: block;
  font-size: 12px;
  color: var(--gris);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-visual { position: relative; }
.poster-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform: rotate(-2deg);
  transition: transform 0.4s ease;
  box-shadow: var(--shadow-soft), var(--shadow-stage);
  border: 1px solid rgba(255, 0, 110, 0.25);
}
.poster-frame:hover { transform: rotate(0deg) scale(1.02); }
.poster-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5,0,16,0.5) 100%);
  z-index: 1;
}
.poster-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- VIDÉO ---------- */
.video-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 0, 110, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6),
              0 0 80px rgba(255, 0, 110, 0.3),
              0 0 120px rgba(0, 212, 231, 0.2);
  background: #000;
}
/* Variante verticale pour les Reels Facebook / TikTok / Shorts (9:16) */
.video-wrap-vertical {
  max-width: 380px;
  aspect-ratio: 9 / 16;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-fallback {
  text-align: center;
  margin: 18px auto 0;
  font-size: 13px;
  color: var(--gris);
}
.video-fallback a,
.video-caption a {
  color: var(--cyan);
  border-bottom: 1px dashed rgba(0, 212, 231, 0.4);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.video-fallback a:hover,
.video-caption a:hover {
  color: var(--or);
  border-bottom-color: var(--or);
}

/* Stack de plusieurs vidéos avec une largeur identique */
.video-stack {
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: center;
}
.video-item {
  width: 100%;
  max-width: 900px;
  margin: 0;
}
.video-item .video-wrap {
  max-width: none; /* prend toute la largeur du parent .video-item */
}
.video-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--gris);
}
.video-tag {
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(255, 0, 110, 0.15);
  color: var(--magenta-hot);
  border: 1px solid rgba(255, 0, 110, 0.35);
}

/* ---------- RÉPERTOIRE ---------- */
.track-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px;
}
.track {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  row-gap: 2px;
  align-items: center;
  padding: 14px 18px;
  border-radius: var(--radius);
  background: rgba(13, 4, 32, 0.55);
  border: 1px solid rgba(255, 0, 110, 0.18);
  overflow: hidden;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.track:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 0, 110, 0.5);
  background: rgba(13, 4, 32, 0.85);
  box-shadow: 0 14px 40px rgba(255, 0, 110, 0.25),
              0 0 80px rgba(199, 125, 255, 0.15);
}

.track-num {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--magenta-hot);
  letter-spacing: 0.05em;
  margin: 0;
  text-shadow: 0 0 12px rgba(255, 45, 140, 0.6);
  min-width: 26px;
}
.track h3 {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--font-accent);
  font-size: 16px;
  margin: 0;
  color: var(--creme);
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.track p {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  font-size: 12px;
  color: var(--gris);
  line-height: 1.3;
}
.tmore {
  background: linear-gradient(135deg, rgba(255,0,110,0.18), rgba(0,212,231,0.12));
  border-color: rgba(255, 0, 110, 0.45);
}
.tmore .track-num {
  font-size: 22px;
  color: var(--or);
  text-shadow: 0 0 16px rgba(252, 191, 73, 0.6);
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-list .ic {
  flex-shrink: 0;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--grad-magenta);
  border-radius: 12px;
  font-size: 20px;
  box-shadow: 0 6px 20px rgba(255, 0, 110, 0.5),
              inset 0 1px 0 rgba(255,255,255,0.2);
}
.contact-list strong {
  display: block;
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 4px;
}
.contact-list a {
  color: var(--creme);
  transition: color 0.2s, text-shadow 0.2s;
}
.contact-list a:hover {
  color: var(--or);
  text-shadow: 0 0 14px rgba(252, 191, 73, 0.5);
}
.contact-list small { color: var(--gris); font-size: 13px; }

.contact-form {
  background: rgba(13, 4, 32, 0.7);
  border: 1px solid rgba(255, 0, 110, 0.25);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.contact-form::before {
  content: '';
  position: absolute;
  top: -50%; right: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,0,110,0.12) 0%, transparent 60%);
  z-index: -1;
  animation: rotateBg 20s linear infinite;
}
@keyframes rotateBg { to { transform: rotate(360deg); } }
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 26px;
  margin: 0 0 28px;
  color: var(--creme);
  text-shadow: 0 0 20px rgba(255, 0, 110, 0.4);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--cyan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(5, 0, 16, 0.6);
  border: 1px solid rgba(255, 0, 110, 0.2);
  border-radius: 12px;
  color: var(--creme);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--magenta-hot);
  background: rgba(5, 0, 16, 0.8);
  box-shadow: 0 0 0 3px rgba(255, 45, 140, 0.12);
}
.field textarea { resize: vertical; min-height: 100px; }
.field select option { background: var(--noir-2); color: var(--creme); }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-note {
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--gris);
  text-align: center;
}
.hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
  opacity: 0;
}
.contact-form.sending button[type="submit"] {
  opacity: 0.6;
  pointer-events: none;
}
.contact-form.sent { animation: formPulse 0.6s ease; }
@keyframes formPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.02); }
}

/* ---------- Footer ---------- */
.footer {
  position: relative;
  padding: 50px 0 30px;
  border-top: 1px solid rgba(255, 0, 110, 0.2);
  z-index: 2;
  background: rgba(5, 0, 16, 0.4);
  backdrop-filter: blur(8px);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0;
  background: var(--grad-stage);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 20px rgba(255, 0, 110, 0.4));
}
.footer-meta {
  margin: 0;
  font-size: 13px;
  color: var(--gris);
}
.footer-meta a { color: var(--or); }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }
  section { padding: 70px 0; }
  .hero { padding: 130px 0 60px; }
  .hero-meta { gap: 20px; padding: 18px; }
  .hero-meta strong { font-size: 24px; }
  .live-stamp { font-size: 16px; margin-bottom: 24px; }
}

@media (max-width: 900px) {
  .burger { display: flex; }
  .brand-logo { height: 56px; }
  .header.scrolled .brand-logo { height: 46px; }
  .menu {
    position: fixed;
    top: 88px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(13, 4, 32, 0.98);
    backdrop-filter: blur(20px);
    padding: 16px 24px 24px;
    transform: translateY(-20px);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s 0.3s;
    border-bottom: 1px solid rgba(255, 0, 110, 0.25);
    z-index: 99;
  }
  .menu.open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s 0s;
  }
  .menu a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 0, 110, 0.1);
    font-size: 14px;
  }
  .menu .cta-link {
    margin-top: 12px;
    border-bottom: none;
    text-align: center;
  }
  .hero { padding: 110px 0 60px; min-height: auto; }
  .hero-title { font-size: clamp(48px, 16vw, 90px); }
  /* Sur mobile, le text-shadow noir du titre (30px de halo sombre)
     bave dans les bords des lettres et fait paraître les couleurs ternes.
     On l'enlève sur la partie accent + on simplifie les filtres. */
  .section-title { text-shadow: none; }
  .section-title .accent {
    background: linear-gradient(135deg, #ffd166 0%, #ff2d8c 50%, #00ffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 12px rgba(255, 45, 140, 0.55));
  }
  .about-stats { grid-template-columns: 1fr; gap: 18px; text-align: center; }
  .stat { padding: 12px; border-bottom: 1px solid rgba(255, 0, 110, 0.1); }
  .stat:last-child { border: none; }
  .container { padding: 0 18px; }
  .live-stamp { font-size: 14px; padding: 6px 16px; margin-bottom: 20px; }
  body { background-attachment: scroll; }
  .about,
  .repertoire,
  .contact { background-attachment: scroll; }
  /* Sur mobile, background-attachment: fixed n'est pas fiable (iOS),
     donc on simule le rendu PC en cadrant les images à la hauteur
     du viewport (100vh) plutôt qu'à toute la section. */
  .about,
  .contact {
    background-size: cover, auto 100vh;
  }
  /* Fondu très marqué aux extrémités : le voile reste presque opaque
     aux bords pour masquer les coupures nettes de la photo (auto 100vh
     centrée), et ne s'éclaircit qu'au centre où la photo doit ressortir */
  .about {
    background-image:
      linear-gradient(180deg,
        rgba(5,0,16,1) 0%,
        rgba(5,0,16,0.97) 28%,
        rgba(5,0,16,0.50) 42%,
        rgba(13,4,32,0.55) 58%,
        rgba(13,4,32,0.97) 72%,
        rgba(13,4,32,1) 100%),
      url('images/album2.jpg');
    /* Photo un peu plus petite pour gagner en netteté */
    background-size: cover, auto 65vh;
  }
  .contact {
    background-image:
      linear-gradient(180deg,
        rgba(5,0,16,1) 0%,
        rgba(5,0,16,0.97) 28%,
        rgba(5,0,16,0.50) 42%,
        rgba(13,4,32,0.58) 58%,
        rgba(13,4,32,0.97) 72%,
        rgba(13,4,32,1) 100%),
      url('images/album3.jpg');
  }
  /* On enlève tous les filets magenta autour des stats sur mobile :
     ils traversent la photo et cassent le visuel */
  .about-stats { border-top: none; }
  .stat { border-bottom: none; }
  .ambient .stage-beam { width: 140px; opacity: 0.4; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms