/* ═══════════ MusicLab ML — noir chaud, or de scène, images plein cadre ═══════════ */
:root {
  --fond: #0b0a09;
  --fond-2: #14110d;
  --carte: #171310;
  --encre: #f2ede3;
  --gris: #9a938a;
  --hairline: rgba(242, 237, 227, .12);
  --accent: #e0a63c;
  --accent-fonce: #b9832a;
  --marge: clamp(1.4rem, 6vw, 6rem);
  --rayon: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 300;
  background: var(--fond);
  color: var(--encre);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--accent); color: var(--fond); }
h1, h2 {
  font-family: "Bebas Neue", "Oswald", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: .02em;
  line-height: .95;
  text-transform: uppercase;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--fond); }
::-webkit-scrollbar-thumb { background: #2c261f; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #3d352c; }

/* lien d'évitement clavier */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--accent); color: var(--fond);
  padding: .7rem 1.4rem; text-decoration: none;
  font-size: .8rem; letter-spacing: .18em; text-transform: uppercase;
}
.skip:focus { left: 0; }

/* fil conducteur : petites capitales dorées */
.kicker {
  font-size: .8rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.2rem;
}

/* ── Boutons ── */
.btn {
  display: inline-block;
  font-size: .8rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  text-decoration: none; text-align: center;
  padding: 1rem 2.2rem; border-radius: 3px;
  cursor: pointer; border: 1px solid transparent;
  transition: background .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.btn-or {
  background: var(--accent); color: #191104;
  box-shadow: 0 6px 24px rgba(224, 166, 60, .25);
}
.btn-or:hover { background: var(--encre); transform: translateY(-2px); }
.btn-ligne { border-color: rgba(242, 237, 227, .5); color: var(--encre); }
.btn-ligne:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* rangée d'icônes sociales */
.icones { display: flex; gap: 1.1rem; }
.icones a {
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(242, 237, 227, .35);
  transition: border-color .2s, color .2s, transform .2s, background .2s;
}
.icones a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }
.icones svg { width: 17px; height: 17px; fill: currentColor; }

/* apparitions au défilement */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Barre de navigation : transparente sur le héros, pleine ensuite ── */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; gap: 2rem;
  padding: 1.1rem var(--marge);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, padding .3s;
}
.topbar.solide {
  background: rgba(11, 10, 9, .92);
  backdrop-filter: blur(8px);
  border-color: var(--hairline);
  padding-top: .8rem; padding-bottom: .8rem;
}
.brand {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.5rem; letter-spacing: .08em;
  text-decoration: none;
}
.brand span { color: var(--accent); }
.nav { display: flex; gap: 2.2rem; margin-left: auto; }
.nav a {
  font-size: .8rem; letter-spacing: .22em; text-transform: uppercase;
  text-decoration: none; color: var(--encre); opacity: .8;
  padding-bottom: .3rem; border-bottom: 1px solid transparent;
  transition: opacity .2s, color .2s, border-color .2s;
}
.nav a:hover { opacity: 1; }
.nav a.actif { color: var(--accent); border-color: var(--accent); opacity: 1; }
.btn-nav { padding: .65rem 1.4rem; font-size: .72rem; box-shadow: none; }
.nav-burger { display: none; font-size: 1.4rem; background: none; border: none; cursor: pointer; color: var(--encre); margin-left: auto; }

/* ── Héros plein écran ── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.hero-fonds, .hero-fond { position: absolute; inset: 0; }
.hero-fond {
  background-size: cover; background-position: center 30%;
  opacity: 0; transform: scale(1.06);
  transition: opacity 1.6s ease;
  animation: kenburns 14s ease-in-out infinite alternate;
}
.hero-fond.visible { opacity: 1; }
@keyframes kenburns { from { transform: scale(1.02); } to { transform: scale(1.1); } }
.hero-voile {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 10, 9, .55) 0%, rgba(11, 10, 9, .25) 35%, rgba(11, 10, 9, .82) 82%, var(--fond) 100%),
    linear-gradient(100deg, rgba(11, 10, 9, .8) 0%, rgba(11, 10, 9, .35) 55%, rgba(11, 10, 9, .15) 100%);
}
.hero-contenu {
  position: relative;
  padding: 0 var(--marge) clamp(4.5rem, 11vh, 8rem);
  max-width: 62rem;
}
.hero h1 {
  font-size: clamp(3.4rem, 10vw, 8.5rem);
  margin-bottom: 1.4rem;
  text-shadow: 0 4px 40px rgba(0, 0, 0, .5);
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub {
  max-width: 36rem; font-size: 1.06rem; color: #d8d2c6;
  margin-bottom: 2.4rem;
}
.hero-actions { display: flex; gap: 1.2rem; flex-wrap: wrap; margin-bottom: 2.8rem; }
.hero-pied { display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.hero-stats {
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gris);
}
.hero-fleche {
  position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%);
  color: var(--encre); opacity: .6; text-decoration: none; font-size: 1.3rem;
  animation: flotter 2.2s ease-in-out infinite;
}
.hero-fleche:hover { opacity: 1; color: var(--accent); }
@keyframes flotter { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ── Bandeau défilant des artistes ── */
.bandeau {
  overflow: hidden;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--fond-2);
  padding: 1rem 0;
}
.bandeau-piste { display: flex; width: max-content; animation: defiler 36s linear infinite; }
.bandeau-piste span {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  letter-spacing: .06em;
  color: var(--gris);
  white-space: nowrap; padding-right: 1.6rem;
}
.bandeau-piste span::after { content: "•"; color: var(--accent); padding-left: 1.6rem; font-size: .8em; }
@keyframes defiler { to { transform: translateX(-50%); } }

/* ── Sections ── */
.section { padding: clamp(4.5rem, 11vh, 8rem) var(--marge); scroll-margin-top: 72px; }
.section h2 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); margin-bottom: 2.2rem; }
.h2-espace { margin-top: clamp(4rem, 9vh, 6.5rem); }

/* ── Clip à la une ── */
.une { max-width: 62rem; }
.une-video {
  position: relative; aspect-ratio: 16 / 9;
  border-radius: var(--rayon); overflow: hidden;
  cursor: pointer; background: #000;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .55);
}
.une-video img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.une-video:hover img { transform: scale(1.03); }
.une-video iframe { width: 100%; height: 100%; border: none; }
.une-infos {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 3.5rem 1.8rem 1.4rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .85));
  pointer-events: none;
}
.une-titre { font-family: "Bebas Neue", Impact, sans-serif; font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: .03em; }
.une-meta { font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; color: #cfc8bc; }

/* bouton lecture commun */
.clip-play { position: absolute; inset: 0; display: grid; place-items: center; }
.clip-play::before {
  content: "▶";
  font-size: .9rem; color: #191104; padding-left: 4px;
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--accent);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .5);
  transition: transform .25s, background .25s;
}
.une-video:hover .clip-play::before, .clip-video:hover .clip-play::before {
  transform: scale(1.12); background: var(--encre);
}

/* ── Filtres ── */
.filtres { display: flex; gap: .7rem; flex-wrap: wrap; margin-bottom: 2.6rem; }
.filtre {
  font-family: "Outfit", sans-serif; font-weight: 400;
  font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gris); background: none; cursor: pointer;
  border: 1px solid var(--hairline); border-radius: 100px;
  padding: .55rem 1.3rem;
  transition: color .2s, border-color .2s, background .2s;
}
.filtre:hover { color: var(--encre); border-color: rgba(242, 237, 227, .4); }
.filtre.actif { background: var(--accent); border-color: var(--accent); color: #191104; font-weight: 500; }

/* ── Grille clips ── */
.clips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(2rem, 4vw, 3rem) clamp(1.4rem, 3vw, 2.2rem);
}
.clip-video {
  position: relative; aspect-ratio: 16 / 9;
  border-radius: var(--rayon); overflow: hidden;
  background: #000; cursor: pointer;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .45);
  transition: transform .35s ease, box-shadow .35s ease;
}
.clip:hover .clip-video { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(0, 0, 0, .6); }
.clip-video img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.clip-video:hover img { transform: scale(1.05); }
.clip-video iframe { width: 100%; height: 100%; border: none; }
.clip-video .clip-play::before { width: 52px; height: 52px; font-size: .75rem; opacity: 0; transform: scale(.8); }
.clip-video:hover .clip-play::before { opacity: 1; transform: scale(1); }
.clip-tag {
  position: absolute; top: .8rem; left: .8rem; z-index: 2;
  font-size: .62rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  color: #191104; background: var(--accent);
  border-radius: 3px; padding: .3em .8em;
}
.clip-corps { padding: 1rem .2rem 0; }
.clip-titre { font-family: "Bebas Neue", Impact, sans-serif; font-size: 1.35rem; letter-spacing: .04em; margin-bottom: .15rem; transition: color .25s; }
.clip:hover .clip-titre { color: var(--accent); }
.clip-artiste { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gris); }
.clips-more { margin-top: 3.5rem; text-align: center; }

/* ── À venir ── */
.avenir-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}
.avenir-carte {
  background: var(--carte);
  border: 1px solid var(--hairline); border-radius: var(--rayon);
  border-top: 2px solid var(--accent);
  padding: 1.8rem 1.6rem 1.6rem;
}
.avenir-carte h3 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400; font-size: 1.5rem; letter-spacing: .05em;
  margin-bottom: 1rem;
}
.avenir-carte ul { list-style: none; }
.avenir-carte li {
  padding: .45rem 0;
  border-bottom: 1px solid var(--hairline);
  color: #d3ccc0;
}
.avenir-carte li:last-child { border-bottom: none; }
.avenir-carte li::before { content: "♪"; color: var(--accent); margin-right: .7rem; font-size: .85em; }
.avenir-carte p { color: #d3ccc0; }
.avenir-note { margin-top: 2.2rem; color: var(--gris); font-style: italic; max-width: 40rem; }

/* ── Bande parallaxe + chiffres ── */
.parallaxe {
  position: relative;
  background-image: url("assets/parallaxe.jpg");
  background-size: cover; background-position: center 25%;
  background-attachment: fixed;
  padding: clamp(5rem, 14vh, 9rem) var(--marge);
}
.parallaxe::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(11, 10, 9, .92) 0%, rgba(11, 10, 9, .78) 100%);
}
.chiffres {
  position: relative;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 2.5rem; text-align: center;
  max-width: 62rem; margin: 0 auto;
}
.chiffre-val {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(3rem, 7vw, 5.2rem); line-height: 1;
  display: inline-block; font-variant-numeric: tabular-nums;
}
.chiffre-plus { font-family: "Bebas Neue", Impact, sans-serif; font-size: clamp(1.8rem, 4vw, 3rem); color: var(--accent); }
.chiffre-label { display: block; font-size: .78rem; letter-spacing: .26em; text-transform: uppercase; color: #c9c2b6; margin-top: .6rem; }

/* ── À propos ── */
.apropos-grid {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center;
  max-width: 72rem;
}
.apropos-photo { position: relative; }
.apropos-photo::before {
  content: ""; position: absolute; inset: 0;
  transform: translate(14px, 14px);
  border: 1px solid var(--accent); border-radius: var(--rayon);
}
.apropos-photo img {
  position: relative;
  aspect-ratio: 4 / 5; object-fit: cover; object-position: 22% center;
  width: 100%; border-radius: var(--rayon);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
}
.apropos-texte p:not(.kicker) { margin-bottom: 1.3rem; color: #d3ccc0; max-width: 36rem; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.8rem; }
.chips li {
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gris); border: 1px solid var(--hairline); border-radius: 100px;
  padding: .4rem 1rem;
}

/* lien vers la page du titre (galerie et clip à la une) */
.clip-histoire {
  display: inline-block; margin-top: .45rem;
  font-size: .7rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); text-decoration: none;
  border-bottom: 1px solid rgba(224, 166, 60, .4); padding-bottom: .1rem;
}
.clip-histoire:hover { color: var(--encre); border-color: var(--encre); }

/* ── Réseaux ── */
.reseaux-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
}
.rs-carte {
  display: flex; flex-direction: column; gap: .4rem;
  background: var(--carte);
  border: 1px solid var(--hairline); border-radius: var(--rayon);
  padding: 1.8rem 1.6rem 1.5rem;
  text-decoration: none;
  transition: transform .3s ease, border-color .3s, box-shadow .3s;
}
.rs-carte:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .45);
}
.rs-carte svg { width: 26px; height: 26px; fill: var(--accent); margin-bottom: .8rem; }
.rs-nom { font-family: "Bebas Neue", Impact, sans-serif; font-size: 1.6rem; letter-spacing: .05em; }
.rs-detail { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gris); }
.rs-suivre {
  margin-top: 1.1rem;
  font-size: .74rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent);
}

/* ── Écouter : lecteur + plateformes ── */
.section-ecouter { background: var(--fond-2); }
.ecouter-intro { color: #d3ccc0; max-width: 42rem; margin-bottom: 2.8rem; }
.ecouter-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 3vw, 2.8rem);
  align-items: start;
  max-width: 62rem;
}
.ecouter-pistes { display: flex; flex-direction: column; gap: .7rem; }
.ecouter-pistes iframe {
  display: block; width: 100%; border: 0; border-radius: 12px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .38);
}

.plateformes { display: flex; flex-direction: column; gap: .9rem; }
.pf {
  --marque: var(--accent);
  display: flex; align-items: center; gap: 1.1rem;
  background: var(--carte);
  border: 1px solid var(--hairline); border-radius: var(--rayon);
  padding: 1rem 1.3rem;
  text-decoration: none;
  transition: transform .25s ease, border-color .25s, box-shadow .25s;
}
.pf-ic {
  flex: 0 0 auto;
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--hairline);
  transition: border-color .25s, background .25s;
}
.pf-ic svg { width: 20px; height: 20px; fill: var(--accent); transition: fill .25s; }
.pf-txt { display: flex; flex-direction: column; gap: .1rem; min-width: 0; }
.pf-nom {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.45rem; letter-spacing: .05em; line-height: 1.15;
}
.pf-detail {
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gris);
}
.pf-fleche {
  margin-left: auto; padding-left: .6rem;
  color: var(--gris); transition: color .25s, transform .25s;
}
.pf:hover {
  transform: translateX(5px);
  border-color: var(--marque);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .45);
}
.pf:hover .pf-ic { border-color: var(--marque); background: rgba(242, 237, 227, .06); }
.pf:hover .pf-ic svg { fill: var(--marque); }
.pf:hover .pf-fleche { color: var(--marque); transform: translateX(4px); }
.pf-spotify { --marque: #1ed760; }
.pf-apple   { --marque: #fa243c; }
.pf-deezer  { --marque: #a238ff; }
.pf-ytmusic { --marque: #ff0033; }
.pf-note { margin-top: .8rem; color: var(--gris); font-size: .88rem; }

@media (max-width: 900px) {
  .ecouter-grid { grid-template-columns: 1fr; }
}

/* ── Contact ── */
.section-contact { padding-bottom: clamp(5rem, 14vh, 9rem); }
.contact-note { color: #d3ccc0; max-width: 38rem; margin-bottom: 2.6rem; }
.contact-mail { color: var(--accent); text-decoration: none; border-bottom: 1px solid var(--accent); }
.contact-mail:hover { color: var(--encre); border-color: var(--encre); }

.contact-form {
  max-width: 44rem;
  background: var(--carte);
  border: 1px solid var(--hairline); border-radius: var(--rayon);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  display: flex; flex-direction: column; gap: 1.4rem;
}
.contact-botcheck { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.contact-row { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.contact-row .contact-champ { flex: 1 1 14rem; }
.contact-champ { display: flex; flex-direction: column; gap: .5rem; }
.contact-champ span {
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gris);
}
.contact-champ span em { font-style: normal; color: var(--accent); margin-left: .15em; }
.contact-champ input, .contact-champ textarea {
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 300; font-size: 1rem;
  background: rgba(11, 10, 9, .6); color: var(--encre);
  border: 1px solid var(--hairline); border-radius: 4px;
  padding: .8rem 1rem; resize: vertical;
  transition: border-color .2s;
}
.contact-champ input:focus, .contact-champ textarea:focus {
  outline: none; border-color: var(--accent);
}
.contact-envoyer { align-self: flex-start; font-family: inherit; }
.contact-envoyer:disabled { opacity: .5; cursor: default; transform: none; }
.contact-statut { font-size: .85rem; color: var(--gris); min-height: 1.2em; }
.contact-statut.ok { color: var(--accent); }
.contact-statut.erreur { color: #d46a4a; }

/* ── Pied de page ── */
.footer {
  display: flex; flex-direction: column; align-items: center; gap: 1.3rem;
  padding: 3.5rem var(--marge) 2.5rem;
  border-top: 1px solid var(--hairline);
  background: var(--fond-2);
  text-align: center;
}
.footer p { font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gris); }
.footer a { text-decoration: none; }
.footer p a:hover { color: var(--accent); }
.footer-maj { font-size: .66rem !important; letter-spacing: .14em !important; }

/* ── Mouvement réduit ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .bandeau-piste, .hero-fond, .hero-fleche { animation: none; }
  .hero-fond { transform: none; }
  .parallaxe { background-attachment: scroll; }
}

/* ── Responsive ── */
@media (max-width: 880px) {
  .nav, .btn-nav {
    display: none;
  }
  .nav {
    position: absolute; top: 100%; right: 0; left: 0;
    flex-direction: column; gap: 0;
    background: rgba(11, 10, 9, .97);
    border-bottom: 1px solid var(--hairline); padding: .6rem 0;
  }
  .nav.ouvert { display: flex; }
  .nav a { padding: .9rem var(--marge); border: none; }
  .nav-burger { display: block; }
  .topbar { background: rgba(11, 10, 9, .92); border-color: var(--hairline); }
  .hero-pied { gap: 1.4rem; }
  .apropos-grid { grid-template-columns: 1fr; }
  .apropos-photo { max-width: 26rem; }
  .parallaxe { background-attachment: scroll; }
}
