/* ===========================================================
   DIVINE SOUND — Feuille de style principale
   Palette et typographies : voir charte graphique du groupe
   =========================================================== */

:root{
  /* Palette */
  --brun-racine:   #1D1608;
  --or-gangan:     #D4AF37;
  --creme-coton:   #F3EAD3;
  --or-lumiere:    #EDD98F;
  --dore-sourd:    #B0A070;
  --brun-carte:    #2C2310;
  --brun-carte-2:  #241C0C;
  --or-impression: #B8912A;

  /* Dégradé or (logo / grands titres uniquement) */
  --degrade-or: linear-gradient(135deg, #C9A834 0%, #D4AF37 50%, #FDEC84 100%);

  /* Typographies */
  --font-titre: Cambria, Caladea, Georgia, "Times New Roman", serif;
  --font-texte: Calibri, Carlito, "Segoe UI", Arial, sans-serif;

  /* Rythme */
  --rayon: 18px;
  --rayon-sm: 10px;
  --ombre: 0 14px 40px rgba(0,0,0,.45);
  --max-largeur: 1180px;
}

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

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--brun-racine);
  color: var(--creme-coton);
  font-family: var(--font-texte);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a{ color: inherit; text-decoration: none; }

.conteneur{
  width: 100%;
  max-width: var(--max-largeur);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typographie ---------- */

h1, h2, h3, h4, .titre{
  font-family: var(--font-titre);
  font-weight: 700;
  color: var(--creme-coton);
  margin: 0 0 .5em;
  line-height: 1.15;
}

h1{ font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2{ font-size: clamp(1.7rem, 3.4vw, 2.4rem); color: var(--or-gangan); }
h3{ font-size: clamp(1.2rem, 2.2vw, 1.5rem); }

.devise{
  font-family: var(--font-titre);
  font-weight: 700;
  font-style: italic;
  color: var(--or-lumiere);
}

.kicker{
  display: inline-block;
  font-family: var(--font-texte);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--or-gangan);
  font-size: .78rem;
  margin-bottom: .8em;
}

p{ color: var(--creme-coton); margin: 0 0 1.1em; }

.texte-secondaire, .legende{
  color: var(--dore-sourd);
  font-size: .92rem;
}

.filet-or{
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--or-gangan), transparent);
  margin: 3rem 0;
}

/* ---------- En-tête / navigation ---------- */

.entete{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(29, 22, 8, .96);
  border-bottom: 1px solid rgba(212,175,55,.25);
}

.entete .conteneur{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.logo-lien{ display: flex; align-items: center; gap: .6em; }
.logo-lien img{ height: 52px; width: auto; }

.nav-principale{
  display: flex;
  align-items: center;
  gap: 1.9rem;
}

.nav-principale a{
  font-family: var(--font-texte);
  font-weight: 700;
  font-size: .86rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--creme-coton);
  padding: .4em 0;
  position: relative;
  white-space: nowrap;
}

.nav-principale a::after{
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--or-gangan);
  transition: right .25s ease;
}

.nav-principale a:hover::after,
.nav-principale a[aria-current="page"]::after{ right: 0; }

.nav-principale a[aria-current="page"]{ color: var(--or-gangan); }

.nav-cta{
  border: 1.5px solid var(--or-gangan) !important;
  border-radius: 999px;
  padding: .5em 1.2em !important;
  color: var(--or-gangan) !important;
}
.nav-cta:hover{ background: var(--or-gangan); color: var(--brun-racine) !important; }
.nav-cta::after{ display: none; }

.bouton-menu{
  display: none;
  background: none;
  border: 1px solid var(--or-gangan);
  border-radius: 8px;
  width: 44px; height: 44px;
  color: var(--or-gangan);
  font-size: 1.4rem;
  cursor: pointer;
}

@media (max-width: 880px){
  .bouton-menu{ display: block; }
  .nav-principale{
    position: fixed;
    top: 77px;
    left: 0;
    width: 100%;
    height: calc(100vh - 77px);
    background: var(--brun-racine);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 24px;
    gap: 1.6rem;
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
  }
  .nav-principale.ouvert{ transform: translateX(0); }
  .nav-principale a{ font-size: 1.05rem; }
}

/* ---------- Boutons ---------- */

.bouton{
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--font-texte);
  font-weight: 700;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .95em 1.8em;
  border-radius: 999px;
  border: 1.5px solid var(--or-gangan);
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.bouton-plein{ background: var(--degrade-or); color: var(--brun-racine); border-color: transparent; }
.bouton-plein:hover{ transform: translateY(-2px); }

.bouton-contour{ background: transparent; color: var(--or-gangan); }
.bouton-contour:hover{ background: var(--or-gangan); color: var(--brun-racine); transform: translateY(-2px); }

.groupe-boutons{ display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- Cartes ---------- */

.carte{
  background: var(--brun-carte);
  border: 1px solid rgba(212,175,55,.18);
  border-radius: var(--rayon);
  padding: 2rem;
}

.grille-cartes > *:nth-child(even){ background: var(--brun-carte-2); }

/* ---------- Photos encadrées d'or ---------- */

.photo-encadree{
  border: 1.5mm solid var(--or-gangan);
  border-radius: var(--rayon-sm);
  overflow: hidden;
  box-shadow: var(--ombre);
}
.photo-encadree img{ width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Sections ---------- */

section{ padding: 5rem 0; }
.section-alt{ background: var(--brun-carte-2); }

.entete-section{ max-width: 720px; margin-bottom: 2.6rem; }
.entete-section.centre{ margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Hero (accueil) ---------- */

.hero{
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-fond{
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 20%;
}
.hero-fond::after{
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(29,22,8,.55) 0%, rgba(29,22,8,.75) 55%, var(--brun-racine) 100%),
    linear-gradient(90deg, rgba(29,22,8,.9) 0%, rgba(29,22,8,.35) 55%, rgba(29,22,8,.75) 100%);
}

.hero-contenu{
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 8rem 0 4rem;
}

.hero-devise{
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  margin-bottom: 1.2rem;
}

.hero-accroche{ font-size: 1.15rem; color: var(--or-lumiere); }

.palmares-ligne{
  display: flex; flex-wrap: wrap; gap: .6em 1.4em;
  align-items: center;
  color: var(--dore-sourd);
  font-family: var(--font-texte);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .82rem;
  margin: 1.8rem 0 2.2rem;
}
.palmares-ligne span{ color: var(--or-gangan); }
.palmares-ligne .point{ color: var(--dore-sourd); opacity: .6; }

/* ---------- Manifeste (accueil) ---------- */

.bloc-manifeste{
  border-left: 3px solid var(--or-gangan);
  padding-left: 1.6rem;
  margin: 0;
}
.bloc-manifeste p{
  font-family: var(--font-titre);
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  color: var(--creme-coton);
  font-style: italic;
}

/* ---------- Footer ---------- */

.pied{
  border-top: 1px solid rgba(212,175,55,.2);
  padding: 3.5rem 0 2rem;
  background: var(--brun-carte-2);
}
.pied-haut{
  display: flex; flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.4rem;
  margin-bottom: 2.2rem;
}
.pied-logo{ height: 56px; margin-bottom: 1rem; }
.pied-devise{ max-width: 320px; }

.pied-reseaux{ display: flex; gap: .9rem; }
.pied-reseaux a{
  width: 40px; height: 40px;
  border: 1px solid var(--or-gangan);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--or-gangan);
  transition: background .18s, color .18s;
}
.pied-reseaux a:hover{ background: var(--or-gangan); color: var(--brun-racine); }
.pied-reseaux svg{ width: 18px; height: 18px; fill: currentColor; }

.pied-bas{
  border-top: 1px solid rgba(212,175,55,.15);
  padding-top: 1.6rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.6rem;
  justify-content: space-between;
  font-size: .82rem;
  color: var(--dore-sourd);
}
.pied-bas a{ text-decoration: underline; text-underline-offset: 3px; }
.pied-bas a:hover{ color: var(--or-gangan); }

/* ---------- Utilitaires ---------- */

.grille-2{ display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; }
.grille-3{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }

@media (max-width: 980px){
  .grille-3{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .grille-2, .grille-3{ grid-template-columns: 1fr; }
  section{ padding: 3.4rem 0; }
  .hero-contenu{ padding: 6rem 0 3rem; }
}

.centre-texte{ text-align: center; }
.mt-0{ margin-top: 0; }

/* ---------- En-tête de page (pages intérieures) ---------- */

.entete-page{
  padding: 8.5rem 0 3.5rem;
  background: var(--brun-carte-2);
  border-bottom: 1px solid rgba(212,175,55,.18);
}
.entete-page h1{ margin-bottom: .3rem; }
.entete-page .devise{ font-size: 1.2rem; margin-bottom: 1.2rem; }
.entete-page .intro{
  max-width: 680px;
  color: var(--dore-sourd);
  font-size: 1.05rem;
}

/* ---------- Numéro de note d'intention ---------- */

.note-numero{
  font-family: var(--font-titre);
  font-weight: 700;
  color: var(--or-gangan);
  opacity: .5;
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: .2rem;
}

/* ---------- Matrice patrimoine × modernité ---------- */

.matrice{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.6rem;
  align-items: center;
  margin: 2.4rem 0;
}

.matrice-colonne{
  background: var(--brun-carte);
  border: 1px solid rgba(212,175,55,.18);
  border-radius: var(--rayon);
  padding: 1.8rem 2rem;
}
.matrice-colonne h3{ color: var(--or-gangan); margin-bottom: .9rem; }
.matrice-colonne ul{ list-style: none; padding: 0; margin: 0; }
.matrice-colonne li{
  padding: .55em 0;
  border-bottom: 1px dashed rgba(212,175,55,.2);
  color: var(--creme-coton);
}
.matrice-colonne li:last-child{ border-bottom: none; }
.matrice-colonne li span{ color: var(--dore-sourd); font-size: .85rem; }

.matrice-signe{
  font-family: var(--font-titre);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--or-gangan);
  text-align: center;
}

.resultat-genre{ text-align: center; margin-top: 2.2rem; }
.resultat-genre .egal{
  font-family: var(--font-titre);
  font-size: 1.8rem;
  color: var(--or-gangan);
  margin-bottom: .4rem;
  display: block;
}
.resultat-genre .mot{
  font-family: var(--font-titre);
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3.2rem);
  background: var(--degrade-or);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: .02em;
}

@media (max-width: 780px){
  .matrice{ grid-template-columns: 1fr; }
  .matrice-signe{ transform: rotate(90deg); }
}

/* ---------- Encadrés (Gangan, machine qui se tait...) ---------- */

.encadre{
  background: var(--brun-carte-2);
  border-left: 3px solid var(--or-gangan);
  border-radius: var(--rayon-sm);
  padding: 1.9rem 2.2rem;
  margin: 2.6rem 0;
}
.encadre .kicker{ margin-bottom: .5em; }
.encadre p{ margin: 0; font-size: 1.05rem; }
.encadre p.devise{ font-size: 1.2rem; margin-bottom: .6em; }
.encadre .signature{
  display: block;
  margin-top: .9em;
  color: var(--dore-sourd);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ---------- Devise en grand (traitement dégradé, grands titres) ---------- */

.devise-grande{
  font-family: var(--font-titre);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.6rem, 4.2vw, 2.6rem);
  background: var(--degrade-or);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.35;
}

/* ---------- CTA de fin de page ---------- */

.cta-fin{
  text-align: center;
  padding: 4.5rem 0;
}
.cta-fin .groupe-boutons{ justify-content: center; }

/* ---------- Statistiques (historique) ---------- */

.stats-ligne{
  display: flex;
  flex-wrap: wrap;
  gap: 2.6rem;
  justify-content: center;
  text-align: center;
  margin: 2.6rem 0;
}
.stat .chiffre{
  font-family: var(--font-titre);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--or-gangan);
  line-height: 1;
  margin-bottom: .3rem;
}
.stat .label{
  color: var(--dore-sourd);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  max-width: 160px;
}

/* ---------- Cartes musiciens ---------- */

.grille-musiciens{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.4rem;
  margin: 2.6rem 0;
}

.carte-musicien{
  flex: 1 1 220px;
  max-width: 240px;
  text-align: center;
}

.photo-encadree.carre{ aspect-ratio: 1 / 1; }

.carte-musicien h3{ margin-bottom: .15rem; }

.carte-musicien .nom-scene{
  font-family: var(--font-titre);
  font-weight: 700;
  font-style: italic;
  color: var(--or-gangan);
  margin-bottom: .3rem;
}

.carte-musicien .role{
  color: var(--dore-sourd);
  text-transform: uppercase;
  font-size: .74rem;
  letter-spacing: .06em;
  margin-bottom: .8rem;
}

.carte-musicien .punchline{
  font-size: .92rem;
  color: var(--creme-coton);
}

.credit-photo{
  text-align: center;
  color: var(--dore-sourd);
  font-size: .8rem;
  margin-top: 1rem;
}

/* ---------- Sorties musicales (pochette, tracklist) ---------- */

.sortie{
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 780px){
  .sortie{ grid-template-columns: 1fr; }
}

.pochette{
  aspect-ratio: 1 / 1;
  border: 1.5mm solid var(--or-gangan);
  border-radius: var(--rayon-sm);
  background:
    radial-gradient(circle at 28% 22%, rgba(237,217,143,.18), transparent 60%),
    var(--brun-carte-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  box-shadow: var(--ombre);
}
.pochette img{ height: 46px; width: auto; margin-bottom: 1.2rem; opacity: .92; }
.pochette .titre-album{
  font-family: var(--font-titre);
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--creme-coton);
  margin: 0;
}
.pochette .sous-titre-album{
  color: var(--or-gangan);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .74rem;
  margin-top: .7rem;
}

.liste-titres{
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  counter-reset: piste;
}
.liste-titres li{
  counter-increment: piste;
  display: flex;
  gap: 1.1rem;
  padding: .9em 0;
  border-bottom: 1px dashed rgba(212,175,55,.2);
}
.liste-titres li:last-child{ border-bottom: none; }
.liste-titres li::before{
  content: counter(piste, decimal-leading-zero);
  font-family: var(--font-titre);
  font-weight: 700;
  color: var(--or-gangan);
  min-width: 2.2ch;
}
.liste-titres .titre-piste{
  font-family: var(--font-titre);
  font-weight: 700;
  color: var(--creme-coton);
  display: block;
}
.liste-titres .note-piste{
  display: block;
  color: var(--dore-sourd);
  font-size: .86rem;
  margin-top: .2rem;
}

.badge{
  display: inline-flex;
  align-items: center;
  gap: .5em;
  border: 1px solid var(--or-gangan);
  border-radius: 999px;
  padding: .5em 1.1em;
  font-size: .78rem;
  color: var(--or-gangan);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: 1.6rem;
}

/* ---------- Écoute (embeds) ---------- */

.lecteur-embed{
  border-radius: var(--rayon);
  overflow: hidden;
  border: 1px solid rgba(212,175,55,.25);
}

.carte-plateforme{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  background: var(--brun-carte);
  border: 1px solid rgba(212,175,55,.18);
  border-radius: var(--rayon);
  padding: 2rem 2.2rem;
}
.carte-plateforme h3{ margin-bottom: .3rem; }
.carte-plateforme p{ margin: 0; color: var(--dore-sourd); }

/* ---------- Sceau "100% live" ---------- */

.sceau-live{
  width: 168px;
  height: 168px;
  border-radius: 50%;
  border: 2px solid var(--or-gangan);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 2rem auto 0;
  position: relative;
}
.sceau-live::before{
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(212,175,55,.5);
  border-radius: 50%;
}
.sceau-live .pourcentage{
  font-family: var(--font-titre);
  font-weight: 700;
  font-size: 2.3rem;
  color: var(--or-gangan);
  line-height: 1;
}
.sceau-live .mot-live{
  font-family: var(--font-texte);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--creme-coton);
  margin-top: .35rem;
}

/* ---------- Palmarès (cartes) ---------- */

.palmares-grille{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 2.4rem;
}
@media (max-width: 780px){
  .palmares-grille{ grid-template-columns: 1fr; }
}
.carte-palmares{
  background: var(--brun-carte);
  border: 1px solid rgba(212,175,55,.18);
  border-radius: var(--rayon);
  padding: 1.9rem;
  text-align: center;
}
.carte-palmares .annee{
  font-family: var(--font-titre);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--or-gangan);
}
.carte-palmares .titre-prix{
  margin-top: .5rem;
  font-weight: 700;
  color: var(--creme-coton);
}
.carte-palmares .organisme{
  color: var(--dore-sourd);
  font-size: .85rem;
  margin-top: .2rem;
}

/* ---------- Vidéos live ---------- */

.grille-videos{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin: 2rem 0;
}
@media (max-width: 780px){
  .grille-videos{ grid-template-columns: 1fr; }
}
.carte-video{
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.video-cadre{
  aspect-ratio: 16 / 9;
  border: 1.5mm solid var(--or-gangan);
  border-radius: var(--rayon-sm);
  overflow: hidden;
  background: var(--brun-carte-2);
}
.video-cadre iframe{ width: 100%; height: 100%; border: none; display: block; }
.legende-video{
  text-align: center;
  color: var(--dore-sourd);
  font-size: .85rem;
}

/* ---------- Galerie photo ---------- */

.galerie-photos{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 2rem;
}
.galerie-photos .photo-encadree{ aspect-ratio: 4 / 5; }
@media (max-width: 780px){
  .galerie-photos{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px){
  .galerie-photos{ grid-template-columns: 1fr; }
}

/* ---------- Espace Presse / Pro (EPK) ---------- */

.grille-telechargements{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 2.2rem;
}
@media (max-width: 780px){
  .grille-telechargements{ grid-template-columns: 1fr; }
}
.carte-telechargement{
  background: var(--brun-carte);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: var(--rayon);
  padding: 2rem 1.8rem;
  text-align: center;
}
.carte-telechargement .icone-doc{
  width: 46px;
  height: 46px;
  margin: 0 auto 1.1rem;
  color: var(--or-gangan);
}
.carte-telechargement h3{ margin-bottom: .3rem; }
.carte-telechargement .poids-fichier{
  color: var(--dore-sourd);
  font-size: .8rem;
  margin-bottom: 1.4rem;
}

.carte-bio{
  background: var(--brun-carte-2);
  border: 1px solid rgba(212,175,55,.18);
  border-radius: var(--rayon);
  padding: 2.2rem;
}
.carte-bio .kicker{ margin-bottom: .8rem; }
.carte-bio p{ margin: 0; }
.carte-bio p + p{ margin-top: 1em; }

.tableau-pratique{
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.tableau-pratique th,
.tableau-pratique td{
  text-align: left;
  padding: .9em 1em;
  border-bottom: 1px dashed rgba(212,175,55,.2);
  font-size: .95rem;
}
.tableau-pratique th{
  color: var(--dore-sourd);
  font-weight: 700;
  text-transform: uppercase;
  font-size: .74rem;
  letter-spacing: .05em;
  width: 40%;
}
.tableau-pratique td{ color: var(--creme-coton); font-weight: 700; }
.tableau-pratique tr:last-child th,
.tableau-pratique tr:last-child td{ border-bottom: none; }

/* ---------- Contact / Booking ---------- */

.carte-contact{
  background: var(--brun-carte);
  border: 1px solid rgba(212,175,55,.18);
  border-radius: var(--rayon);
  padding: 2.2rem;
}
.carte-contact .role{
  color: var(--dore-sourd);
  text-transform: uppercase;
  font-size: .74rem;
  letter-spacing: .06em;
  margin-bottom: 1.6rem;
}

.liste-contact{
  list-style: none;
  padding: 0;
  margin: 0;
}
.liste-contact li{
  display: flex;
  flex-wrap: wrap;
  gap: .3em 1em;
  padding: .9em 0;
  border-bottom: 1px dashed rgba(212,175,55,.2);
}
.liste-contact li:last-child{ border-bottom: none; }
.liste-contact .label-contact{
  color: var(--dore-sourd);
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .05em;
  min-width: 110px;
}
.liste-contact a{
  color: var(--creme-coton);
  font-weight: 700;
}
.liste-contact a:hover{ color: var(--or-gangan); }

.formulaire{
  display: grid;
  gap: 1.3rem;
}
.formulaire .ligne-deux{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
}
@media (max-width: 640px){
  .formulaire .ligne-deux{ grid-template-columns: 1fr; }
}
.champ{ display: flex; flex-direction: column; gap: .5rem; }
.champ label{
  color: var(--dore-sourd);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.champ input,
.champ textarea{
  background: var(--brun-carte-2);
  border: 1px solid rgba(212,175,55,.3);
  border-radius: var(--rayon-sm);
  padding: .9em 1em;
  color: var(--creme-coton);
  font-family: var(--font-texte);
  font-size: 1rem;
}
.champ input:focus,
.champ textarea:focus{
  outline: none;
  border-color: var(--or-gangan);
}
.champ textarea{ min-height: 150px; resize: vertical; }
.formulaire .bouton{
  justify-self: start;
  border: none;
}
.note-formulaire{
  color: var(--dore-sourd);
  font-size: .82rem;
  margin: -.4rem 0 0;
}

/* ---------- Page légale ---------- */

.prose-legale{ max-width: 720px; }
.prose-legale h2{
  color: var(--or-gangan);
  font-size: 1.25rem;
  margin-top: 2.4rem;
}
.prose-legale h2:first-child{ margin-top: 0; }
.prose-legale p{ color: var(--creme-coton); }
.prose-legale a{ color: var(--or-gangan); text-decoration: underline; text-underline-offset: 3px; }
.a-completer{
  color: var(--dore-sourd);
  font-style: italic;
}

/* ---------- Grands écrans : le contenu s'élargit avec la fenêtre ---------- */

@media (min-width: 1440px){
  :root{ --max-largeur: 1360px; }
  .hero-contenu{ max-width: 800px; }
  .grille-3{ gap: 2.2rem; }
  .grille-musiciens{ gap: 3rem; }
}

@media (min-width: 1800px){
  :root{ --max-largeur: 1560px; }
  .hero-contenu{ max-width: 880px; }
}

/* ---------- Visionneuse PDF (pressbook, fiche technique) ---------- */

.visionneuse-pdf{
  border: 1.5mm solid var(--or-gangan);
  border-radius: var(--rayon-sm);
  overflow: hidden;
  background: var(--brun-carte-2);
  box-shadow: var(--ombre);
  margin-top: 1rem;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  min-height: 300px;
}
.visionneuse-pdf canvas{
  max-width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 6px 22px rgba(0,0,0,.4);
}
.visionneuse-pdf .pdf-etat{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  color: var(--dore-sourd);
  font-size: .9rem;
  text-align: center;
  padding: 3rem 0;
}
.visionneuse-pdf .pdf-etat-texte{
  margin: 0;
  max-width: 420px;
}
.action-telechargement{
  margin-top: 1.6rem;
}

/* ---------- Sélecteur de langue FR / EN ---------- */

.selecteur-langue{
  display: flex;
  gap: .4rem;
  margin-left: .3rem;
}
.selecteur-langue a{
  font-family: var(--font-texte);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .05em;
  color: var(--dore-sourd);
  padding: .35em .7em;
  border: 1px solid rgba(212,175,55,.3);
  border-radius: 999px;
}
.selecteur-langue a[aria-current="page"]{
  color: var(--brun-racine);
  background: var(--or-gangan);
  border-color: var(--or-gangan);
}
.selecteur-langue a:hover:not([aria-current="page"]){
  color: var(--or-gangan);
  border-color: var(--or-gangan);
}
@media (max-width: 880px){
  .selecteur-langue{ margin: .4rem 0 0; }
}
