/* ============================================================
   FEELV — Feel Vlone
   Site bOYz Lyf£ — 1er juin 2026
   Palette : noir / blanc / rouge cinématique
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --c-bg:        #0a0a0a;
  --c-bg-soft:   #141414;
  --c-text:      #f4f4f4;
  --c-muted:     #888;
  --c-line:      #222;
  --c-red:       #D32F2F;
  --c-red-soft:  #8a1f1f;

  --f-display: 'UnifrakturMaguntia', 'Bebas Neue', 'Arial Narrow', serif;
  --f-mono:    'DM Mono', 'Menlo', monospace;

  --w-max:     1200px;
  --pad-x:     clamp(20px, 4vw, 60px);

  --ease:      cubic-bezier(.2, .8, .2, 1);
}

/* ---------- FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Mono:wght@300;400;500&display=swap');



/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ---------- BASE ---------- */
html { scroll-behavior: smooth; }

body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-mono);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 0;
}

h1 { font-size: clamp(56px, 12vw, 180px); }
h2 { font-size: clamp(36px, 6vw, 80px); }
h3 { font-size: clamp(22px, 3vw, 36px); }

.mono { font-family: var(--f-mono); }
.red  { color: var(--c-red); }
.muted { color: var(--c-muted); }

/* ---------- LAYOUT ---------- */
.wrap {
  width: 100%;
  max-width: var(--w-max);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

section {
  padding: clamp(60px, 10vw, 140px) 0;
  border-top: 1px solid var(--c-line);
}

section:first-of-type { border-top: 0; }

/* ---------- NAVBAR ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-line);
}

.nav__logo {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.1em;
}

.nav__logo .dot { color: var(--c-red); }

.nav__links {
  display: flex;
  gap: clamp(16px, 3vw, 40px);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav__links a {
  color: var(--c-muted);
  transition: color 0.3s var(--ease);
}

.nav__links a:hover { color: var(--c-text); }

/* ---------- Language switcher (FR/DE/EN) ---------- */
.lang-switch {
  display: inline-flex;
  gap: 6px;
  margin-left: clamp(12px, 2vw, 32px);
  padding-left: clamp(12px, 2vw, 32px);
  border-left: 1px solid var(--c-line);
  align-items: center;
}

.lang-switch button {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-muted);
  background: none;
  border: 0;
  padding: 6px 4px;
  cursor: pointer;
  transition: color 0.2s var(--ease);
}

.lang-switch button:hover { color: var(--c-text); }
.lang-switch button.is-active { color: var(--c-red); font-weight: 500; }

/* sur très petits écrans, on cache le sélecteur (pour gagner de la place sur la nav) */
@media (max-width: 540px) {
  .lang-switch {
    margin-left: 8px;
    padding-left: 8px;
    gap: 2px;
  }
  .lang-switch button { font-size: 10px; padding: 4px 2px; }
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  padding-top: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Background "facade" image — décommenter le <img class="hero__bg"> dans index.html */
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
  filter: contrast(105%) brightness(105%);
  z-index: 0;
  pointer-events: none;
    filter: brightness(0.55) contrast(110%);
}



.hero .wrap {
  position: relative;
  z-index: 2;
}

/* Texte hero : pristine, premier plan, ZÉRO ombre.
   La lisibilité vient de l'assombrissement de l'image en arrière (::after). */
.hero__title       { color: #fff; }
.hero__title .accent { color: #ff3838; }
.hero__tagline,
.hero__meta,
.hero__sub,
.hero__quote { /* couleurs gérées par leurs règles d'origine */ }

/* ---- Hero title : version image (logo blackletter custom) ---- */
.hero__title--img {
  /* on annule le font-size géant du h1 puisque c'est une image */
  font-size: 0;
  line-height: 0;
  margin: 12px 0 24px;
}

.hero__title--img img {
  display: block;
  width: clamp(280px, 50vw, 640px);
  height: auto;
  /* léger glow rouge pour faire respirer le logo sur l'image bg */
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.6))
          drop-shadow(0 0 1px rgba(0,0,0,0.95));
  /* (1) flottement lent — respiration */
  animation: logo-float 7s ease-in-out infinite;
  will-change: transform;
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* ============================================================
   MOTION IDENTITY — animations propres (vanilla, motion-safe)
   ============================================================ */

/* (3) Glow rouge qui suit la souris — ambiance vivante, discrète */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 480px;
  height: 480px;
  margin: -240px 0 0 -240px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 5;
  background: radial-gradient(circle, rgba(211,47,47,0.10) 0%, rgba(211,47,47,0.04) 35%, transparent 70%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.6s ease;
  will-change: transform;
}
.cursor-glow.is-active { opacity: 1; }

/* (2) Parallax : headroom de scale pour que le translate ne montre jamais de bord */
.cover__img { overflow: hidden; }
.cover__img img,
.progressive__thumb {
  will-change: transform;
}
.interlude__img {
  height: 118%;
  top: -9%;
  will-change: transform;
}

/* (5) Lightbox — preview agrandie de la progressive cover */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6vw;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
  cursor: zoom-out;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }

.lightbox img {
  max-width: min(560px, 90vw);
  max-height: 86vh;
  width: auto;
  height: auto;
  border: 1px solid var(--c-line);
  box-shadow: 0 30px 120px rgba(0,0,0,0.7);
  transform: scale(0.94);
  transition: transform 0.45s var(--ease);
}
.lightbox.is-open img { transform: scale(1); }

.lightbox__hint {
  position: absolute;
  bottom: 5vh;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-muted);
}

/* la progressive thumb devient cliquable visuellement */
.progressive__thumb {
  cursor: zoom-in;
  transition: transform 0.3s var(--ease), filter 0.3s var(--ease);
}
.progressive__thumb:hover {
  transform: scale(1.04);
  filter: brightness(1.1);
}

/* (4) Reveal cinématique — géré dans script.js (injection), enrichi ici en fallback */

/* Respect total de prefers-reduced-motion : on coupe tout le motion non-essentiel */
@media (prefers-reduced-motion: reduce) {
  .hero__title--img img { animation: none; }
  .cursor-glow { display: none; }
  .cover__img img,
  .progressive__thumb,
  .interlude__img { transform: none !important; }
}

.hero__tagline {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 32px;
}

.hero__quote {
  margin-top: 60px;
  font-family: var(--f-mono);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--c-muted);
  max-width: 500px;
  border-left: 2px solid var(--c-red);
  padding-left: 16px;
}

.hero__meta {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--f-display);
  font-size: clamp(72px, 16vw, 240px);
  line-height: 0.9;
  margin: 0;
}

.hero__title .accent { color: var(--c-red); }

.hero__sub {
  margin-top: 24px;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
  max-width: 600px;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding: 14px 28px;
  border: 1px solid var(--c-text);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
}

.hero__cta:hover {
  background: var(--c-red);
  border-color: var(--c-red);
  color: #fff;
}

.hero__cta .arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}

.hero__cta:hover .arrow { transform: translateX(4px); }

/* ---------- SECTION TITLE ---------- */
.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 40px;
}

.section-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--c-red);
}

/* ---------- COVER ---------- */
.cover {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 60px);
  align-items: center;
}

.cover__img {
  aspect-ratio: 1 / 1;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-line);
  position: relative;
  overflow: hidden;
}

.cover__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.cover__img .placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-muted);
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: 0.05em;
  text-align: center;
  padding: 20px;
}

.cover__info h2 {
  margin-bottom: 24px;
}

.cover__info p {
  color: var(--c-muted);
  max-width: 480px;
}

.cover__stats {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cover__stats dt { color: var(--c-muted); }
.cover__stats dd { margin: 0; color: var(--c-text); }

/* ---------- TRACKLIST ---------- */
.tracklist {
  margin-top: 40px;
  border-top: 1px solid var(--c-line);
}

.track {
  display: grid;
  grid-template-columns: 60px 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--c-line);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  position: relative;
}

.track:hover {
  padding-left: 16px;
  background: linear-gradient(90deg, rgba(211, 47, 47, 0.05), transparent);
}

.track__num {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--c-muted);
}

.track__title {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: 0.03em;
}

.track__single {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-red);
  padding: 4px 10px;
  border: 1px solid var(--c-red);
}

.track__link {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-muted);
  transition: color 0.3s var(--ease);
}

.track__link:hover { color: var(--c-text); }

.track--has-fiche .track__title::after {
  content: '·';
  color: var(--c-red);
  margin-left: 8px;
}

/* ---------- A.VIB GRAPH (trajectoire SVG) ---------- */
.avib-graph {
  margin-top: 48px;
  margin-bottom: 48px;
  padding: clamp(20px, 3vw, 32px);
  background:
    radial-gradient(ellipse at top right, rgba(211,47,47,0.04), transparent 60%),
    var(--c-bg-soft);
  border: 1px solid var(--c-line);
}

.avib-graph__caption {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.avib-graph__svg {
  width: 100%;
  height: auto;
  display: block;
  font-family: var(--f-mono);
}

/* reference grid lines */
.avib-graph__refs line {
  stroke: var(--c-line);
  stroke-width: 1;
  stroke-dasharray: 2, 6;
}

.avib-graph__refnum {
  font-size: 11px;
  fill: var(--c-text);
  text-anchor: end;
  font-weight: 500;
}

.avib-graph__reflabel {
  font-size: 9px;
  fill: var(--c-muted);
  text-anchor: end;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* trajectory line connecting dominant levels */
.avib-graph__line {
  fill: none;
  stroke: var(--c-red);
  stroke-width: 1.5;
  stroke-opacity: 0.55;
  stroke-linejoin: round;
  stroke-linecap: round;
}

/* per-track elements */
.avib-graph__range {
  stroke: var(--c-red);
  stroke-width: 6;
  stroke-opacity: 0.25;
  stroke-linecap: round;
  transition: stroke-opacity 0.25s var(--ease);
}

.avib-graph__cap {
  stroke: var(--c-red);
  stroke-width: 1.5;
  stroke-opacity: 0.5;
}

.avib-graph__dot {
  fill: var(--c-red);
  stroke: var(--c-bg-soft);
  stroke-width: 2;
  transition: r 0.2s var(--ease), fill 0.2s var(--ease);
}

.avib-graph__num {
  font-size: 11px;
  fill: var(--c-muted);
  text-anchor: middle;
  letter-spacing: 0.1em;
  transition: fill 0.2s var(--ease);
}

.avib-graph__label {
  font-size: 10px;
  fill: var(--c-muted);
  text-anchor: middle;
  letter-spacing: 0.05em;
  opacity: 0.7;
  transition: fill 0.2s var(--ease), opacity 0.2s var(--ease);
}

/* hover : highlight track */
.avib-graph__tracks a { cursor: pointer; }
.avib-graph__tracks a:hover .avib-graph__range { stroke-opacity: 0.6; }
.avib-graph__tracks a:hover .avib-graph__dot   { r: 9; }
.avib-graph__tracks a:hover .avib-graph__num   { fill: var(--c-red); }
.avib-graph__tracks a:hover .avib-graph__label { fill: var(--c-text); opacity: 1; }

/* sur petits écrans : on garde le viewBox mais on cache les labels longs */
@media (max-width: 720px) {
  .avib-graph__label { display: none; }
  .avib-graph__reflabel { display: none; }
}

/* ---------- A.VIB CARDS ---------- */
.avib-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.avib-card {
  background: var(--c-bg-soft);
  border: 1px solid var(--c-line);
  padding: 28px;
  transition: all 0.4s var(--ease);
  display: block;
  position: relative;
  overflow: hidden;
}

.avib-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--c-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.avib-card:hover {
  border-color: var(--c-red);
  transform: translateY(-4px);
}

.avib-card:hover::before { transform: scaleX(1); }

.avib-card__num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--c-muted);
  margin-bottom: 10px;
}

.avib-card__title {
  font-family: var(--f-display);
  font-size: 24px;
  margin-bottom: 16px;
  line-height: 1;
}

.avib-card__date {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--c-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.avib-card__level {
  font-family: var(--f-display);
  font-size: 56px;
  line-height: 1;
  color: var(--c-red);
  margin-bottom: 8px;
}

.avib-card__emotion {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.avib-card__arrow {
  position: absolute;
  bottom: 28px;
  right: 28px;
  font-size: 16px;
  transition: transform 0.3s var(--ease);
}

.avib-card:hover .avib-card__arrow { transform: translate(4px, -4px); }

/* ---------- CONSENT BANNER (RGPD / nLPD) ---------- */
.consent {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--c-line);
  padding: clamp(16px, 2.5vw, 24px) var(--pad-x);
  display: flex;
  gap: clamp(12px, 2vw, 24px);
  align-items: center;
  flex-wrap: wrap;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}

.consent[hidden] {
  display: none !important;
}

.consent.is-hiding {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}

.consent__icon {
  font-family: var(--f-display);
  font-size: 24px;
  color: var(--c-red);
  flex-shrink: 0;
}

.consent__body {
  flex: 1 1 320px;
  font-size: 12px;
  line-height: 1.55;
  color: var(--c-muted);
}

.consent__body strong { color: var(--c-text); }
.consent__body a { color: var(--c-red); text-decoration: underline; }

.consent__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.consent__btn {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--c-line);
  background: var(--c-bg-soft);
  color: var(--c-text);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.consent__btn:hover {
  border-color: var(--c-red);
  color: var(--c-red);
}

.consent__btn--primary {
  background: var(--c-red);
  border-color: var(--c-red);
  color: #fff;
}

.consent__btn--primary:hover {
  background: #ff3838;
  border-color: #ff3838;
  color: #fff;
}

@media (max-width: 560px) {
  .consent { gap: 12px; }
  .consent__actions { width: 100%; justify-content: flex-end; }
}

/* ---------- GATE (stats privées aux fans) ---------- */
.gate {
  margin-top: 40px;
  border: 1px solid var(--c-line);
  background:
    radial-gradient(ellipse at top right, rgba(211,47,47,0.06), transparent 60%),
    var(--c-bg-soft);
  padding: clamp(32px, 5vw, 60px);
  position: relative;
  overflow: hidden;
}

.gate::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-red), transparent);
}

.gate__icon {
  font-size: 32px;
  color: var(--c-red);
  margin-bottom: 16px;
  font-family: var(--f-display);
}

.gate__title {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 0 0 16px;
}

.gate__sub {
  font-size: 14px;
  color: var(--c-muted);
  max-width: 600px;
  margin: 0 0 32px;
  line-height: 1.6;
}

.gate__platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.gate__platform {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  text-decoration: none;
  color: inherit;
  font-family: var(--f-mono);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  width: 100%;
  text-align: left;
}

.gate__platform:hover {
  border-color: var(--c-red);
  transform: translateY(-2px);
  background: rgba(211,47,47,0.04);
}

.gate__platform-name {
  font-family: var(--f-display);
  font-size: 18px;
  letter-spacing: 0.05em;
}

.gate__platform-action {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-muted);
}

.gate__platform:hover .gate__platform-action {
  color: var(--c-red);
}

.gate__claim {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-muted);
  border-bottom: 1px solid currentColor;
  padding: 4px 0;
  cursor: pointer;
  transition: color 0.3s var(--ease);
  background: none;
  border-radius: 0;
  border-top: 0;
  border-left: 0;
  border-right: 0;
}

.gate__claim:hover { color: var(--c-red); }
.gate__claim--back { margin-top: 8px; }

.gate__note {
  margin: 28px 0 0;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-muted);
  opacity: 0.7;
}

/* badge "verified" affiché au-dessus des stats une fois unlock */
.gate__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(211,47,47,0.1);
  border: 1px solid var(--c-red);
  margin-bottom: 32px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.gate__badge-icon {
  color: var(--c-red);
  font-size: 10px;
  animation: pulse 2s ease-in-out infinite;
}

.gate__reset {
  background: none;
  border: 0;
  color: var(--c-muted);
  cursor: pointer;
  font-size: 14px;
  padding: 0 0 0 6px;
  line-height: 1;
}

.gate__reset:hover { color: var(--c-red); }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ---------- STATS ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.stat {
  border: 1px solid var(--c-line);
  padding: 24px;
}

.stat__value {
  font-family: var(--f-display);
  font-size: 48px;
  line-height: 1;
  color: var(--c-red);
}

.stat__label {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-muted);
}

/* ---------- INTERLUDE (full-bleed character band) ---------- */
.interlude {
  position: relative;
  padding: 0;
  margin: 0;
  border: 0;
  height: clamp(360px, 60vw, 720px);
  overflow: hidden;
}

.interlude__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(20%) contrast(108%);
}

.interlude__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(40px, 6vw, 80px);
  background: linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.1) 50%, rgba(10,10,10,0.95) 100%);
}

.interlude__quote {
  font-family: var(--f-display);
  font-size: clamp(40px, 8vw, 100px);
  letter-spacing: 0.04em;
  margin: 0;
  color: var(--c-text);
  line-height: 1;
}

/* ---------- PROGRESSIVE thumbnail (album section) ---------- */
.progressive {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-line);
}

.progressive__thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  flex-shrink: 0;
}

.progressive__label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-text);
}

.progressive__sub {
  font-size: 12px;
  color: var(--c-muted);
  margin-top: 4px;
}

/* ---------- TRUTH (vérité humaine — fragments bruts) ---------- */
.truth {
  padding: clamp(100px, 22vh, 220px) 0;
  border-top: 1px solid var(--c-line);
}

.truth__mark {
  width: 40px;
  height: 2px;
  background: var(--c-red);
  margin-bottom: 56px;
}

.truth__lines {
  max-width: 640px;
}

.truth__lines p {
  font-family: var(--f-mono);
  font-weight: 300;
  font-size: clamp(20px, 2.8vw, 30px);
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: var(--c-muted);
  margin: 0 0 clamp(40px, 7vh, 72px);
  transition: color 0.6s var(--ease);
}

.truth__lines p:last-child { margin-bottom: 0; }

/* la dernière ligne (la "mission") en blanc franc pour la faire ressortir doucement */
.truth__lines p.truth__key {
  color: var(--c-text);
}

/* au survol/focus de la section, les lignes s'éclaircissent — présence discrète */
.truth:hover .truth__lines p { color: var(--c-text); }

/* ---------- DISCOGRAPHY ---------- */
.discog {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  border-top: 1px solid var(--c-line);
}

.discog__item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--c-line);
  transition: all 0.3s var(--ease);
}

.discog__item:hover {
  padding-left: 12px;
}

.discog__year {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--c-muted);
  letter-spacing: 0.1em;
}

.discog__title {
  font-family: var(--f-display);
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: 0.03em;
}

.discog__tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-muted);
}

.discog__item--current .discog__title { color: var(--c-red); }
.discog__item--current .discog__tag {
  color: var(--c-red);
  border: 1px solid var(--c-red);
  padding: 4px 10px;
}

/* ---------- CREDITS ---------- */
.credits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.credit {
  border-top: 2px solid var(--c-red);
  padding: 24px 0;
}

.credit__role {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 12px;
}

.credit__name {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: 0.04em;
}

.credit__alias {
  margin-top: 6px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--c-muted);
}

/* ---------- CONTACT ---------- */
.contact {
  text-align: center;
}

.contact h2 {
  margin-bottom: 32px;
}

.contact__email {
  display: block;
  font-family: var(--f-mono);
  font-size: clamp(16px, 2vw, 22px);
  margin: 8px 0;
  letter-spacing: 0.05em;
  transition: color 0.3s var(--ease);
}

.contact__email:hover { color: var(--c-red); }

/* ---------- FOOTER ---------- */
.foot {
  padding: 40px var(--pad-x);
  border-top: 1px solid var(--c-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-muted);
  flex-wrap: wrap;
  gap: 16px;
}

.foot__tags { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- RESPONSIVE ---------- */

/* Tablette (≤ 900px) : grilles 2-col → 1-col, nav plus compacte */
@media (max-width: 900px) {
  .cover         { grid-template-columns: 1fr; }
  .fiche__hero   { grid-template-columns: 1fr; gap: 32px; }
  .pk__grid      { grid-template-columns: 1fr; gap: 40px; }
  .nav__links {
    gap: clamp(8px, 1.5vw, 16px);
  }
  .nav__links a {
    font-size: 10px;
    letter-spacing: 0.1em;
  }
}

/* Mobile (≤ 700px) : nav scrollable horizontalement,
   lang-switch toujours visible, on cache la section "stats" link
   (la moins critique) pour gagner de la place */
@media (max-width: 700px) {
  .nav {
    padding: 14px var(--pad-x);
  }
  .nav__logo { font-size: 18px; }
  .nav__links {
    gap: 14px;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }
  .nav__links::-webkit-scrollbar { display: none; }
  .nav__links a {
    flex-shrink: 0;
    white-space: nowrap;
  }
  /* tracklist : on cache le badge "Single" sur mobile, le lien A.VIB suffit */
  .track { grid-template-columns: 40px 1fr auto; gap: 12px; }
  .track__single { display: none; }
}

/* Très petit mobile (≤ 480px) : pousse encore */
@media (max-width: 480px) {
  .nav__links a {
    font-size: 9.5px;
    letter-spacing: 0.08em;
  }
  /* hero meta : on réduit pour éviter overflow */
  .hero__meta {
    font-size: 10px;
    letter-spacing: 0.2em;
  }
  .hero__tagline {
    font-size: 10px;
    letter-spacing: 0.2em;
  }
}

/* ---------- FUTUR 3D HOOK ----------
   Quand on intégrera Three.js, on injectera un canvas
   en background du .hero ou en cover album avec id="three-stage"
   ---------------------------------- */
#three-stage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;            /* au-dessus de l'image, sous le texte */
  pointer-events: none;
  mix-blend-mode: screen; /* particules rouges qui "éclairent" l'image */
  opacity: 0.9;
}

/* le texte (wrap) reste toujours au-dessus de tout */
.hero > .wrap { position: relative; z-index: 3; }
