/* ==========================================================================
   CORRALEJO MUSIC — Feuille de style
   Charte : #0B0E14 / #111826 / #163A4A / #D4AF37 / crème
   Typographies : Montserrat (titres) · Poppins (textes)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Palette charte graphique */
  --abyss: #0B0E14;
  --night: #111826;
  --tide:  #163A4A;
  --gold:  #D4AF37;
  --sand:  #F2EFE6;

  /* Déclinaisons */
  --gold-soft: rgba(212, 175, 55, .55);
  --gold-line: rgba(212, 175, 55, .22);
  --gold-glow: rgba(212, 175, 55, .10);
  --sand-dim:  rgba(242, 239, 230, .64);
  --sand-faint:rgba(242, 239, 230, .38);
  --hairline:  rgba(242, 239, 230, .10);

  /* Typographie */
  --font-display: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Poppins', 'Helvetica Neue', Arial, sans-serif;

  --track-wide: .38em;
  --track-mid:  .22em;
  --track-tight:.06em;

  /* Rythme */
  --gutter: clamp(20px, 5vw, 64px);
  --measure: 1320px;
  --section-y: clamp(76px, 11vw, 152px);

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

/* --------------------------------------------------------------------------
   2. RESET
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--abyss);
  color: var(--sand);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(15px, .55vw + 13.5px, 17px);
  line-height: 1.72;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* <picture> ne doit pas casser le dimensionnement du <img> qu'il enveloppe. */
.hero__bg picture,
.tile__media picture,
.artist__portrait picture { display: block; width: 100%; height: 100%; }
.split__media picture { display: block; width: 100%; }
button { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
}

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--gold); color: var(--abyss); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; top: -100px; left: var(--gutter);
  z-index: 200; background: var(--gold); color: var(--abyss);
  padding: 12px 20px; font-family: var(--font-display);
  font-size: .72rem; font-weight: 600; letter-spacing: var(--track-mid);
  text-transform: uppercase; text-decoration: none;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 14px; }

/* --------------------------------------------------------------------------
   3. GRAIN FIN + LUMIÈRE DOUCE  (traitement graphique de la charte)
   -------------------------------------------------------------------------- */
body::after {
  content: '';
  position: fixed; inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: .032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   4. STRUCTURE
   -------------------------------------------------------------------------- */
.shell {
  width: min(100% - var(--gutter) * 2, var(--measure));
  margin-inline: auto;
}
.shell--narrow { width: min(100% - var(--gutter) * 2, 780px); }

.section {
  position: relative;
  padding-block: var(--section-y);
}
.section--tinted { background: var(--night); }
.section--tight { padding-block: clamp(52px, 7vw, 96px); }

.eyebrow {
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.4rem;
  display: block;
}

.title {
  font-size: clamp(1.95rem, 4.4vw, 3.35rem);
  letter-spacing: -.012em;
  max-width: 18ch;
}
.title--center { margin-inline: auto; text-align: center; max-width: 22ch; }

.lede {
  font-size: clamp(1.02rem, 1.1vw + .8rem, 1.24rem);
  color: var(--sand-dim);
  font-weight: 300;
  max-width: 58ch;
}
/* `text-align: center` ne centre que le texte : sans marge automatique, le
   bloc limité à 58ch reste collé à gauche de son conteneur. */
.lede--center {
  text-align: center;
  margin-inline: auto;
}

.section__head { margin-bottom: clamp(40px, 5vw, 72px); }
.section__head--center { text-align: center; }
.section__head--center .lede { margin-inline: auto; }

/* --------------------------------------------------------------------------
   5. SIGNATURE — LIGNE D'HORIZON / WAVEFORM
   Le logo Corralejo fond une forme d'onde dans une vague. Ce motif reprend
   cette idée : lu de près c'est un égaliseur, lu de loin c'est une houle.
   -------------------------------------------------------------------------- */
.horizon {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 26px;
  margin-inline: auto;
}
.horizon span {
  display: block;
  width: 2px;
  background: linear-gradient(to top, var(--gold-soft), rgba(212,175,55,.15));
  border-radius: 2px;
  transform-origin: bottom;
  animation: swell 4.2s var(--ease) infinite;
}
.horizon--rule {
  gap: 5px;
  height: 18px;
  opacity: .5;
}

@keyframes swell {
  0%, 100% { transform: scaleY(.35); }
  50%      { transform: scaleY(1); }
}

/* --------------------------------------------------------------------------
   6. BOUTONS
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--gold);
  --btn-bd: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .7em;
  padding: 15px 30px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  font-family: var(--font-display);
  font-size: .715rem;
  font-weight: 600;
  letter-spacing: var(--track-mid);
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease),
              border-color .35s var(--ease), transform .35s var(--ease);
}
.btn:hover, .btn:focus-visible {
  background: var(--gold);
  color: var(--abyss);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.btn--solid {
  --btn-bg: var(--gold);
  --btn-fg: var(--abyss);
}
.btn--solid:hover, .btn--solid:focus-visible {
  background: transparent;
  color: var(--gold);
}
.btn--ghost {
  --btn-fg: var(--sand);
  --btn-bd: rgba(242,239,230,.28);
}
.btn--sm { padding: 11px 22px; font-size: .66rem; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn-row--center { justify-content: center; }

/* Lien texte fléché */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: var(--track-mid);
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}
.arrow-link svg { transition: transform .3s var(--ease); }
.arrow-link:hover svg { transform: translateX(5px); }

/* --------------------------------------------------------------------------
   7. EN-TÊTE
   -------------------------------------------------------------------------- */
.masthead {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease),
              border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.masthead.is-stuck {
  background: rgba(11, 14, 20, .86);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--hairline);
}

.masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 20px;
  transition: padding .4s var(--ease);
}
.masthead.is-stuck .masthead__inner { padding-block: 11px; }

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand svg { width: 34px; height: 34px; flex-shrink: 0; }
.brand__text {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: var(--track-mid);
  text-transform: uppercase;
  line-height: 1.25;
}
.brand__text small {
  display: block;
  font-size: .56rem;
  font-weight: 400;
  letter-spacing: var(--track-wide);
  color: var(--gold);
}

.nav { display: flex; align-items: center; gap: clamp(18px, 2vw, 34px); }
.nav a {
  font-family: var(--font-display);
  font-size: .69rem;
  font-weight: 600;
  letter-spacing: var(--track-mid);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--sand-dim);
  padding: 6px 0;
  position: relative;
  transition: color .3s var(--ease);
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 0;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--sand); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }

.masthead__side { display: flex; align-items: center; gap: 16px; }

/* Mention de la maison de production : présente sans concurrencer la
   navigation. Retirée dès que la barre se resserre — elle reste accessible
   dans le menu mobile et le pied de page. */
.masthead__prod {
  display: none;
  font-family: var(--font-display);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: var(--track-mid);
  text-transform: uppercase;
  color: var(--sand-faint);
  text-decoration: none;
  padding-right: 16px;
  border-right: 1px solid var(--hairline);
  transition: color .3s var(--ease);
}
.masthead__prod span {
  display: block;
  font-size: .54rem;
  font-weight: 400;
  letter-spacing: .18em;
  color: rgba(242, 239, 230, .28);
}
.masthead__prod:hover { color: var(--gold); }
@media (min-width: 1240px) { .masthead__prod { display: block; } }

.icon-link {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  color: var(--sand-dim);
  border: 1px solid var(--hairline);
  border-radius: 50%;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.icon-link:hover { color: var(--gold); border-color: var(--gold-line); }

/* Burger */
.burger {
  display: none;
  width: 42px; height: 42px;
  background: none;
  border: 1px solid var(--hairline);
  color: var(--sand);
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.burger span {
  display: block;
  width: 17px; height: 1px;
  background: currentColor;
  transition: transform .3s var(--ease), opacity .25s var(--ease);
}
.burger span + span { margin-top: 5px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Panneau mobile */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--abyss);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px var(--gutter) 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}
.drawer.is-open { opacity: 1; visibility: visible; transform: none; }
.drawer a {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 7vw, 2.1rem);
  font-weight: 600;
  letter-spacing: var(--track-tight);
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 0;
  border-bottom: 1px solid var(--hairline);
  color: var(--sand);
}
.drawer a:last-of-type { border-bottom: 0; }
.drawer__foot {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.drawer__foot a {
  font-family: var(--font-display);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: var(--track-mid);
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 0;
  padding: 0;
}

@media (max-width: 900px) {
  .nav, .masthead__side .icon-link { display: none; }
  .burger { display: grid; }
}

/* --------------------------------------------------------------------------
   8. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 132px var(--gutter) 64px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .34;
  filter: saturate(.75) contrast(1.05);
  transform: scale(1.05);
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 78% at 50% 8%, rgba(22,58,74,.42), transparent 62%),
    radial-gradient(80% 50% at 50% 100%, rgba(212,175,55,.11), transparent 70%),
    linear-gradient(to bottom, rgba(11,14,20,.55) 0%, rgba(11,14,20,.72) 45%, var(--abyss) 100%);
}

.hero__inner { position: relative; z-index: 2; max-width: 900px; }

.hero__mark {
  width: clamp(74px, 12vw, 116px);
  height: auto;
  margin: 0 auto clamp(24px, 3.4vw, 40px);
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.85rem, 8.2vw, 5.4rem);
  letter-spacing: clamp(.06em, 1.1vw, .17em);
  text-transform: uppercase;
  line-height: .98;
  margin: 0;
  text-indent: clamp(.06em, 1.1vw, .17em); /* compense le tracking à droite */
}

.lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2.6vw, 30px);
  margin: clamp(14px, 2vw, 22px) 0 0;
}
.lockup::before, .lockup::after {
  content: '';
  height: 1px;
  width: clamp(24px, 8vw, 108px);
  background: linear-gradient(to right, transparent, var(--gold-soft), transparent);
}
.lockup span {
  font-family: var(--font-display);
  font-size: clamp(.78rem, 2.1vw, 1.32rem);
  font-weight: 600;
  letter-spacing: clamp(.2em, .8vw, .42em);
  text-transform: uppercase;
  color: var(--gold);
  text-indent: clamp(.2em, .8vw, .42em);
}

.hero__sub {
  margin: clamp(18px, 2.4vw, 26px) 0 0;
  font-family: var(--font-display);
  font-size: clamp(.66rem, 1.5vw, .84rem);
  font-weight: 400;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--sand-dim);
}

.hero__keywords {
  margin: clamp(26px, 3.6vw, 40px) 0 0;
  font-family: var(--font-display);
  font-size: clamp(.58rem, 1.35vw, .76rem);
  font-weight: 400;
  letter-spacing: var(--track-mid);
  text-transform: uppercase;
  color: var(--sand-faint);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .55em 1.05em;
  list-style: none;
  padding: 0;
}
.hero__keywords li { display: flex; align-items: center; gap: 1.05em; }
.hero__keywords li:not(:last-child)::after {
  content: '';
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold-soft);
}

.hero .btn-row { margin-top: clamp(32px, 4vw, 46px); }

.hero__scroll {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: .56rem;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--sand-faint);
  text-decoration: none;
}
.hero__scroll i {
  display: block;
  width: 1px; height: 34px;
  background: linear-gradient(to bottom, var(--gold-soft), transparent);
}

/* Hero secondaire (pages intérieures) */
.pagehead {
  position: relative;
  padding: clamp(140px, 17vw, 210px) 0 clamp(48px, 6vw, 80px);
  overflow: hidden;
}
.pagehead::before {
  content: '';
  position: absolute;
  top: -180px; left: 50%;
  transform: translateX(-50%);
  width: 720px; height: 420px;
  background: radial-gradient(ellipse at center, rgba(22,58,74,.5), transparent 68%);
  pointer-events: none;
}
.pagehead .shell { position: relative; z-index: 1; }
.pagehead .title { max-width: 20ch; }

/* --------------------------------------------------------------------------
   9. GRILLE ARTISTES
   Neuf artistes : la grille 3 × 3 tombe juste sur grand écran.
   -------------------------------------------------------------------------- */
.roster {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 22px);
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 940px) { .roster { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 540px) { .roster { grid-template-columns: 1fr; } }

.tile {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--night);
  text-decoration: none;
  isolation: isolate;
  transition: transform .6s var(--ease), opacity .5s var(--ease);
}

/* --- Portrait --- */
.tile__media { position: absolute; inset: 0; display: block; }
.tile__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(.88) contrast(1.06) brightness(.6);
  transform: scale(1.07);
  transition: filter .9s var(--ease), transform 1.2s var(--ease);
}
.tile__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(11,14,20,.96) 3%, rgba(11,14,20,.55) 36%, rgba(11,14,20,.08) 100%);
}
.tile:hover .tile__media img,
.tile:focus-visible .tile__media img {
  filter: grayscale(0) contrast(1.02) brightness(.92);
  transform: scale(1);
}

/* --- La marée : une ligne d'eau dorée qui monte au survol --- */
.tile__tide {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 0;
  background: linear-gradient(to top, rgba(212,175,55,.22), rgba(212,175,55,.02));
  border-top: 1px solid var(--gold);
  transition: height .8s var(--ease);
  pointer-events: none;
  z-index: 1;
}
.tile:hover .tile__tide,
.tile:focus-visible .tile__tide { height: 100%; }

/* --- Texte --- */
.tile__body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: clamp(16px, 1.7vw, 26px);
  z-index: 2;
}
.tile__name {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(.95rem, 1.2vw, 1.14rem);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--sand);
  transform: translateY(15px);
  transition: transform .6s var(--ease);
}
.tile:hover .tile__name,
.tile:focus-visible .tile__name { transform: none; }

.tile__genre {
  display: block;
  margin-top: 7px;
  font-family: var(--font-display);
  font-size: .655rem;
  font-weight: 600;
  letter-spacing: var(--track-mid);
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .55s .05s var(--ease), transform .55s .05s var(--ease);
}
.tile:hover .tile__genre,
.tile:focus-visible .tile__genre { opacity: 1; transform: none; }

/* --- Forme d'onde : reprise du motif du logo, mise en mouvement --- */
.tile__wave {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 15px;
  margin-top: 13px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .55s .12s var(--ease), transform .55s .12s var(--ease);
}
.tile__wave span {
  display: block;
  width: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform-origin: bottom;
  animation: swell 3.4s var(--ease) infinite;
  animation-play-state: paused;
}
.tile:hover .tile__wave,
.tile:focus-visible .tile__wave { opacity: 1; transform: none; }
.tile:hover .tile__wave span,
.tile:focus-visible .tile__wave span { animation-play-state: running; }

/* --- Mise au point : les voisines s'effacent --- */
@media (hover: hover) and (pointer: fine) {
  .roster:hover .tile,
  .roster:focus-within .tile { opacity: .38; }
  .roster .tile:hover,
  .roster .tile:focus-visible { opacity: 1; transform: translateY(-5px); }
}

/* --- Repli sans photo officielle --- */
.tile--noimage .tile__media {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(212,175,55,.14), transparent 62%),
    linear-gradient(155deg, var(--night), #0d1721 60%, var(--abyss));
}
.tile__initials {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--gold-soft);
  text-indent: .12em;
}

/* --- Tactile : rien ne dépend du survol --- */
@media (hover: none) {
  .tile__media img { filter: grayscale(.12) brightness(.82); transform: none; }
  .tile__name { transform: none; }
  .tile__genre { opacity: 1; transform: none; }
  .tile__wave { display: none; }
  .tile__tide { height: 4px; }
}

/* --------------------------------------------------------------------------
   10. PAGE ARTISTE
   Portrait et texte côte à côte : la biographie remplit la hauteur de l'image
   au lieu de la laisser flotter au-dessus d'un vide.
   -------------------------------------------------------------------------- */
.artist {
  position: relative;
  padding: clamp(120px, 15vw, 178px) 0 clamp(50px, 6vw, 84px);
  overflow: hidden;
}
.artist::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 460px;
  background: radial-gradient(ellipse at center, rgba(22,58,74,.45), transparent 68%);
  pointer-events: none;
}
.artist .shell { position: relative; z-index: 1; }

.artist__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(30px, 4.5vw, 68px);
  align-items: start;
}

.artist__portrait {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--gold-line);
}
.artist__portrait img { width: 100%; height: 100%; object-fit: cover; }
.artist__portrait--empty {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(212,175,55,.14), transparent 64%),
    linear-gradient(155deg, var(--night), #0d1721 60%, var(--abyss));
}
.artist__portrait--empty .tile__initials { font-size: clamp(3rem, 8vw, 4.6rem); }

.artist__name {
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 4.6vw, 3.3rem);
  font-weight: 600;
  letter-spacing: -.015em;
  line-height: 1.06;
  margin: 0;
}
.artist__genre {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: var(--track-mid);
  text-transform: uppercase;
  color: var(--gold);
}
.artist__rule { margin: clamp(22px, 2.6vw, 32px) 0; }
.artist__rule .horizon { margin-inline: 0; }

.artist__bio p {
  color: var(--sand-dim);
  max-width: 60ch;
}
.artist__bio p:first-of-type {
  color: var(--sand);
  font-size: clamp(1.02rem, .9vw + .84rem, 1.17rem);
}

.artist__listen {
  margin-top: clamp(30px, 3.4vw, 44px);
  padding-top: clamp(24px, 2.6vw, 34px);
  border-top: 1px solid var(--hairline);
}
.artist__listen .eyebrow { margin-bottom: 1.1rem; }
.artist__listen .notice { margin-top: 0; }

/* Le portrait suit la lecture sur grand écran, sans jamais dépasser l'écran. */
@media (min-width: 1100px) {
  .artist__aside {
    position: sticky;
    top: 104px;
  }
}

@media (max-width: 860px) {
  .artist__grid { grid-template-columns: 1fr; gap: clamp(26px, 5vw, 38px); }
  .artist__portrait { max-width: 460px; }
}

/* Plateformes */
.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin: 0; padding: 0;
}

/* Navigation entre artistes */
.roster-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.prose { max-width: 62ch; }
.prose p { color: var(--sand-dim); }
.prose p:first-of-type {
  color: var(--sand);
  font-size: clamp(1.02rem, 1vw + .82rem, 1.2rem);
}

.notice {
  border-left: 2px solid var(--gold-line);
  padding: 4px 0 4px 20px;
  color: var(--sand-faint);
  font-size: .93rem;
  max-width: 60ch;
}

/* --------------------------------------------------------------------------
   11. MISE EN AVANT / ÉDITO
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
}
.split__media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--hairline);
}
.split__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: grayscale(.35) brightness(.86);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(224px, 1fr));
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  list-style: none;
  margin: 0; padding: 0;
}
.pillars li {
  background: var(--abyss);
  padding: clamp(26px, 3vw, 38px);
}
.section--tinted .pillars li { background: var(--night); }
.pillars h3 {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 13px;
}
.pillars p { color: var(--sand-dim); font-size: .95rem; margin: 0; }

/* --------------------------------------------------------------------------
   12. FORMULAIRE
   -------------------------------------------------------------------------- */
.form { max-width: 640px; }
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: var(--track-mid);
  text-transform: uppercase;
  color: var(--sand-dim);
  margin-bottom: 9px;
}
.field .req { color: var(--gold); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--night);
  border: 1px solid var(--hairline);
  color: var(--sand);
  font-family: var(--font-body);
  font-size: .96rem;
  font-weight: 300;
  border-radius: 0;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.field textarea { min-height: 168px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #0e1520;
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.field select[aria-invalid="true"] { border-color: #E4695A; }

.field__error {
  display: block;
  margin-top: 7px;
  font-size: .8rem;
  color: #E4695A;
  min-height: 1px;
}

.field--duo { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 560px) { .field--duo { grid-template-columns: 1fr; gap: 0; } }

/* Piège à robots — invisible pour les humains, jamais annoncé aux lecteurs d'écran */
.gotcha {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.form__status {
  margin-top: 20px;
  padding: 17px 20px;
  border: 1px solid var(--gold-line);
  background: rgba(212,175,55,.05);
  font-size: .93rem;
  display: none;
}
.form__status.is-visible { display: block; }
.form__status.is-error { border-color: rgba(228,105,90,.4); background: rgba(228,105,90,.06); }

/* --------------------------------------------------------------------------
   13. PIED DE PAGE
   -------------------------------------------------------------------------- */
.footer {
  padding-block: clamp(56px, 7vw, 88px) 34px;
  border-top: 1px solid var(--hairline);
  background: var(--abyss);
  position: relative;
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(auto-fit, minmax(140px, 1fr));
  gap: clamp(30px, 4vw, 60px);
  padding-bottom: clamp(38px, 5vw, 62px);
}
.footer__prod {
  margin: 14px 0 0;
  font-size: .8rem;
  color: var(--sand-faint);
  max-width: 26ch;
}
.footer__baseline {
  margin-top: 20px;
  color: var(--sand-faint);
  font-size: .9rem;
  max-width: 34ch;
}
.footer h4 {
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 17px;
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 11px; }
.footer li a {
  text-decoration: none;
  color: var(--sand-dim);
  font-size: .9rem;
  transition: color .3s var(--ease);
}
.footer li a:hover { color: var(--gold); }

.footer__base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
  font-size: .78rem;
  color: var(--sand-faint);
}
.footer__base nav { display: flex; flex-wrap: wrap; gap: 22px; }
.footer__base a { text-decoration: none; }
.footer__base a:hover { color: var(--gold); }

/* --------------------------------------------------------------------------
   14. RÉVÉLATION AU DÉFILEMENT
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

/* Séquence d'ouverture */
.lift { opacity: 0; transform: translateY(16px); animation: lift .95s var(--ease) forwards; }
@keyframes lift { to { opacity: 1; transform: none; } }

/* --------------------------------------------------------------------------
   15. MOUVEMENT RÉDUIT
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal, .lift { opacity: 1; transform: none; }
  .horizon span { transform: scaleY(.7); }
  /* Le survol reste informatif : il devient instantané au lieu d'être animé. */
  .tile__name, .tile__genre, .tile__wave { opacity: 1; transform: none; }
  .tile__wave span { animation: none; transform: scaleY(.7); }
}

/* --------------------------------------------------------------------------
   16. IMPRESSION
   -------------------------------------------------------------------------- */
@media print {
  .masthead, .drawer, .hero__scroll, .horizon, body::after { display: none !important; }
  body { background: #fff; color: #000; }
}

/* --------------------------------------------------------------------------
   17. BANNIÈRE DE CONSENTEMENT
   Encart compact ancré en bas à gauche : il informe sans masquer le contenu.
   Refuser reste aussi simple qu'accepter — mêmes dimensions, même contraste,
   aucune case pré-cochée.
   -------------------------------------------------------------------------- */
.consent {
  position: fixed;
  left: clamp(14px, 2vw, 26px);
  bottom: clamp(14px, 2vw, 26px);
  z-index: 300;
  width: min(376px, calc(100vw - 28px));
  background: rgba(11, 14, 20, .97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--gold-line);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .5);
  transform: translateY(calc(100% + 40px));
  transition: transform .45s var(--ease);
}
.consent.is-open { transform: none; }

.consent__inner { padding: 18px 18px 16px; }

.consent__title {
  font-family: var(--font-display);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: var(--track-mid);
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 8px;
}
.consent__text {
  margin: 0;
  font-size: .8rem;
  line-height: 1.55;
  color: var(--sand-dim);
}
.consent__text a { color: var(--sand); text-decoration: underline; text-underline-offset: 2px; }

/* --- Détail des finalités --- */
.consent__detail {
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px solid var(--hairline);
  display: grid;
  gap: 14px;
  max-height: 40svh;
  overflow-y: auto;
}
.consent__row { display: grid; gap: 5px; }
.consent__row--locked { grid-template-columns: 1fr auto; align-items: center; }
.consent__row--locked .consent__note { grid-column: 1 / -1; }

.consent__label {
  font-family: var(--font-display);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--sand);
}
.consent__always {
  font-family: var(--font-display);
  font-size: .56rem;
  font-weight: 600;
  letter-spacing: var(--track-mid);
  text-transform: uppercase;
  color: var(--gold);
}
.consent__note {
  margin: 0;
  font-size: .74rem;
  line-height: 1.5;
  color: var(--sand-faint);
}

/* --- Interrupteur --- */
.consent__switch { display: inline-flex; align-items: center; gap: 10px; cursor: pointer; }
.consent__switch input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.consent__track {
  position: relative;
  flex: none;
  width: 34px; height: 18px;
  border: 1px solid rgba(242, 239, 230, .3);
  border-radius: 18px;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.consent__track::after {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--sand-dim);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.consent__switch input:checked + .consent__track {
  background: rgba(212, 175, 55, .22);
  border-color: var(--gold);
}
.consent__switch input:checked + .consent__track::after {
  transform: translateX(16px);
  background: var(--gold);
}
.consent__switch input:focus-visible + .consent__track {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* --- Actions --- */
.consent__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
}
.consent__btn {
  flex: 1 1 0;
  min-width: 0;
  justify-content: center;
  padding: 10px 12px;
  font-size: .615rem;
  letter-spacing: .14em;
}
.consent__link {
  flex: 1 1 100%;
  background: none;
  border: 0;
  padding: 4px 0 0;
  color: var(--sand-faint);
  font-family: var(--font-display);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: var(--track-mid);
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  text-align: center;
}
.consent__link:hover { color: var(--gold); }
.consent__actions--save { margin-top: 9px; }
.consent__actions--save .consent__btn { flex: 1 1 100%; }

@media (prefers-reduced-motion: reduce) {
  .consent { transition: none; }
}

/* --------------------------------------------------------------------------
   18. LECTEUR SPOTIFY
   Tant que le visiteur n'a pas accepté, un cadre sobre remplace l'iframe :
   il annonce ce qui va être chargé au lieu de l'imposer.
   -------------------------------------------------------------------------- */
.player { margin-bottom: 22px; }

.player__facade {
  display: grid;
  justify-items: start;
  gap: 11px;
  padding: clamp(20px, 2.4vw, 28px);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  background:
    radial-gradient(120% 90% at 12% 0%, rgba(22, 58, 74, .34), transparent 62%),
    var(--night);
}
.player__icon { color: var(--gold); line-height: 0; }
.player__lead {
  margin: 0;
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--sand);
}
.player__note {
  margin: 2px 0 0;
  font-size: .76rem;
  line-height: 1.5;
  color: var(--sand-faint);
  max-width: 46ch;
}

/* L'iframe apporte ses propres coins arrondis : on aligne le cadre dessus. */
.player--live { border-radius: 12px; overflow: hidden; line-height: 0; }
.player--live iframe { display: block; border-radius: 12px; }

.player__fallback {
  display: block;
  padding: 10px 2px 0;
  font-size: .74rem;
  line-height: 1.5;
  color: var(--sand-faint);
  text-decoration: none;
  border-bottom: 0;
}
.player__fallback:hover { color: var(--gold); }

/* --------------------------------------------------------------------------
   19. PAGES LÉGALES
   Liste de définitions plutôt qu'un tableau : la structure est sémantiquement
   juste, et se replie proprement en une colonne sur mobile.
   -------------------------------------------------------------------------- */
.legal__title {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: .01em;
  margin: 46px 0 18px;
}
.legal__title:first-of-type { margin-top: 0; }

.legal { margin: 0 0 8px; }
.legal__row {
  display: grid;
  grid-template-columns: minmax(0, 15rem) minmax(0, 1fr);
  gap: 4px 26px;
  padding: 11px 0;
  border-bottom: 1px solid var(--hairline);
}
.legal__row:first-child { border-top: 1px solid var(--hairline); }
.legal dt {
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: var(--track-mid);
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 2px;
}
.legal dd {
  margin: 0;
  color: var(--sand-dim);
  font-size: .95rem;
}
.legal dd a { color: var(--sand); }

@media (max-width: 620px) {
  .legal__row { grid-template-columns: 1fr; gap: 3px; }
}
