/* ===========================
   FZR – FamilyZ Record
   styles.css — v3
=========================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Reset global liens — supprime le bleu navigateur */
a { color: inherit; text-decoration: none; }
a:visited { color: inherit; }
a:hover { color: inherit; }

:root {
  --bg:    #060606;
  --bg2:   #0d0d0d;
  --bg3:   #141414;
  --bg4:   #1c1c1c;
  --b:     rgba(255,255,255,0.06);
  --b2:    rgba(255,255,255,0.11);
  --gold:  #c9a84c;
  --gold2: #e2c06a;
  --gold3: #f5d98e;
  --gbg:   rgba(201,168,76,0.08);
  --gglow: rgba(201,168,76,0.22);
  --w:     #fff;
  --w70:   rgba(255,255,255,0.70);
  --w50:   rgba(255,255,255,0.50);
  --w30:   rgba(255,255,255,0.30);
  --w10:   rgba(255,255,255,0.07);
  --r:     14px;
  --rs:    8px;
  --ease:  cubic-bezier(0.4,0,0.2,1);
  --t:     0.3s var(--ease);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--w);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}
body.loading, body.modal-open { overflow: hidden; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

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

.container { max-width: 1240px; margin: 0 auto; padding: 0 36px; }

/* ===========================
   LOADER
=========================== */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 48px;
  transition: opacity 0.9s var(--ease), visibility 0.9s var(--ease);
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader__inner { position: relative; display: flex; align-items: center; justify-content: center; }
.loader__halo { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,0.2) 0%, transparent 70%); animation: lHalo 3s ease-in-out infinite; }
.loader__ring { position: absolute; border-radius: 50%; border: 1px solid rgba(201,168,76,0.18); }
.ring--1 { width: 230px; height: 230px; animation: lRing 2.4s ease-in-out infinite 0s; }
.ring--2 { width: 265px; height: 265px; animation: lRing 2.4s ease-in-out infinite 0.6s; }
.loader__logo { width: 170px; height: 170px; object-fit: contain; position: relative; z-index: 1; filter: brightness(1.3) drop-shadow(0 0 28px rgba(201,168,76,0.35)); animation: lLogoIn 1s cubic-bezier(0.16,1,0.3,1) forwards; opacity: 0; }

.loader__bottom { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.loader__name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; letter-spacing: 0.18em; color: var(--gold2); text-shadow: 0 0 20px var(--gglow); animation: lFade 0.8s ease forwards 0.5s; opacity: 0; }
.loader__bar-wrap { width: 220px; height: 2px; background: var(--b2); border-radius: 2px; overflow: hidden; }
.loader__bar { height: 100%; width: 0%; background: linear-gradient(90deg, var(--gold), var(--gold2), var(--gold3)); border-radius: 2px; animation: lBar 2.2s var(--ease) forwards 0.4s; }
.loader__sub { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--w30); animation: lFade 0.8s ease forwards 0.8s; opacity: 0; }

@keyframes lHalo { 0%,100%{transform:scale(1);opacity:.6} 50%{transform:scale(1.1);opacity:1} }
@keyframes lRing { 0%{transform:scale(.85);opacity:0} 50%{transform:scale(1);opacity:1} 100%{transform:scale(1.15);opacity:0} }
@keyframes lLogoIn { from{opacity:0;transform:scale(.8) translateY(12px)} to{opacity:1;transform:scale(1) translateY(0)} }
@keyframes lBar { 0%{width:0%} 100%{width:100%} }
@keyframes lFade { to{opacity:1} }

/* ===========================
   MODAL UNIVERSEL
=========================== */
.modal {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}
.modal.active { opacity: 1; visibility: visible; }

.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(4,4,4,0.95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
}

.modal__close {
  position: absolute; top: 24px; right: 28px; z-index: 10;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid var(--b2);
  color: var(--w70); cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--t);
}
.modal__close:hover { background: var(--gbg); border-color: rgba(201,168,76,0.4); color: var(--gold2); }
.modal__close svg { width: 18px; height: 18px; }

.modal__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid var(--b2);
  color: var(--w70); cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--t);
}
.modal__nav:hover { background: var(--gbg); border-color: rgba(201,168,76,0.5); color: var(--gold2); transform: translateY(-50%) scale(1.06); }
.modal__nav svg { width: 22px; height: 22px; }
.modal__prev { left: 28px; }
.modal__next { right: 28px; }
.modal__nav.hidden { display: none; }

.modal__content {
  position: relative; z-index: 5;
  max-width: 90vw; max-height: 85vh;
  display: flex; align-items: center; justify-content: center;
  animation: modalIn 0.35s cubic-bezier(0.16,1,0.3,1);
}

.modal__content img {
  max-width: 90vw; max-height: 82vh;
  object-fit: contain; border-radius: var(--rs);
  box-shadow: 0 32px 80px rgba(0,0,0,0.8);
}

.modal__content video {
  max-width: 88vw; max-height: 80vh;
  border-radius: var(--rs);
  box-shadow: 0 32px 80px rgba(0,0,0,0.8);
  background: #000;
}

.modal__caption {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 10; font-size: 13px; color: var(--w50); letter-spacing: 0.06em;
  background: rgba(6,6,6,0.7); backdrop-filter: blur(8px);
  padding: 8px 20px; border-radius: 100px; border: 1px solid var(--b2);
  white-space: nowrap;
}

@keyframes modalIn { from{opacity:0;transform:scale(.93)} to{opacity:1;transform:scale(1)} }

/* ===========================
   TYPOGRAPHY
=========================== */
.section-tag {
  display: inline-block; font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px;
  text-shadow: 0 0 12px rgba(201,168,76,0.5);
}

/* Titres avec glow néon doré */
.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 400; line-height: 1.12;
}
.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold3) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.45));
}

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

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 32px; border-radius: 100px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.04em;
  text-decoration: none; cursor: pointer; border: none; transition: var(--t);
  touch-action: manipulation;
}
button { touch-action: manipulation; }
.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  color: #0a0800; font-weight: 600;
  box-shadow: 0 4px 20px rgba(201,168,76,0.25);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 44px rgba(201,168,76,0.45); }
.btn--outline { background: transparent; color: var(--w70); border: 1px solid var(--b2); }
.btn--outline:hover { border-color: rgba(201,168,76,0.5); color: var(--gold2); background: var(--gbg); }
.btn--large { padding: 18px 44px; font-size: 15px; }
.btn--full { width: 100%; }

/* ===========================
   NAV
=========================== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 18px 0; transition: padding .4s var(--ease), background .4s var(--ease); }
.nav.scrolled { padding: 12px 0; background: rgba(6,6,6,0.92); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border-bottom: 1px solid var(--b); }
.nav__inner { max-width: 1240px; margin: 0 auto; padding: 0 36px; display: flex; align-items: center; justify-content: space-between; }
.nav__logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav__logo-img { height: 38px; width: auto; object-fit: contain; filter: brightness(1.2) drop-shadow(0 2px 10px rgba(201,168,76,0.3)); }
.nav__logo-text { font-size: 12px; color: var(--w30); letter-spacing: 0.1em; font-weight: 300; }
.nav__links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav__links a { text-decoration: none; color: var(--w50); font-size: 13px; letter-spacing: 0.04em; transition: var(--t); }
.nav__links a:not(.nav__cta):hover { color: var(--w); }
.nav__cta { background: var(--gbg) !important; color: var(--gold) !important; padding: 9px 20px !important; border-radius: 100px; border: 1px solid rgba(201,168,76,0.22) !important; }
.nav__cta:hover { background: rgba(201,168,76,0.14) !important; color: var(--gold2) !important; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__burger span { display: block; width: 22px; height: 1.5px; background: var(--w70); border-radius: 2px; transition: var(--t); }

/* ===========================
   HERO
=========================== */
.hero { min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; overflow: hidden; padding: 120px 24px 100px; }
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__orb { position: absolute; border-radius: 50%; filter: blur(100px); }
.orb--1 { width: 550px; height: 550px; background: rgba(201,168,76,0.1); top: -180px; left: -180px; }
.orb--2 { width: 450px; height: 450px; background: rgba(100,50,180,0.08); bottom: -120px; right: -120px; }
.hero__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.012) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,0.012) 1px,transparent 1px); background-size: 80px 80px; }

.hero__content { position: relative; z-index: 1; text-align: center; max-width: 800px; }

.hero__logo-wrap { position: relative; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 36px; opacity: 0; animation: hLogoIn 1.2s cubic-bezier(0.16,1,0.3,1) forwards 0.1s; }
.hero__logo-halo { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,0.18) 0%, transparent 70%); animation: lHalo 5s ease-in-out infinite; }
.hero__logo { width: 200px; height: 200px; object-fit: contain; position: relative; z-index: 1; filter: brightness(1.3) drop-shadow(0 4px 32px rgba(201,168,76,0.4)); }

.hero__eyebrow { display: flex; align-items: center; justify-content: center; gap: 12px; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--w30); margin-bottom: 20px; opacity: 0; animation: fUp .8s ease forwards 0.5s; }
.dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); display: inline-block; box-shadow: 0 0 6px var(--gold); }

/* HERO TITLE — effet néon glow */
.hero__title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(4rem, 9vw, 8rem); font-weight: 300; line-height: 1.04; margin-bottom: 24px;
  opacity: 0; animation: fUp .8s ease forwards 0.7s;
  text-shadow: 0 0 40px rgba(255,255,255,0.04);
}
.hero__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold3) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 14px rgba(201,168,76,0.55));
}

.hero__desc { font-size: 15px; color: var(--w50); margin-bottom: 40px; line-height: 1.85; letter-spacing: 0.02em; opacity: 0; animation: fUp .8s ease forwards 0.9s; }
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fUp .8s ease forwards 1.1s; }

.hero__stats { position: absolute; bottom: 0; left: 0; right: 0; display: flex; align-items: center; justify-content: center; border-top: 1px solid var(--b); background: rgba(6,6,6,0.75); backdrop-filter: blur(12px); opacity: 0; animation: lFade .8s ease forwards 1.4s; }
.hero__stat { display: flex; flex-direction: column; align-items: center; padding: 22px 52px; gap: 3px; }
.sep { width: 1px; height: 28px; background: var(--b2); }
.stat__n { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 600; color: var(--gold2); line-height: 1; text-shadow: 0 0 16px rgba(201,168,76,0.4); }
.stat__n sup { font-size: .55em; font-weight: 400; color: var(--w50); vertical-align: super; }
.stat__l { font-size: 10px; color: var(--w30); letter-spacing: 0.12em; text-transform: uppercase; }

@keyframes hLogoIn { from{opacity:0;transform:scale(.8) translateY(16px)} to{opacity:1;transform:scale(1) translateY(0)} }
@keyframes fUp { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }

/* ===========================
   TICKER BAND
=========================== */
.ticker-band { overflow: hidden; background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, rgba(201,168,76,0.06) 100%); border-top: 1px solid rgba(201,168,76,0.25); border-bottom: 1px solid rgba(201,168,76,0.25); padding: 0; position: relative; }
.ticker-band::before, .ticker-band::after { content:''; position:absolute; top:0; bottom:0; width:80px; z-index:2; pointer-events:none; }
.ticker-band::before { left:0; background: linear-gradient(to right, var(--bg) 0%, transparent 100%); }
.ticker-band::after { right:0; background: linear-gradient(to left, var(--bg) 0%, transparent 100%); }
.ticker-track { display: flex; align-items: center; gap: 0; width: max-content; animation: tickerScroll 20s linear infinite; padding: 18px 0; }
.ticker-item { font-size: 14px; font-weight: 300; letter-spacing: 0.08em; color: var(--w70); white-space: nowrap; padding: 0 28px; }
.ticker-item em { font-style: normal; font-weight: 600; background: linear-gradient(135deg, var(--gold) 0%, var(--gold3) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; filter: drop-shadow(0 0 8px rgba(201,168,76,0.5)); }
.ticker-sep { color: var(--gold); opacity: 0.6; font-size: 10px; flex-shrink: 0; }
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===========================
   SERVICES
=========================== */
.services { padding: 140px 0; background: var(--bg2); border-top: 1px solid var(--b); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 16px; }
.svc-card { position: relative; background: var(--bg3); border: 1px solid var(--b); border-radius: var(--r); padding: 28px 24px; display: flex; flex-direction: column; gap: 10px; transition: var(--t); overflow: hidden; }
.svc-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, transparent 60%); opacity: 0; transition: var(--t); pointer-events: none; }
.svc-card:hover { border-color: rgba(201,168,76,0.35); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(201,168,76,0.12); }
.svc-card:hover::before { opacity: 1; }
.svc-card--wide { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 24px; padding: 28px 32px; background: var(--gbg); border-color: rgba(201,168,76,0.2); }
.svc-card--wide h3 { font-size: 18px; flex: 1; }
.svc-card--wide p { flex: 2; margin-bottom: 0; }
.svc-card__num { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; background: linear-gradient(135deg, var(--gold) 0%, var(--gold3) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; filter: drop-shadow(0 0 8px rgba(201,168,76,0.4)); opacity: 0.7; line-height: 1; }
.svc-card__icon { width: 36px; height: 36px; color: var(--gold); opacity: 0.8; flex-shrink: 0; }
.svc-card h3 { font-size: 15px; font-weight: 500; line-height: 1.35; margin: 0; transition: var(--t); }
.svc-card:hover h3 { color: var(--gold2); text-shadow: 0 0 16px rgba(226,192,106,0.25); }
.svc-card p { font-size: 13px; color: var(--w50); line-height: 1.6; font-weight: 300; margin: 0; }
.svc-card__badge { display: inline-block; margin-top: auto; padding: 4px 12px; border-radius: 20px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; background: linear-gradient(135deg, rgba(201,168,76,0.18) 0%, rgba(201,168,76,0.08) 100%); border: 1px solid rgba(201,168,76,0.3); color: var(--gold2); white-space: nowrap; flex-shrink: 0; }
@media (max-width: 768px) { .svc-grid { grid-template-columns: 1fr; } .svc-card--wide { flex-direction: column; align-items: flex-start; } }

/* ===========================
   AUDIO PLAYER
=========================== */
.musiques { padding: 140px 0; background: var(--bg); }
.player { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--b); border: 1px solid var(--b); border-radius: var(--r); overflow: hidden; }
.player__main { background: var(--bg2); padding: 48px; display: flex; flex-direction: column; align-items: center; gap: 36px; }
.player__artwork { position: relative; width: 180px; height: 180px; }
.player__artwork img { width: 100%; height: 100%; object-fit: contain; filter: brightness(1.2) drop-shadow(0 4px 24px rgba(201,168,76,0.3)); animation: spinSlow 30s linear infinite paused; }
.player__artwork img.spinning { animation-play-state: running; }
.player__artwork-glow { position: absolute; inset: -20px; border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,0.18) 0%, transparent 70%); pointer-events: none; }
.player__controls { width: 100%; display: flex; flex-direction: column; gap: 20px; align-items: center; }
.player__now-playing { text-align: center; }
.player__label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); text-shadow: 0 0 10px var(--gglow); }
.player__now-playing h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 600; margin: 4px 0 2px; text-shadow: 0 0 20px rgba(226,192,106,0.2); }
.player__now-playing p { font-size: 12px; color: var(--w30); }
.player__progress-wrap { width: 100%; display: flex; align-items: center; gap: 12px; font-size: 11px; color: var(--w30); }
.player__progress { flex: 1; height: 3px; background: var(--b2); border-radius: 3px; position: relative; cursor: pointer; }
.player__progress:hover { height: 5px; }
.player__progress-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold2)); border-radius: 3px; width: 0%; transition: width 0.1s linear; }
.player__progress-thumb { position: absolute; top: 50%; right: -6px; transform: translateY(-50%); width: 12px; height: 12px; border-radius: 50%; background: var(--gold2); border: 2px solid var(--bg2); opacity: 0; transition: opacity var(--t); box-shadow: 0 0 8px var(--gglow); }
.player__progress:hover .player__progress-thumb { opacity: 1; }
.player__btns { display: flex; align-items: center; gap: 16px; }
.player__btn { width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer; background: var(--w10); color: var(--w70); display: flex; align-items: center; justify-content: center; transition: var(--t); }
.player__btn svg { width: 20px; height: 20px; }
.player__btn:hover { background: var(--b2); color: var(--w); }
.player__btn--play { width: 56px; height: 56px; background: linear-gradient(135deg, var(--gold), var(--gold2)); color: #0a0800; box-shadow: 0 4px 20px rgba(201,168,76,0.3); }
.player__btn--play svg { width: 24px; height: 24px; }
.player__btn--play:hover { transform: scale(1.07); box-shadow: 0 8px 32px rgba(201,168,76,0.5); }
.player__tracklist { background: var(--bg3); overflow-y: auto; max-height: 420px; }
.track { display: flex; align-items: center; gap: 16px; padding: 20px 24px; border-bottom: 1px solid var(--b); cursor: pointer; transition: var(--t); }
.track:last-child { border-bottom: none; }
.track:hover { background: var(--w10); }
.track.active { background: var(--gbg); border-left: 2px solid var(--gold); }
.track__n { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--w30); min-width: 28px; transition: var(--t); }
.track.active .track__n { color: var(--gold); text-shadow: 0 0 10px var(--gglow); }
.track__info { flex: 1; }
.track__info strong { display: block; font-size: 14px; font-weight: 500; color: var(--w); }
.track__info span { font-size: 12px; color: var(--w30); font-weight: 300; }
.track__bars { display: flex; align-items: flex-end; gap: 2px; height: 16px; opacity: 0; }
.track.active .track__bars { opacity: 1; }
.track__bars span { width: 3px; background: var(--gold); border-radius: 2px; height: 8px; animation: barBounce 0.8s ease-in-out infinite; }
.track__bars span:nth-child(2) { animation-delay: 0.2s; height: 12px; }
.track__bars span:nth-child(3) { animation-delay: 0.4s; height: 6px; }
@keyframes spinSlow { to { transform: rotate(360deg); } }
@keyframes barBounce { 0%,100%{height:4px} 50%{height:16px} }

/* ===========================
   CLIPS
=========================== */
.clips { padding: 140px 0; background: var(--bg2); border-top: 1px solid var(--b); }
.clips__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--b); border: 1px solid var(--b); border-radius: var(--r); overflow: hidden; }
.clip-card { background: var(--bg3); overflow: hidden; cursor: pointer; }
.clip-card__thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.clip-card__thumb video { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); pointer-events: none; }
.clip-card:hover .clip-card__thumb video { transform: scale(1.04); }
.clip-card__overlay { position: absolute; inset: 0; background: rgba(6,6,6,0.45); display: flex; align-items: center; justify-content: center; transition: background var(--t); }
.clip-card:hover .clip-card__overlay { background: rgba(6,6,6,0.25); }
.clip-play-btn { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold2)); color: #0a0800; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--t); box-shadow: 0 4px 24px rgba(201,168,76,0.4); }
.clip-play-btn svg { width: 26px; height: 26px; }
.clip-card:hover .clip-play-btn { transform: scale(1.1); box-shadow: 0 8px 36px rgba(201,168,76,0.6); }
.clip-card__info { padding: 18px 20px; border-top: 1px solid var(--b); }
.clip-card__info h4 { font-size: 14px; font-weight: 500; margin-bottom: 3px; }
.clip-card__info p { font-size: 12px; color: var(--w30); font-weight: 300; }

/* ===========================
   ARTISTES
=========================== */
.artistes { padding: 140px 0; background: var(--bg); border-top: 1px solid var(--b); }
.artistes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--b); margin-bottom: 48px; border: 1px solid var(--b); border-radius: var(--r); overflow: hidden; }
.artiste-card { background: var(--bg2); overflow: hidden; position: relative; text-decoration: none; display: block; }
.artiste-card__img-wrap { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.artiste-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .5s var(--ease); }
.artiste-card:hover .artiste-card__img-wrap img { transform: scale(1.07); }
.artiste-card__shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,6,6,0.96) 0%, rgba(6,6,6,0.3) 55%, transparent 100%); }
.artiste-card__info { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px; }
.artiste-card__info h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; margin-bottom: 3px; }
.artiste-card__info p { font-size: 12px; color: var(--w50); font-weight: 300; margin-bottom: 8px; }
.artiste-card__cta { font-size: 11px; color: var(--gold); letter-spacing: 0.08em; font-weight: 500; opacity: 0; transform: translateY(6px); display: block; transition: var(--t); text-shadow: 0 0 10px var(--gglow); }
.artiste-card:hover .artiste-card__cta { opacity: 1; transform: translateY(0); }

/* Galerie backstage */
.artiste-gallery { margin-top: 8px; }
.gallery-label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--w30); margin-bottom: 16px; }
.artiste-gallery__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
.artiste-gallery__grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center top; border-radius: var(--rs); transition: transform .4s var(--ease), opacity .4s var(--ease), box-shadow .4s var(--ease); opacity: 0.72; cursor: pointer; }
.artiste-gallery__grid img:hover { transform: scale(1.03); opacity: 1; box-shadow: 0 8px 28px rgba(201,168,76,0.2); }

/* ===========================
   DISCOGRAPHIE
=========================== */
.disco { padding: 140px 0; background: var(--bg2); border-top: 1px solid var(--b); }
.disco__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.pochette { position: relative; overflow: hidden; border-radius: var(--rs); cursor: pointer; transition: box-shadow var(--t); }
.pochette:hover { box-shadow: 0 8px 32px rgba(201,168,76,0.2); }
.pochette img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform .4s var(--ease); }
.pochette:hover img { transform: scale(1.06); }
.pochette__hover { position: absolute; inset: 0; background: rgba(6,6,6,0.75); backdrop-filter: blur(4px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; opacity: 0; transition: opacity var(--t); }
.pochette:hover .pochette__hover { opacity: 1; }
.pochette__hover span { font-size: 13px; font-weight: 500; text-align: center; padding: 0 10px; }
.pochette__hover small { font-size: 11px; color: var(--gold2); text-shadow: 0 0 8px var(--gglow); }

/* ===========================
   STUDIO — CARROUSEL DÉFILANT
=========================== */
.studio { padding: 140px 0 100px; background: var(--bg); border-top: 1px solid var(--b); }
.studio__header { text-align: center; margin-bottom: 56px; padding: 0 36px; }
.studio__carousel { overflow: hidden; position: relative; }
/* fade edges */
.studio__carousel::before,
.studio__carousel::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.studio__carousel::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.studio__carousel::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }

.studio__track {
  display: flex; gap: 14px;
  animation: studioScroll 22s linear infinite;
  width: max-content;
}
.studio__carousel:hover .studio__track { animation-play-state: paused; }

.studio__slide {
  flex-shrink: 0; width: 420px; border-radius: var(--r); overflow: hidden;
  cursor: pointer; transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.studio__slide:hover { transform: scale(1.02); box-shadow: 0 12px 40px rgba(201,168,76,0.15); }
.studio__slide img { width: 100%; height: 280px; object-fit: cover; display: block; }

.studio__hint { text-align: center; margin-top: 24px; font-size: 11px; color: var(--w30); letter-spacing: 0.1em; text-transform: uppercase; }

@keyframes studioScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===========================
   ABOUT
=========================== */
.about { padding: 140px 0; background: var(--bg2); border-top: 1px solid var(--b); }
.about__fzr { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; margin-bottom: 120px; }
.about__fzr-text p { font-size: 15px; color: var(--w50); line-height: 1.9; margin-bottom: 16px; }
.about__vals { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.val { display: flex; align-items: center; gap: 12px; background: var(--bg3); border: 1px solid var(--b); border-radius: var(--rs); padding: 14px 16px; font-size: 13px; font-weight: 400; transition: var(--t); }
.val:hover { border-color: rgba(201,168,76,0.35); background: var(--gbg); }
.val svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.about__fzr-logo { position: relative; display: flex; align-items: center; justify-content: center; }
.about__fzr-logo-glow { position: absolute; inset: -40px; border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,0.14) 0%, transparent 65%); pointer-events: none; }
.about__fzr-logo img { width: 320px; height: 320px; object-fit: contain; position: relative; z-index: 1; filter: brightness(1.3) drop-shadow(0 8px 40px rgba(201,168,76,0.3)); animation: floatLogo 7s ease-in-out infinite; }
.about__badge { position: absolute; bottom: 0; right: 0; background: linear-gradient(135deg, var(--gold), var(--gold2)); border-radius: 14px; padding: 18px 22px; text-align: center; box-shadow: 0 10px 36px rgba(201,168,76,0.4); z-index: 2; }
.b-num { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 600; color: #0a0800; display: block; line-height: 1; }
.b-lbl { font-size: 10px; font-weight: 700; color: rgba(10,8,0,.65); text-transform: uppercase; letter-spacing: .08em; }
@keyframes floatLogo { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* DESS & JEE */
.dessnjee { border-top: 1px solid var(--b); padding-top: 80px; }
.dessnjee__header { text-align: center; margin-bottom: 56px; }
.dessnjee__sub { font-size: 15px; color: var(--w50); margin-top: 12px; font-weight: 300; }
.dessnjee__duo { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.dessnjee__member { background: var(--bg3); border: 1px solid var(--b); border-radius: var(--r); overflow: hidden; transition: var(--t); text-decoration: none; display: block; }
.dessnjee__member:hover { border-color: rgba(201,168,76,0.25); box-shadow: 0 12px 40px rgba(201,168,76,0.08); transform: translateY(-3px); }
.dessnjee__photo { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.dessnjee__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .5s var(--ease); }
.dessnjee__member:hover .dessnjee__photo img { transform: scale(1.04); }
.dessnjee__photo-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,20,20,.95) 0%, transparent 60%); }
.dessnjee__member-info { padding: 28px; }
.dessnjee__logo-badge { margin-bottom: 16px; min-height: 50px; }
.dessnjee__logo-badge img { height: 50px; width: auto; object-fit: contain; filter: brightness(1.2) drop-shadow(0 2px 10px rgba(201,168,76,0.25)); }
.dessnjee__member-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 600; margin-bottom: 4px; text-shadow: 0 0 20px rgba(226,192,106,0.15); }
.dessnjee__role { font-size: 11px; color: var(--gold); letter-spacing: 0.1em; font-weight: 500; margin-bottom: 14px; display: block; text-shadow: 0 0 10px var(--gglow); }
.dessnjee__member-info p { font-size: 14px; color: var(--w50); line-height: 1.7; font-weight: 300; margin-bottom: 16px; }
.dessnjee__cta { font-size: 12px; color: var(--gold2); font-weight: 500; letter-spacing: 0.06em; display: inline-block; transition: var(--t); }
.dessnjee__member:hover .dessnjee__cta { letter-spacing: 0.12em; text-shadow: 0 0 12px var(--gglow); }

/* ===========================
   EXPERTISE — chiffres dorés
=========================== */
.expertise { padding: 140px 0; background: var(--bg); border-top: 1px solid var(--b); }
.expertise__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--b); border: 1px solid var(--b); border-radius: var(--r); overflow: hidden; margin-top: 64px; }
.xp-card { background: var(--bg); padding: 56px 48px; position: relative; overflow: hidden; transition: var(--t); }
.xp-card::before { content: ''; position: absolute; inset: 0; background: var(--gbg); opacity: 0; transition: var(--t); }
.xp-card:hover::before { opacity: 1; }
/* CHIFFRES EN OR avec glow */
.xp-card__n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5.5rem; font-weight: 700; line-height: 1; margin-bottom: 20px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold3) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 12px rgba(201,168,76,0.5));
  position: relative; z-index: 1; transition: var(--t);
}
.xp-card:hover .xp-card__n { filter: drop-shadow(0 0 20px rgba(201,168,76,0.75)); }
.xp-card h3 { font-size: 18px; font-weight: 500; margin-bottom: 10px; position: relative; z-index: 1; }
.xp-card p { font-size: 14px; color: var(--w50); line-height: 1.7; font-weight: 300; position: relative; z-index: 1; }

/* ===========================
   CTA BAND
=========================== */
.cta-band { padding: 100px 0; background: var(--bg2); border-top: 1px solid var(--b); position: relative; overflow: hidden; }
.cta-band__orb { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 300px; border-radius: 50%; background: radial-gradient(ellipse, rgba(201,168,76,0.1) 0%, transparent 70%); filter: blur(40px); pointer-events: none; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap; position: relative; }
.cta-band__inner h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 400; }
.cta-band__inner h2 em { font-style: italic; color: var(--gold2); }
.cta-band__inner p { font-size: 15px; color: var(--w50); margin-top: 8px; font-weight: 300; }

/* ===========================
   CONTACT
=========================== */
.contact { padding: 140px 0; background: var(--bg); border-top: 1px solid var(--b); }
.contact__inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 100px; align-items: start; }
.contact__info p { font-size: 15px; color: var(--w50); margin: 18px 0 36px; line-height: 1.8; font-weight: 300; }
.contact__details { display: flex; flex-direction: column; gap: 12px; }
.c-detail { display: flex; align-items: center; gap: 12px; color: var(--w50); font-size: 14px; font-weight: 300; }
.c-detail svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.contact__form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 11px; font-weight: 500; color: var(--w30); letter-spacing: 0.1em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { background: var(--bg3); border: 1px solid var(--b2); border-radius: var(--rs); padding: 14px 16px; color: var(--w); font-size: 14px; font-family: 'Inter', sans-serif; font-weight: 300; transition: var(--t); outline: none; resize: vertical; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--w30); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--bg3); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: rgba(201,168,76,.5); background: var(--bg4); box-shadow: 0 0 0 4px rgba(201,168,76,.06); }
.form-success { display: none; background: rgba(201,168,76,.08); border: 1px solid rgba(201,168,76,.25); color: var(--gold2); padding: 14px 18px; border-radius: var(--rs); text-align: center; font-size: 13px; }
.form-success.visible { display: block; }

/* ===========================
   FOOTER
=========================== */
.footer { background: var(--bg2); border-top: 1px solid var(--b); padding: 80px 0 32px; }
.footer__inner { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer__logo { height: 64px; width: auto; object-fit: contain; margin-bottom: 16px; filter: brightness(1.2) drop-shadow(0 2px 14px rgba(201,168,76,0.22)); }
.footer__brand p { font-size: 13px; color: var(--w30); line-height: 1.7; font-weight: 300; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 { font-size: 11px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; text-shadow: 0 0 10px var(--gglow); }
.footer__col a { font-size: 13px; color: var(--w50); text-decoration: none; font-weight: 300; transition: var(--t); }
.footer__col a:hover { color: var(--gold2); text-shadow: 0 0 10px var(--gglow); }
.footer__col span { font-size: 13px; color: var(--w30); font-weight: 300; }
.footer__bottom { border-top: 1px solid var(--b); padding-top: 24px; text-align: center; }
.footer__bottom p { font-size: 12px; color: var(--w30); font-weight: 300; letter-spacing: 0.05em; }
/* gold line footer */
.footer__bottom::before { content: ''; display: block; width: 60px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 0 auto 20px; }

/* ===========================
   SCROLL REVEAL
=========================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===========================
   PAGE ARTISTE / FONDATEURS (partagé)
=========================== */
.ap-body { background: var(--bg); color: var(--w); font-family: 'Inter', sans-serif; font-weight: 300; -webkit-font-smoothing: antialiased; }
.ap-back { position: fixed; top: 28px; left: 32px; z-index: 100; display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--w50); font-size: 13px; letter-spacing: 0.06em; transition: var(--t); background: rgba(6,6,6,0.7); backdrop-filter: blur(12px); padding: 10px 18px; border-radius: 100px; border: 1px solid var(--b2); }
.ap-back:hover { color: var(--gold2); border-color: rgba(201,168,76,0.35); }
.ap-back svg { width: 16px; height: 16px; }
.ap-hero { min-height: 70vh; display: flex; align-items: flex-end; position: relative; overflow: hidden; }
.ap-hero__img { position: absolute; inset: 0; }
.ap-hero__img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.ap-hero__img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,6,6,1) 0%, rgba(6,6,6,0.5) 50%, rgba(6,6,6,0.1) 100%); }
.ap-hero__content { position: relative; z-index: 1; padding: 0 64px 64px; }
.ap-hero__tag { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: block; text-shadow: 0 0 12px var(--gglow); }
.ap-hero__name { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem,7vw,6rem); font-weight: 300; line-height: 1.05; }
.ap-hero__name em { font-style: italic; background: linear-gradient(135deg, var(--gold), var(--gold3)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; filter: drop-shadow(0 0 14px rgba(201,168,76,0.5)); }
.ap-hero__role { font-size: 15px; color: var(--w50); margin-top: 10px; font-weight: 300; }

.ap-content { max-width: 1240px; margin: 0 auto; padding: 80px 64px; }
.ap-bio { max-width: 680px; margin-bottom: 80px; }
.ap-bio p { font-size: 16px; color: var(--w50); line-height: 1.9; margin-bottom: 20px; }
.ap-gallery__label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; text-shadow: 0 0 10px var(--gglow); }
.ap-gallery__grid { display: grid; gap: 8px; }
.ap-gallery__grid img { width: 100%; object-fit: cover; border-radius: var(--rs); cursor: pointer; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.ap-gallery__grid img:hover { transform: scale(1.02); box-shadow: 0 8px 32px rgba(201,168,76,0.15); }
.ap-videos { margin-top: 80px; }
.ap-videos__label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; text-shadow: 0 0 10px var(--gglow); }
.ap-videos__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 12px; }
.ap-video-item { border-radius: var(--rs); overflow: hidden; border: 1px solid var(--b); }
.ap-video-item video { width: 100%; display: block; }
.ap-logo-badge { margin-bottom: 32px; }
.ap-logo-badge img { height: 80px; width: auto; object-fit: contain; filter: brightness(1.2) drop-shadow(0 4px 16px rgba(201,168,76,0.3)); }

/* ===========================
   RESPONSIVE
=========================== */
/* ===========================
   RESPONSIVE — TABLETTE
=========================== */
@media (max-width: 1100px) {
  .clips__grid { grid-template-columns: repeat(2, 1fr); }
  .artistes__grid { grid-template-columns: repeat(2, 1fr); }
  .disco__grid { grid-template-columns: repeat(4, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .about__fzr { gap: 60px; }
}

@media (max-width: 900px) {
  .player { grid-template-columns: 1fr; }
  .player__tracklist { max-height: 280px; }
  .about__fzr { grid-template-columns: 1fr; }
  .about__fzr-logo img { width: 220px; height: 220px; }
  .dessnjee__duo { grid-template-columns: 1fr; }
  .expertise__grid { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; gap: 56px; }
  .studio__slide { width: 320px; }
  .studio__slide img { height: 220px; }
  .ap-hero__content { padding: 0 32px 48px; }
  .ap-content { padding: 60px 32px; }
}

/* ===========================
   RESPONSIVE — MOBILE (≤768px)
=========================== */
@media (max-width: 768px) {
  /* BASE */
  .container { padding: 0 18px; padding-left: max(18px, env(safe-area-inset-left)); padding-right: max(18px, env(safe-area-inset-right)); }
  .nav__inner { padding: 0 18px; padding-left: max(18px, env(safe-area-inset-left)); padding-right: max(18px, env(safe-area-inset-right)); }

  /* NAV */
  .nav__links {
    display: none; position: fixed; top: 0; right: 0; bottom: 0; width: 280px;
    background: rgba(8,8,8,.98); backdrop-filter: blur(24px);
    flex-direction: column; padding: 90px 32px 40px; gap: 22px;
    border-left: 1px solid var(--b); z-index: 200;
  }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 16px !important; padding: 4px 0; }
  .nav__burger { display: flex; }
  .nav__logo-text { display: none; }

  /* HERO */
  .hero { padding: 100px 18px 80px; }
  .hero__logo { width: 130px; height: 130px; }
  .hero__logo-halo { width: 220px; height: 220px; }
  .hero__desc { font-size: 14px; }
  .hero__actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero__actions .btn { width: 100%; max-width: 320px; }
  .hero__stats { position: static; margin-top: 40px; flex-wrap: wrap; width: 100%; border-top: 1px solid var(--b); }
  .hero__stat { padding: 14px 20px; flex: 1 1 45%; text-align: center; }
  .sep { display: none; }

  /* SECTIONS — padding réduit */
  .services, .musiques, .clips, .artistes, .disco, .studio, .about, .expertise, .contact { padding: 72px 0; }
  .cta-band { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }

  /* SERVICES */
  .svc-grid { grid-template-columns: 1fr; gap: 12px; }
  .svc-card--wide { flex-direction: column; align-items: flex-start; }

  /* PLAYER */
  .player__main { padding: 28px 20px; gap: 24px; }
  .player__artwork { width: 140px; height: 140px; }
  .player__btn { width: 38px; height: 38px; }
  .player__btn svg { width: 16px; height: 16px; }
  .player__btn--play { width: 50px; height: 50px; }
  .player__btn--play svg { width: 20px; height: 20px; }
  .track { padding: 14px 16px; gap: 12px; }

  /* CLIPS */
  .clips__grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }

  /* ARTISTES */
  .artistes__grid { grid-template-columns: 1fr 1fr; }
  .artiste-gallery__grid { grid-template-columns: repeat(3, 1fr); }

  /* DISCOGRAPHIE */
  .disco__grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }

  /* STUDIO */
  .studio__slide { width: 280px; }
  .studio__slide img { height: 190px; }

  /* ABOUT */
  .about__vals { grid-template-columns: 1fr; }
  .about__fzr-logo img { width: 180px; height: 180px; }
  .about__badge { padding: 14px 18px; }
  .b-num { font-size: 2.2rem; }

  /* DESS & JEE */
  .dessnjee__duo { grid-template-columns: 1fr; gap: 16px; }
  .dessnjee__member-info { padding: 20px; }

  /* EXPERTISE */
  .expertise__grid { grid-template-columns: 1fr; }
  .xp-card { padding: 36px 28px; }
  .xp-card__n { font-size: 4rem; }

  /* CTA */
  .cta-band__inner { flex-direction: column; text-align: center; gap: 28px; }

  /* CONTACT */
  .form-row { grid-template-columns: 1fr; }

  /* FOOTER */
  .footer { padding: 56px 0 24px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 36px; }

  /* MODAL */
  .modal__prev { left: 10px; }
  .modal__next { right: 10px; }
  .modal__close { top: 16px; right: 16px; width: 38px; height: 38px; }
  .modal__caption { font-size: 11px; padding: 6px 14px; bottom: 14px; max-width: 90vw; white-space: normal; text-align: center; }

  /* PAGES ARTISTE */
  .ap-back { top: 14px; left: 14px; padding: 8px 14px; font-size: 12px; }
  .ap-hero { min-height: 55vh; }
  .ap-hero__content { padding: 0 20px 36px; }
  .ap-content { padding: 48px 20px; }
  .ap-bio p { font-size: 15px; }
  .ap-gallery__grid { grid-template-columns: repeat(2, 1fr) !important; }
  .ap-videos__grid { grid-template-columns: 1fr; }
}

/* ===========================
   RESPONSIVE — PETIT MOBILE (≤480px)
=========================== */
@media (max-width: 480px) {
  /* TYPO */
  .hero__title { font-size: 3rem; }
  .section-title { font-size: clamp(1.8rem, 8vw, 2.6rem); }

  /* HERO */
  .hero__logo { width: 110px; height: 110px; }
  .hero__eyebrow { font-size: 10px; }
  .stat__n { font-size: 1.4rem; }
  .hero__stat { padding: 12px 14px; }

  /* TICKER */
  .ticker-item { font-size: 12px; padding: 0 18px; }
  .ticker-track { padding: 14px 0; }

  /* ARTISTES */
  .artistes__grid { grid-template-columns: 1fr; }
  .artiste-gallery__grid { grid-template-columns: repeat(2, 1fr); }

  /* DISCO */
  .disco__grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }

  /* STUDIO */
  .studio__slide { width: 240px; }
  .studio__slide img { height: 160px; }

  /* FOOTER */
  .footer__inner { grid-template-columns: 1fr; gap: 24px; }

  /* PLAYER */
  .player__btns { gap: 10px; }

  /* EXPERTISE */
  .xp-card { padding: 28px 20px; }
  .xp-card__n { font-size: 3.4rem; }

  /* PAGES ARTISTE */
  .ap-gallery__grid { grid-template-columns: 1fr 1fr !important; gap: 6px !important; }
  .ap-hero__name { font-size: clamp(2.4rem, 10vw, 4rem); }

  /* CLIPS petit mobile */
  .clips__grid { grid-template-columns: 1fr; }
}

/* ===========================
   GRAIN FILM
=========================== */
.grain-overlay {
  position: fixed; inset: 0; z-index: 99996;
  pointer-events: none;
  background-repeat: repeat;
  background-size: 256px 256px;
  opacity: 0.038;
  mix-blend-mode: overlay;
  animation: grainShift 0.18s steps(1) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-4%, 3%); }
  40%  { transform: translate(3%, -5%); }
  60%  { transform: translate(-6%, 2%); }
  80%  { transform: translate(4%, -3%); }
  100% { transform: translate(-2%, 5%); }
}

/* ===========================
   SPLIT TITLE — MOT PAR MOT
=========================== */
.split-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  animation: wordReveal 0.75s cubic-bezier(0.16,1,0.3,1) forwards;
  animation-delay: calc(3.1s + var(--wi, 0) * 0.13s);
}
@keyframes wordReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* ===========================
   TRAINÉE DE PARTICULES
=========================== */
.trail-dot {
  position: fixed; z-index: 99990; pointer-events: none;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
  animation: trailFade 0.9s ease forwards;
}
@keyframes trailFade {
  0%   { opacity: 0.75; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0;    transform: translate(-50%, -160%) scale(0.2); }
}

/* ===========================
   DISCOGRAPHIE — SCROLL HORIZONTAL
=========================== */
.disco .container { overflow: visible; }
.disco__grid {
  display: flex; flex-wrap: nowrap; gap: 14px;
  overflow-x: auto; overflow-y: visible;
  scroll-behavior: smooth;
  padding: 8px 36px 20px;
  margin: 0 -36px;
  scrollbar-width: none; -ms-overflow-style: none;
}
.disco__grid::-webkit-scrollbar { display: none; }
.pochette { flex: 0 0 200px; border-radius: var(--rs); }
.disco__hint {
  text-align: center; margin-top: 18px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--w30);
  transition: opacity 0.6s;
}
@media (max-width: 768px) {
  .disco__grid { padding: 8px 18px 16px; margin: 0 -18px; gap: 10px; }
  .pochette { flex: 0 0 150px; }
}

/* ===========================
   CURSEUR DORÉ PERSONNALISÉ
=========================== */
@media (hover: hover) { * { cursor: none; } }
@media (hover: none)  { * { cursor: auto; } .cursor__dot, .cursor__ring { display: none !important; } }
.cursor__dot {
  position: fixed; z-index: 99999; pointer-events: none;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(201,168,76,0.8), 0 0 4px rgba(201,168,76,0.5);
  transform: translate(-50%, -50%);
  opacity: 0; transition: opacity 0.3s;
}
.cursor__ring {
  position: fixed; z-index: 99998; pointer-events: none;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.55);
  transform: translate(-50%, -50%);
  opacity: 0; transition: opacity 0.3s, width 0.25s, height 0.25s, border-color 0.25s;
}
.cursor__ring--hover {
  width: 52px; height: 52px;
  border-color: rgba(201,168,76,0.9);
  background: rgba(201,168,76,0.06);
}

/* ===========================
   PARTICULES CANVAS HERO
=========================== */
.hero__particles {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

/* ===========================
   WAVEFORM AUDIO
=========================== */
.player__wave {
  width: 100%; height: 48px;
  border-radius: var(--rs);
  display: block;
  margin-bottom: 4px;
}

/* ===========================
   TRANSITION DE PAGE
=========================== */
.page-transition {
  position: fixed; inset: 0; z-index: 99990;
  background: var(--bg);
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.page-transition.active {
  opacity: 1; pointer-events: all;
}

/* ===========================
   BOUTON RETOUR EN HAUT
=========================== */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 500;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  opacity: 0; transform: translateY(16px) scale(0.85);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.3s;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1; transform: translateY(0) scale(1);
  pointer-events: all;
}
.back-to-top:hover {
  box-shadow: 0 8px 32px rgba(201,168,76,0.65);
  transform: translateY(-3px) scale(1.08);
}
.back-to-top svg {
  width: 20px; height: 20px;
  color: #0a0800; stroke-width: 2.5;
}
@media (max-width: 768px) {
  .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}

/* ===========================
   1) SPOTLIGHT DORÉ
=========================== */
.spotlight {
  position: fixed; z-index: 99995; pointer-events: none;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, rgba(201,168,76,0.03) 30%, transparent 65%);
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  transition: none;
}
@media (max-width: 768px) { .spotlight { display: none; } }

/* ===========================
   2) SMOOTH SCROLL
=========================== */
html { scroll-behavior: auto !important; }

/* ===========================
   3) BLOB LIQUIDE HERO
=========================== */
.hero__blob {
  position: absolute;
  width: 55%; height: 55%;
  top: 20%; left: 55%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
  filter: blur(40px);
}

/* ===========================
   4) EXPLOSION PARTICULES AU CLIC
=========================== */
.spark {
  position: fixed; z-index: 99999; pointer-events: none;
  width: var(--size, 4px); height: var(--size, 4px);
  border-radius: 50%;
  background: var(--gold2);
  box-shadow: 0 0 6px rgba(201,168,76,0.9);
  transform: translate(-50%, -50%);
  animation: sparkBurst 0.75s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes sparkBurst {
  0%   { opacity: 1; transform: translate(-50%, -50%) translate(0, 0) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) translate(var(--dx), var(--dy)) scale(0); }
}

/* ===========================
   5) TEXTE RÉVÉLÉ AU SCROLL
=========================== */
.text-reveal { overflow: hidden; }
.tr-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  filter: blur(4px);
  animation: trWordIn 0.5s ease forwards;
  animation-delay: calc(var(--tri, 0) * 0.035s);
}
.text-reveal--active .tr-word { animation-play-state: running; }
@keyframes trWordIn {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* ===========================
   6) GLITCH RGB SUR TITRES
=========================== */
.glitch-hover { position: relative; }
.glitching {
  animation: glitchText 0.35s steps(2) forwards;
}
.glitching::before,
.glitching::after {
  content: attr(data-text);
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.glitching::before {
  color: rgba(255,50,50,0.7);
  animation: glitchR 0.35s steps(3) forwards;
  clip-path: polygon(0 0, 100% 0, 100% 40%, 0 40%);
}
.glitching::after {
  color: rgba(50,100,255,0.7);
  animation: glitchB 0.35s steps(3) forwards;
  clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
}
@keyframes glitchText {
  0%, 100% { transform: none; }
  25%      { transform: translateX(-3px); }
  50%      { transform: translateX(3px) skewX(-1deg); }
  75%      { transform: translateX(-2px); }
}
@keyframes glitchR {
  0%, 100% { transform: translate(0); }
  33%      { transform: translate(4px, -2px); }
  66%      { transform: translate(-3px, 1px); }
}
@keyframes glitchB {
  0%, 100% { transform: translate(0); }
  33%      { transform: translate(-4px, 2px); }
  66%      { transform: translate(3px, -1px); }
}

/* ===========================
   7) DISTORSION LIQUIDE PHOTOS
=========================== */
.liquid-hover {
  transition: filter 0.5s var(--ease), transform 0.5s var(--ease);
}
.liquid-hover:hover {
  animation: liquidWave 0.6s ease;
}
@keyframes liquidWave {
  0%   { filter: blur(0) saturate(1);   transform: scale(1); }
  15%  { filter: blur(3px) saturate(1.4); transform: scale(1.03) rotate(0.5deg); }
  30%  { filter: blur(1px) saturate(1.2); transform: scale(0.99) rotate(-0.3deg); }
  50%  { filter: blur(2px) saturate(1.3); transform: scale(1.02) rotate(0.2deg); }
  70%  { filter: blur(1px) saturate(1.1); transform: scale(1.01); }
  100% { filter: blur(0) saturate(1);   transform: scale(1.04); }
}

/* ===========================
   8) KEN BURNS — ZOOM LENT
=========================== */
.ken-burns {
  transition: transform 8s ease;
  transform: scale(1);
}
.ken-burns.kb-active {
  transform: scale(1.08);
}
