/* ===============================================================
   GirL iN a DeAd enD — styles.css
   Tokens + 10 sections + responsive + prefers-reduced-motion +
   mode punchy + parallax + preloader + lazy embed + i18n switcher
   + 7 fonds animés (un par section, mode rock/punchy)
   + watermarks décoratifs (logo2, logo3, banniere3, visuel-ep2)
   =============================================================== */

/* ---- Polices auto-hébergées (RGPD) — Bebas Neue + Inter ---- */
@font-face {
  font-family: 'Bebas Neue';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('../fonts/bebas-neue.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 300; font-display: swap;
  src: url('../fonts/inter-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: italic; font-weight: 300; font-display: swap;
  src: url('../fonts/inter-300italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 500; font-display: swap;
  src: url('../fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: italic; font-weight: 500; font-display: swap;
  src: url('../fonts/inter-500italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 700; font-display: swap;
  src: url('../fonts/inter-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: italic; font-weight: 700; font-display: swap;
  src: url('../fonts/inter-700italic.woff2') format('woff2');
}

/* ---- Tokens ---- */
:root {
  --bg:        #0a0a0a;
  --bg-2:      #111111;
  --bg-3:      #161616;
  --surface:   #1a1a1a;
  --fg:        #f4f4f4;
  --fg-muted:  #9a9a9a;
  --accent:    #c1272d;
  --accent-2:  #ff3b3b;
  --gold:      #d4a04a;
  --line:      rgba(255,255,255,0.08);

  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --radius-s: 4px;
  --radius-m: 8px;
  --radius-l: 16px;
  --container: 1200px;
  --section-pad: clamp(4rem, 8vw, 7rem);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3 { margin: 0; font-family: var(--font-display); font-weight: 400; letter-spacing: 0.02em; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.container { width: min(var(--container), 100% - 2.5rem); margin-inline: auto; }

/* ---- Accessibilité : prefers-reduced-motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .preloader { display: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-title[data-glitch]::before,
  .hero-title[data-glitch]::after { display: none !important; }
  .anim-bg, .anim-bg * { animation: none !important; }
}

/* ---- Preloader ---- */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  transition: opacity .5s var(--ease), visibility .5s var(--ease);
}
.preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-pulse img { height: 96px; width: auto; animation: pulseLogo 1.4s ease-in-out infinite; }
@keyframes pulseLogo {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50%      { transform: scale(1.08); opacity: 1; }
}

/* ---- Grain overlay ---- */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.8'/></svg>");
}

/* ---- Reveal on scroll ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---- Section labels & titles ---- */
.section-label {
  display: inline-block;
  font-size: 0.8rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem;
  font-weight: 500;
}
.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 3rem;
  line-height: 1;
}
.section-title em { color: var(--accent); font-style: normal; }

/* ===============================================================
   FONDS ANIMÉS (un par section)
   - tous respectent prefers-reduced-motion
   - tous restent derrière le contenu (z-index 0, contenu z-index 1)
   =============================================================== */
section { position: relative; isolation: isolate; }
section > .container { position: relative; z-index: 2; }
.anim-bg {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}

/* HERO — particules de poussière dorée flottantes */
.anim-bg-hero::before,
.anim-bg-hero::after {
  content: ''; position: absolute; inset: -10%;
  background-image:
    radial-gradient(circle, rgba(212, 160, 74, 0.55) 0.5px, transparent 1.5px),
    radial-gradient(circle, rgba(255, 255, 255, 0.35) 0.5px, transparent 1.5px);
  background-size: 60px 60px, 100px 100px;
  background-position: 0 0, 30px 30px;
  animation: dustDrift 30s linear infinite;
  opacity: 0.45;
}
.anim-bg-hero::after {
  animation-duration: 50s;
  animation-direction: reverse;
  background-size: 90px 90px, 140px 140px;
  opacity: 0.25;
}
@keyframes dustDrift {
  from { transform: translate(0, 0); }
  to   { transform: translate(-60px, -60px); }
}

/* ABOUT — brouillard volumétrique sombre qui dérive */
.anim-bg-about {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(193, 39, 45, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(212, 160, 74, 0.06) 0%, transparent 60%);
}
.anim-bg-about::before {
  content: ''; position: absolute; inset: -20%;
  background-image:
    radial-gradient(ellipse 600px 300px at 30% 50%, rgba(255,255,255,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 400px 200px at 70% 30%, rgba(193, 39, 45, 0.06) 0%, transparent 70%);
  filter: blur(20px);
  animation: fogDrift 28s ease-in-out infinite alternate;
}
@keyframes fogDrift {
  from { transform: translate(-3%, -2%) scale(1.05); }
  to   { transform: translate(3%, 2%) scale(1.1); }
}

/* MUSIC — visualiseur audio stylisé (barres rouges qui pulsent) */
.anim-bg-music {
  background:
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}
.anim-bg-music::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("../assets/decor/logo2-watermark.webp");
  background-repeat: no-repeat;
  background-position: 110% 50%;
  background-size: 700px auto;
  opacity: 0.06;
  mix-blend-mode: screen;
}
.eq-bars {
  position: absolute; left: 0; right: 0; bottom: 0; height: 140px;
  display: flex; align-items: flex-end; justify-content: space-around;
  gap: 6px; padding: 0 20px;
  opacity: 0.18;
}
.eq-bars .bar {
  flex: 1; max-width: 18px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-2) 100%);
  border-radius: 2px 2px 0 0;
  animation: eqBeat 1.4s ease-in-out infinite;
  transform-origin: bottom;
}
.eq-bars .bar:nth-child(2)  { animation-delay: 0.1s; }
.eq-bars .bar:nth-child(3)  { animation-delay: 0.2s; }
.eq-bars .bar:nth-child(4)  { animation-delay: 0.3s; }
.eq-bars .bar:nth-child(5)  { animation-delay: 0.05s; }
.eq-bars .bar:nth-child(6)  { animation-delay: 0.25s; }
.eq-bars .bar:nth-child(7)  { animation-delay: 0.15s; }
.eq-bars .bar:nth-child(8)  { animation-delay: 0.35s; }
.eq-bars .bar:nth-child(9)  { animation-delay: 0.08s; }
.eq-bars .bar:nth-child(10) { animation-delay: 0.28s; }
.eq-bars .bar:nth-child(11) { animation-delay: 0.18s; }
.eq-bars .bar:nth-child(12) { animation-delay: 0.4s; }
.eq-bars .bar:nth-child(13) { animation-delay: 0.05s; }
.eq-bars .bar:nth-child(14) { animation-delay: 0.22s; }
.eq-bars .bar:nth-child(15) { animation-delay: 0.32s; }
.eq-bars .bar:nth-child(16) { animation-delay: 0.12s; }
.eq-bars .bar:nth-child(17) { animation-delay: 0.36s; }
.eq-bars .bar:nth-child(18) { animation-delay: 0.06s; }
.eq-bars .bar:nth-child(19) { animation-delay: 0.18s; }
.eq-bars .bar:nth-child(20) { animation-delay: 0.28s; }
@keyframes eqBeat {
  0%, 100% { transform: scaleY(0.25); }
  20%      { transform: scaleY(0.95); }
  40%      { transform: scaleY(0.55); }
  60%      { transform: scaleY(1); }
  80%      { transform: scaleY(0.4); }
}

/* VIDEOS — lignes de scan VHS / glitch CRT */
.anim-bg-videos {
  background: var(--bg);
}
.anim-bg-videos::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg,
      rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px,
      transparent 1px, transparent 4px);
  animation: scanlines 8s linear infinite;
}
.anim-bg-videos::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 60%, rgba(0,0,0,0.7) 100%);
}
.anim-bg-videos .visuel-ep {
  position: absolute; top: 50%; left: -50px;
  transform: translateY(-50%);
  width: 380px; height: auto;
  opacity: 0.08;
  mix-blend-mode: screen;
  pointer-events: none;
}
.anim-bg-videos .visuel-ep-right {
  left: auto; right: -80px;
  transform: translateY(-50%) scaleX(-1);
}
@keyframes scanlines {
  from { background-position: 0 0; }
  to   { background-position: 0 100px; }
}

/* DATES — traînées de lumière (phares de tournée nocturne) */
.anim-bg-dates {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}
.anim-bg-dates::before,
.anim-bg-dates::after {
  content: ''; position: absolute;
  width: 200%; height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.7) 50%, transparent 100%);
  filter: blur(1px);
  opacity: 0.5;
}
.anim-bg-dates::before {
  top: 30%; left: -100%;
  transform: rotate(-12deg);
  animation: lightStreak 9s ease-in infinite;
}
.anim-bg-dates::after {
  top: 70%; left: -100%;
  transform: rotate(8deg);
  background: linear-gradient(90deg, transparent 0%, rgba(212, 160, 74, 0.6) 50%, transparent 100%);
  animation: lightStreak 12s 3s ease-in infinite;
}
@keyframes lightStreak {
  0%   { transform: translateX(-50%) rotate(-12deg); opacity: 0; }
  20%  { opacity: 0.6; }
  100% { transform: translateX(50%) rotate(-12deg); opacity: 0; }
}

/* GALLERY — ombres mouvantes / spotlight */
.anim-bg-gallery {
  background: var(--bg);
}
.anim-bg-gallery::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 30% 30%, rgba(193, 39, 45, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 70% 70%, rgba(212, 160, 74, 0.05) 0%, transparent 70%);
  animation: spotlightMove 18s ease-in-out infinite alternate;
}
@keyframes spotlightMove {
  from { transform: translate(-2%, -1%); }
  to   { transform: translate(2%, 1%); }
}

/* PRESS — texture papier journal subtile */
.anim-bg-press {
  background:
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%);
}
.anim-bg-press::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg,
      transparent 0px, transparent 2px,
      rgba(255,255,255,0.015) 2px, rgba(255,255,255,0.015) 3px);
}
.anim-bg-press::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("../assets/decor/banniere3-1600.webp");
  background-repeat: no-repeat;
  background-position: center 80%;
  background-size: 90% auto;
  opacity: 0.03;
  filter: invert(1);
}

/* COMMUNITY — pulsations de lumière concentriques */
.anim-bg-community {
  background: var(--bg);
}
.anim-bg-community::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; width: 600px; height: 600px;
  margin: -300px 0 0 -300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 39, 45, 0.2) 0%, transparent 60%);
  animation: pulseCircle 6s ease-in-out infinite;
}
.anim-bg-community::after {
  content: ''; position: absolute;
  top: 50%; left: 50%; width: 1000px; height: 1000px;
  margin: -500px 0 0 -500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 160, 74, 0.08) 0%, transparent 60%);
  animation: pulseCircle 8s 1s ease-in-out infinite;
}
@keyframes pulseCircle {
  0%, 100% { transform: scale(0.85); opacity: 0.6; }
  50%      { transform: scale(1.05); opacity: 1; }
}

/* MERCH (Boutique) — texture vinyle/CD qui tourne lentement */
.anim-bg-merch {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}
.anim-bg-merch::before {
  content: ''; position: absolute;
  top: 50%; left: 50%;
  width: 900px; height: 900px;
  margin: -450px 0 0 -450px;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle,
      rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 1px,
      transparent 1px, transparent 4px);
  animation: vinylSpin 60s linear infinite;
  opacity: 0.5;
}
.anim-bg-merch::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("../assets/decor/banniere3-1600.webp");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  opacity: 0.04;
  filter: invert(1);
}
@keyframes vinylSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* CONTACT — pluie de cordes / lignes verticales animées */
.anim-bg-contact {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.anim-bg-contact::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg,
      transparent 0px, transparent 80px,
      rgba(193, 39, 45, 0.07) 80px, rgba(193, 39, 45, 0.07) 81px);
  animation: stringWave 6s ease-in-out infinite;
}
.anim-bg-contact::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg,
      transparent 0px, transparent 120px,
      rgba(255,255,255,0.05) 120px, rgba(255,255,255,0.05) 121px);
  animation: stringWave 9s 1s ease-in-out infinite reverse;
}
@keyframes stringWave {
  0%, 100% { transform: scaleY(1); }
  50%      { transform: scaleY(1.015); }
}

/* ===============================================================
   NAV + LANG SWITCHER
   =============================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.2rem 0;
  transition: background .35s var(--ease), padding .35s var(--ease);
}
.nav.is-scrolled {
  background: rgba(10,10,10,0.88);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.nav-brand img { height: 44px; width: auto; }
.nav-inner > nav { display: flex; align-items: center; gap: 1.5rem; }
.nav-links {
  display: flex; gap: 1.4rem; list-style: none; margin: 0; padding: 0;
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 500;
}
.nav-links a { position: relative; padding: 0.25rem 0; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -3px; height: 1px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }

.lang-switcher {
  display: flex; gap: 0.25rem;
  padding-left: 1rem; border-left: 1px solid var(--line);
}
.lang-btn {
  padding: 0.3rem 0.55rem; font-size: 0.75rem; letter-spacing: 0.1em;
  color: var(--fg-muted); border-radius: var(--radius-s);
  font-weight: 500;
  transition: color .25s var(--ease), background .25s var(--ease);
}
.lang-btn.is-active { color: var(--fg); background: rgba(255,255,255,0.06); }
.lang-btn:hover { color: var(--accent); }

.nav-burger { display: none; width: 30px; height: 22px; position: relative; }
.nav-burger span {
  position: absolute; left: 0; right: 0; height: 2px; background: var(--fg);
  transition: transform .3s var(--ease), opacity .3s var(--ease), top .3s var(--ease);
}
.nav-burger span:nth-child(1) { top: 0; }
.nav-burger span:nth-child(2) { top: 10px; }
.nav-burger span:nth-child(3) { top: 20px; }
.nav-burger.is-open span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* ===============================================================
   HERO (100dvh fallback 100vh, parallax, glitch en mode punchy)
   =============================================================== */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; display: block;
  filter: contrast(1.1) saturate(1.05) brightness(0.85);
  transform: scale(1.05);
  will-change: transform;
  z-index: 0;
}
.hero-bg img, .hero-bg picture, .hero-bg source {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.85) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(10,10,10,0.6) 100%);
}
.hero-content {
  position: relative; z-index: 3;
  text-align: center; padding: 8rem 0; width: 100%;
}
.hero-banner {
  display: block; margin: 0 auto 1.2rem;
  max-width: min(720px, 92vw);
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 4px 30px rgba(0,0,0,0.8))
    drop-shadow(0 0 12px rgba(193, 39, 45, 0.4));
  /* On rend la basse résolution lisible avec un effet "projection film" */
  image-rendering: auto;
  animation: heroBannerIn 1.4s var(--ease) both;
}
@keyframes heroBannerIn {
  from { opacity: 0; transform: translateY(-8px) scale(1.03); }
  to   { opacity: 1; transform: none; }
}
.hero-title-sr {
  position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.hero-tagline {
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--fg-muted); margin: 0 0 2.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
  font-weight: 500;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block; padding: 1rem 2.5rem;
  font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
  border-radius: var(--radius-s);
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn-primary { background: var(--accent); color: var(--fg); }
.btn-primary:hover { background: var(--accent-2); transform: translateY(-2px); }
.btn-ghost { border: 1px solid var(--fg); }
.btn-ghost:hover { background: var(--fg); color: var(--bg); transform: translateY(-2px); }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  width: 30px; height: 50px; border: 2px solid var(--fg-muted); border-radius: 15px;
  z-index: 4;
}
.hero-scroll span {
  position: absolute; top: 8px; left: 50%; width: 4px; height: 8px;
  background: var(--fg); border-radius: 2px; transform: translateX(-50%);
  animation: scrollDot 2s infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translate(-50%, 0); opacity: 1; }
  50% { transform: translate(-50%, 14px); opacity: 0.3; }
}

/* ---- Mode punchy : glitch RGB sur le titre + curseur custom ---- */
[data-mode="punchy"] .hero-banner {
  position: relative;
}
[data-mode="punchy"] .btn,
[data-mode="punchy"] .date-card,
[data-mode="punchy"] .gallery-item,
[data-mode="punchy"] .album-card,
[data-mode="punchy"] .video-card,
[data-mode="punchy"] .merch-card,
[data-mode="punchy"] .lazy-play { cursor: pointer; }

/* ===============================================================
   ABOUT — photo ajustée à la hauteur du texte avec mask gradient
   =============================================================== */
.about { padding: var(--section-pad) 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: stretch;
}
.about-text {
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.about-sticker-pic {
  position: absolute; top: 0; right: 0;
  width: 100px; height: auto;
  opacity: 0.95;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6));
  pointer-events: none;
  display: block;
  z-index: 2;
}
.about-sticker { width: 100%; height: auto; display: block; }
/* Le premier paragraphe garde sa marge à droite pour ne pas passer sous le logo */
.about-text > p:first-of-type { padding-right: 120px; }
.about-text p {
  margin: 0 0 1.2rem;
  color: var(--fg-muted);
  font-size: 1.05rem;
  font-weight: 300;
}
.about-text p:last-child {
  font-style: italic;
  color: var(--fg);
  font-size: 1.15rem;
}
.about-figure {
  margin: 0;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.about-figure picture,
.about-figure img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: var(--radius-m);
  /* Fondu artistique : les bords se fondent dans le noir */
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at center, #000 55%, transparent 100%);
          mask-image: radial-gradient(ellipse 100% 100% at center, #000 55%, transparent 100%);
}
.about-figure::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(193, 39, 45, 0.08) 100%);
  pointer-events: none;
  border-radius: var(--radius-m);
}

/* ===============================================================
   MUSIC — lecteur à gauche, plateformes en colonne à droite
   =============================================================== */
.music { padding: var(--section-pad) 0; }

/* Grille horizontale de pochettes — s'étend avec les futurs albums */
.discography-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 3.5rem;
}
.album-card {
  cursor: pointer;
  transition: transform .25s var(--ease);
  display: flex; flex-direction: column;
  align-items: center;
  width: 220px;
  padding: 0;
  background: transparent;
  border: 0;
}
.album-card:hover { transform: translateY(-4px); }
.album-card.is-active .album-cover {
  box-shadow: 0 0 0 2px var(--accent), 0 12px 32px rgba(193, 39, 45, 0.35);
}
.album-cover {
  width: 220px; height: 220px;
  overflow: hidden;
  border-radius: var(--radius-m);
  background: var(--bg-2);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  transition: box-shadow .25s var(--ease);
  position: relative;
}
.album-cover::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(193, 39, 45, 0.18) 100%);
  opacity: 0;
  transition: opacity .25s var(--ease);
  pointer-events: none;
}
.album-card:hover .album-cover::after { opacity: 1; }
.album-cover img { width: 100%; height: 100%; object-fit: cover; }
.album-info { text-align: center; margin-top: 0.9rem; }
.album-info h3 { font-size: 1.3rem; line-height: 1; }
.album-info span {
  display: block;
  color: var(--fg-muted);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

.music-player {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: stretch;
}
.music-embed {
  position: relative;
  min-height: 380px;
  display: flex; align-items: center; justify-content: center;
}
.music-embed .lazy-embed {
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
.music-platforms {
  display: flex; flex-direction: column;
  gap: 0.8rem;
}
.music-platforms-title {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: 0 0 0.5rem;
  font-weight: 500;
}
.music-platforms a {
  display: block;
  padding: 1rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: left;
  background: rgba(255,255,255,0.02);
  transition: all .25s var(--ease);
  position: relative;
}
.music-platforms a::after {
  content: '→';
  position: absolute;
  right: 1rem; top: 50%;
  transform: translateY(-50%);
  color: var(--fg-muted);
  transition: transform .25s var(--ease), color .25s var(--ease);
}
.music-platforms a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(193, 39, 45, 0.06);
}
.music-platforms a:hover::after {
  transform: translate(4px, -50%);
  color: var(--accent);
}

/* ---- Modale album ---- */
.album-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center; padding: 2rem;
  background: rgba(0,0,0,0.92);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease);
}
.album-modal.is-open { opacity: 1; pointer-events: auto; }
.album-modal-content {
  position: relative; max-width: 700px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  background: var(--surface); border-radius: var(--radius-l); padding: 2rem 2.5rem;
  border: 1px solid var(--line);
}
.album-modal-close {
  position: absolute; top: 1rem; right: 1rem; width: 40px; height: 40px;
  font-size: 1.6rem; color: var(--fg);
}
.album-modal-body h3 { font-size: 2.4rem; margin-bottom: 0.25rem; }
.album-modal-body .album-year { color: var(--accent); letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.78rem; font-weight: 500; }
.album-modal-body .album-credits { margin: 1rem 0; color: var(--fg-muted); font-size: 0.95rem; }
.album-modal-body ol { padding-left: 1.5rem; margin: 1rem 0; }
.album-modal-body ol li { margin-bottom: 0.4rem; }
.album-modal-body .album-platforms { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1.2rem; }
.album-modal-body .album-platforms a {
  padding: 0.5rem 1rem; border: 1px solid var(--line); border-radius: var(--radius-s);
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 500;
}
.album-modal-body .album-platforms a:hover { border-color: var(--accent); color: var(--accent); }

/* ===============================================================
   VIDÉOS / CLIPS
   =============================================================== */
.videos { padding: var(--section-pad) 0; }
.videos-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  position: relative;
}
.videos-empty {
  text-align: center; padding: 4rem 2rem;
  border: 1px dashed var(--line); border-radius: var(--radius-l);
  max-width: 600px; margin: 0 auto;
  color: var(--fg-muted);
  font-style: italic;
}
.video-card { cursor: pointer; }
.video-card .lazy-embed { aspect-ratio: 16/9; border-radius: var(--radius-m); overflow: hidden; }
.video-card .video-meta { padding: 0.8rem 0; }
.video-card .video-meta h3 { font-size: 1.3rem; margin-bottom: 0.2rem; }
.video-card .video-meta time { color: var(--fg-muted); font-size: 0.85rem; letter-spacing: 0.05em; }

/* ===============================================================
   DATES — mosaïque adaptative + tabs
   =============================================================== */
.dates { padding: var(--section-pad) 0; }
.dates-tabs {
  display: flex; gap: 2rem; justify-content: center; margin-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}
.dates-tab {
  padding: 1rem 0; font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fg-muted); border-bottom: 2px solid transparent;
  font-weight: 500;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.dates-tab.is-active { color: var(--fg); border-color: var(--accent); }
.dates-panel { display: none; }
.dates-panel.is-active {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.dates-empty {
  grid-column: 1 / -1;
  text-align: center; color: var(--fg-muted); padding: 3rem 1rem;
  border: 1px dashed var(--line); border-radius: var(--radius-l);
  font-style: italic;
}

.date-card {
  display: flex; flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius-m);
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
  border: 1px solid var(--line);
}
.date-card:hover {
  transform: translateY(-4px);
  background: #222;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5), 0 0 0 1px var(--accent);
}
.date-card.is-landscape { grid-column: span 2; }

.date-poster { margin: 0; background: #000; }
.date-poster img {
  width: 100%; height: auto; display: block;
}
.date-meta { padding: 1.2rem 1.4rem 1.5rem; }
.date-meta time {
  display: block; color: var(--accent); font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase; font-size: 0.78rem; margin-bottom: 0.5rem;
}
.date-meta h3 { font-size: 1.6rem; margin-bottom: 0.25rem; line-height: 1; }
.date-city { color: var(--fg-muted); margin: 0 0 0.5rem; font-size: 0.95rem; }
.date-detail { color: var(--fg-muted); font-size: 0.9rem; margin: 0 0 0.6rem; font-style: italic; }
.date-status {
  display: inline-block; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.2rem 0.6rem; border-radius: 999px; margin-right: 0.4rem;
  font-weight: 500;
}
.date-status.sold-out { background: var(--accent); color: var(--fg); }
.date-status.cancelled { background: #555; color: var(--fg); }
.date-status.postponed { background: #b88300; color: var(--fg); }
.date-ticket {
  display: inline-block; margin-top: 0.4rem;
  font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent); border-bottom: 1px solid var(--accent); padding-bottom: 2px;
}

/* ===============================================================
   GALLERY (CSS columns — masonry, preserve aspect ratios)
   =============================================================== */
.gallery { padding: var(--section-pad) 0; }
.gallery-grid { column-count: 4; column-gap: 1rem; }
.gallery-item {
  break-inside: avoid; margin: 0 0 1rem; cursor: pointer; overflow: hidden;
  border-radius: var(--radius-m);
  position: relative;
}
.gallery-item img {
  width: 100%; height: auto;
  transition: transform .5s var(--ease), filter .5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); filter: brightness(1.15); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(193, 39, 45, 0.15) 100%);
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }

/* ===============================================================
   PRESSE / MÉDIAS
   =============================================================== */
.press { padding: var(--section-pad) 0; }
.press-empty {
  text-align: center; padding: 4rem 2rem;
  border: 1px dashed var(--line); border-radius: var(--radius-l);
  max-width: 600px; margin: 0 auto;
  background: rgba(255,255,255,0.02);
}
.press-empty h3 { font-size: 2rem; margin-bottom: 1.5rem; color: var(--fg); line-height: 1.05; }
.press-empty .accent-line {
  display: block; width: 60px; height: 2px; background: var(--accent);
  margin: 0 auto 1.5rem;
}
.press-empty p { color: var(--fg-muted); margin: 0; font-style: italic; }

/* Liste articles presse — style cartes */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin: 0 auto 2rem;
  max-width: 1100px;
}
.press-grid:empty { display: none; }
.press-item { display: flex; }
.press-link {
  display: flex; flex-direction: column; gap: 0.5rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: rgba(255,255,255,0.02);
  text-decoration: none; color: inherit;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
  width: 100%;
}
.press-link:hover {
  border-color: var(--accent);
  background: rgba(193,39,45,0.06);
  transform: translateY(-2px);
}
.press-media {
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); font-weight: 700;
}
.press-title {
  font-size: 1.15rem; line-height: 1.3; margin: 0;
  color: var(--fg);
}
.press-link time {
  color: var(--fg-muted); font-size: 0.85rem; margin-top: auto;
}

/* ===============================================================
   COMMUNAUTÉ
   =============================================================== */
.community { padding: var(--section-pad) 0; }
.community-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.community-block {
  background: var(--surface); border-radius: var(--radius-m); padding: 2rem;
  border: 1px solid var(--line);
}
.community-block h3 { font-size: 1.4rem; color: var(--accent); margin-bottom: 0.8rem; }
.community-block p { color: var(--fg-muted); margin: 0 0 1.2rem; font-size: 0.95rem; }
.community-link {
  display: inline-block; margin-top: 1rem;
  font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent); border-bottom: 1px solid var(--accent); padding-bottom: 2px;
  font-weight: 500;
}

.testimonials-grid {
  display: flex; flex-direction: column; gap: 1rem;
}
.testimonial {
  border-left: 3px solid var(--accent); padding: 0.6rem 1rem;
  font-style: italic; color: var(--fg);
  margin: 0;
}
.testimonial cite {
  display: block; margin-top: 0.5rem; font-style: normal;
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fg-muted);
}
.testimonials-empty {
  color: var(--fg-muted); font-style: italic; font-size: 0.95rem;
}

/* ===============================================================
   MERCH (Boutique) — single CD card
   =============================================================== */
.merch { padding: var(--section-pad) 0; }
.merch-single {
  display: grid;
  grid-template-columns: minmax(0, 380px) 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 880px;
  margin: 0 auto;
  padding: 2.5rem;
  background: var(--surface);
  border-radius: var(--radius-l);
  border: 1px solid var(--line);
}
.merch-thumb {
  margin: 0;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius-m);
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}
.merch-thumb img { width: 100%; height: 100%; object-fit: cover; }
.merch-body h3 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.merch-format {
  color: var(--fg-muted);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
  font-weight: 500;
}
.merch-price-row {
  display: flex; align-items: baseline; gap: 0.6rem;
  margin-bottom: 1.2rem;
}
.merch-price {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
}
.merch-shipping { color: var(--fg-muted); font-size: 0.9rem; }
.merch-description {
  color: var(--fg-muted);
  font-size: 0.98rem;
  margin-bottom: 1.8rem;
}
.merch-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===============================================================
   CONTACT — épuré, 3 boutons + Banniere2 pleine largeur
   =============================================================== */
.contact {
  padding: clamp(3rem, 6vw, 5rem) 0 0;
  text-align: center;
}
.contact .container { display: flex; flex-direction: column; align-items: center; }
.contact-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.contact-actions {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  margin-bottom: 2.5rem;
}
.contact-actions .btn,
.contact-actions .download-btn { min-width: 180px; }

.download-btn {
  display: inline-block; padding: 1rem 2.5rem;
  border: 1px solid var(--accent); color: var(--accent) !important;
  border-radius: var(--radius-s);
  font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 500;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.download-btn:hover { background: var(--accent); color: var(--fg) !important; transform: translateY(-2px); }

.contact-banniere {
  margin-top: 2.5rem;
  width: 100%;
  background: #000;
  overflow: hidden;
  position: relative;
}
.contact-banniere img {
  width: 100%;
  height: auto;
  display: block;
  filter: contrast(1.05) saturate(1.1);
}
.contact-banniere::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.4) 0%, transparent 30%, transparent 70%, rgba(10,10,10,0.6) 100%);
  pointer-events: none;
}

/* ===============================================================
   FOOTER
   =============================================================== */
.footer {
  padding: 2rem 0; border-top: 1px solid var(--line);
  color: var(--fg-muted); font-size: 0.85rem;
  background: var(--bg);
}
.footer-inner {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between;
}
.footer-links { display: flex; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.footer-links a { color: var(--fg-muted); transition: color .25s var(--ease); }
.footer-links a:hover { color: var(--accent); }

/* ===============================================================
   LIGHTBOX
   =============================================================== */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.95);
  display: flex; align-items: center; justify-content: center; padding: 2rem;
  opacity: 0; pointer-events: none; z-index: 1000;
  transition: opacity .3s var(--ease);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius-s); }
.lightbox-close {
  position: absolute; top: 2rem; right: 2rem; width: 48px; height: 48px;
  font-size: 2rem; color: var(--fg); line-height: 1;
}

/* ===============================================================
   LAZY EMBED (Spotify, YouTube, Discord) — pas de cookie avant clic
   =============================================================== */
.lazy-embed {
  position: relative; width: 100%; aspect-ratio: 16/9;
  background: #000; border-radius: var(--radius-m); overflow: hidden;
  cursor: pointer;
}
.lazy-embed > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.85; transition: opacity .25s var(--ease), transform .5s var(--ease);
}
.lazy-embed:hover > img { opacity: 1; transform: scale(1.03); }
.lazy-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.lazy-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 76px; height: 76px; border-radius: 50%;
  background: rgba(193, 39, 45, 0.92); color: var(--fg);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: background .25s var(--ease), transform .25s var(--ease);
  z-index: 2;
  box-shadow: 0 6px 24px rgba(193, 39, 45, 0.4);
}
.lazy-play svg { width: 32px; height: 32px; }
.lazy-play:hover { background: var(--accent-2); transform: translate(-50%, -50%) scale(1.05); }
.lazy-embed-discord .lazy-play {
  width: auto; height: auto; border-radius: 999px;
  padding: 0.8rem 1.5rem;
  background: #5865f2;
  font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
}
.lazy-embed-discord .lazy-play:hover { background: #7983ff; }
.lazy-embed-discord .lazy-play svg { width: 20px; height: 20px; }
.lazy-embed-discord { aspect-ratio: 4/3; background: #2c2f33; }
.lazy-label {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--fg-muted);
  white-space: nowrap;
  pointer-events: none;
  font-weight: 500;
}

/* ===============================================================
   RESPONSIVE
   =============================================================== */
@media (max-width: 1100px) {
  .nav-links { gap: 1rem; font-size: 0.76rem; }
  .music-player { grid-template-columns: 1fr; }
  .dates-panel.is-active { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .gallery-grid { column-count: 3; }
  .about-grid { grid-template-columns: 1fr; }
  .about-figure { max-height: 460px; }
  .merch-single { grid-template-columns: 1fr; padding: 2rem; }
  .merch-thumb { max-width: 320px; margin: 0 auto; }
  .anim-bg-videos .visuel-ep { width: 220px; opacity: 0.04; }
}
@media (max-width: 768px) {
  .nav-burger { display: block; order: 2; }
  .lang-switcher { order: 1; padding-left: 0; border-left: 0; }
  .nav-links {
    position: fixed; inset: 60px 0 0 0;
    flex-direction: column; align-items: center; justify-content: center;
    background: rgba(10,10,10,0.98);
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
    transform: translateX(100%); transition: transform .35s var(--ease);
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { font-size: 1.2rem; }
  .gallery-grid { column-count: 2; }
  .dates-panel.is-active { grid-template-columns: 1fr; }
  .date-card.is-landscape { grid-column: auto; }
  .footer-inner { flex-direction: column; text-align: center; }
  .about-sticker-pic { width: 70px; top: 0; right: 0; }
  .about-text > p:first-of-type { padding-right: 85px; }
}
@media (max-width: 480px) {
  .gallery-grid { column-count: 1; }
  .album-modal-content { padding: 1.5rem; }
  .merch-single { padding: 1.5rem; }
  .merch-price { font-size: 2.4rem; }
  .hero-banner { max-width: 95vw; }
}
