/* ==========================================================================
   Lily le groupe : design "bord de mer"
   Écru papier, marine marinière, rouge bonnet. Plein jour, plein vent.
   Typo : Tanker (lettrage d'affiche) + Cabinet Grotesk. Fonderie ITF, licence libre.
   ========================================================================== */

@font-face {
  font-family: "Tanker";
  src: url("../fonts/tanker.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Cabinet Grotesk";
  src: url("../fonts/cabinetgrotesk-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Cabinet Grotesk";
  src: url("../fonts/cabinetgrotesk-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Cabinet Grotesk";
  src: url("../fonts/cabinetgrotesk-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Cabinet Grotesk";
  src: url("../fonts/cabinetgrotesk-800.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
}

:root {
  --ecru: #f4efe5;
  --ecru-2: #ece5d6;
  --blanc: #fdfbf5;
  --marine: #152b50;
  --marine-2: #0d1b33;
  --marine-70: rgba(21, 43, 80, 0.72);
  --marine-50: rgba(21, 43, 80, 0.5);
  --rouge: #d9402c;
  --rouge-2: #b93321;
  --filet: rgba(21, 43, 80, 0.16);
  --filet-clair: rgba(244, 239, 229, 0.22);
  --display: "Tanker", "Arial Black", sans-serif;
  --texte: "Cabinet Grotesk", "Helvetica Neue", Arial, sans-serif;
  --rythme: clamp(4.5rem, 9vw, 7.5rem);
  --gouttiere: clamp(1.25rem, 4vw, 2.5rem);
  --rayures: repeating-linear-gradient(
    180deg,
    var(--marine) 0 3px,
    transparent 3px 9px
  );
}

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

html { scroll-behavior: smooth; scroll-padding-top: 6rem; }

body {
  background: var(--ecru);
  color: var(--marine);
  font-family: var(--texte);
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; }

::selection { background: var(--rouge); color: var(--blanc); }

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

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  text-wrap: balance;
}

.conteneur {
  width: min(1200px, 100% - 2 * var(--gouttiere));
  margin-inline: auto;
}

/* utilitaires texte */
.note { color: var(--marine-70); }
.note-petite { font-size: 0.9rem; color: var(--marine-70); }
.section-nuit .note, .contexte-sombre .note { color: rgba(244, 239, 229, 0.75); }
.section-nuit .note-petite, .contexte-sombre .note-petite { color: rgba(244, 239, 229, 0.62); }
.section-nuit .lien, .contexte-sombre .lien { color: #f2b8ad; }
.lien { color: var(--rouge); font-weight: 700; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.lien:hover { color: var(--rouge-2); }

/* filet rayé façon marinière */
.rayure {
  width: 76px;
  height: 21px;
  background: var(--rayures);
  border: none;
}
.contexte-sombre .rayure { --rayures: repeating-linear-gradient(180deg, var(--ecru) 0 3px, transparent 3px 9px); }

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.6rem var(--gouttiere);
}
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.est-solide::before {
  background: rgba(244, 239, 229, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--filet);
}
.nav-logo img {
  width: 58px;
  height: 58px;
  transition: transform 0.3s, filter 0.3s;
}
/* nav posée sur la photo du héros (accueil) : logo et liens en clair
   tant que la barre est transparente, marine dès qu'elle devient écru.
   Sur téléphone le héros est empilé (photo sous la nav), donc logo marine. */
@media (min-width: 821px) {
  .nav-sur-photo:not(.est-solide) .nav-logo img {
    filter: brightness(0) invert(1) drop-shadow(0 1px 6px rgba(13, 27, 51, 0.55));
  }
}
@media (min-width: 901px) {
  .nav-sur-photo:not(.est-solide) .nav-liens a {
    color: var(--blanc);
    text-shadow: 0 1px 8px rgba(13, 27, 51, 0.65);
  }
  .nav-sur-photo:not(.est-solide) .nav-liens a:hover { color: #f2b8ad; }
  .nav-sur-photo:not(.est-solide) .nav-liens a[aria-current="page"] { color: #f2b8ad; }
  .nav-sur-photo:not(.est-solide) .nav-liens .nav-boutique a { color: var(--blanc); text-shadow: none; }
}
.nav-logo:hover img { transform: rotate(-6deg); }
.nav-liens {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin-left: auto;
}
.nav-liens a {
  display: block;
  padding: 0.45rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--marine);
  border-radius: 999px;
  transition: color 0.2s;
}
.nav-liens a:hover { color: var(--rouge); }
.nav-liens a[aria-current="page"] {
  color: var(--rouge);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}
.nav-liens .nav-boutique a {
  color: var(--blanc);
  background: var(--rouge);
  margin-left: 0.6rem;
  padding-inline: 1.1rem;
}
.nav-liens .nav-boutique a:hover { background: var(--rouge-2); color: var(--blanc); }

.nav-burger {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border: 1.5px solid var(--marine);
  border-radius: 10px;
  background: var(--blanc);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-burger span {
  width: 20px;
  height: 2.5px;
  background: var(--marine);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

@media (max-width: 900px) {
  .nav-burger { display: flex; }
  .nav-liens {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    background: var(--ecru);
    background-image: linear-gradient(180deg, rgba(21, 43, 80, 0.04) 0 100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    margin: 0;
  }
  .nav-liens a { font-size: 1.3rem; padding: 0.7rem 1.4rem; }
  .nav.est-ouvert .nav-liens { opacity: 1; pointer-events: auto; }
  .nav.est-ouvert .nav-burger { position: relative; z-index: 2; }
  .nav.est-ouvert .nav-burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav.est-ouvert .nav-burger span:nth-child(2) { opacity: 0; }
  .nav.est-ouvert .nav-burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

/* --------------------------------------------------------------------------
   Héros de l'accueil : grande photo du groupe en fond
   -------------------------------------------------------------------------- */

.heros-photo {
  position: relative;
  min-height: 96svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}
.heros-fond {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}
.heros-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(13, 27, 51, 0.34) 0%, rgba(13, 27, 51, 0.06) 42%, rgba(13, 27, 51, 0.8) 100%);
}
.heros-photo-inner { padding-block: 8rem 4.8rem; color: var(--ecru); }
.heros-photo h1 {
  font-size: clamp(4.5rem, 14vw, 11rem);
  color: var(--ecru);
  text-shadow: 0 4px 34px rgba(13, 27, 51, 0.5);
}
.heros-photo .heros-eyebrow {
  color: var(--blanc);
  text-shadow:
    0 1px 2px rgba(13, 27, 51, 0.95),
    0 2px 6px rgba(13, 27, 51, 0.85),
    0 4px 18px rgba(13, 27, 51, 0.8),
    0 0 34px rgba(13, 27, 51, 0.65);
}
.heros-photo .heros-eyebrow::before { filter: drop-shadow(0 2px 4px rgba(13, 27, 51, 0.8)); }
.heros-photo .heros-eyebrow::before { --rayures: repeating-linear-gradient(180deg, var(--ecru) 0 3px, transparent 3px 9px); }
.heros-photo .heros-sous {
  color: rgba(253, 251, 245, 0.95);
  text-shadow: 0 1px 12px rgba(13, 27, 51, 0.65);
}
.heros-photo .heros-sous strong { color: var(--blanc); }
.heros-photo .btn-contour { color: var(--ecru); border-color: rgba(244, 239, 229, 0.6); }
.heros-photo .btn-contour:hover { background: rgba(244, 239, 229, 0.14); border-color: var(--ecru); }
.heros-photo .pastille {
  position: absolute;
  top: clamp(5.8rem, 13vh, 8rem);
  right: clamp(1rem, 4vw, 3.2rem);
  bottom: auto;
  z-index: 3;
}

/* Sur téléphone, la photo n'est plus croppée : elle s'affiche entière,
   pleine largeur, et le texte passe dessous sur fond écru. */
@media (max-width: 820px) {
  .heros-photo {
    min-height: 0;
    display: block;
    padding-top: 5rem;
  }
  .heros-fond {
    position: static;
    width: 100%;
    height: auto;
    object-fit: unset;
  }
  .heros-photo::after { content: none; }
  .heros-photo-inner { color: var(--marine); padding: 2.4rem 0 2.8rem; }
  .heros-photo h1 { color: var(--marine); text-shadow: none; }
  .heros-photo .heros-eyebrow { color: var(--rouge); text-shadow: none; }
  .heros-photo .heros-eyebrow::before {
    --rayures: repeating-linear-gradient(180deg, var(--marine) 0 3px, transparent 3px 9px);
    filter: none;
  }
  .heros-photo .heros-sous { color: var(--marine-70); text-shadow: none; }
  .heros-photo .heros-sous strong { color: var(--marine); }
  .heros-photo .btn-contour { color: var(--marine); border-color: rgba(21, 43, 80, 0.4); }
  /* la pastille chevauche le bord bas droit de la photo, façon sticker */
  .heros-photo .pastille {
    width: 92px;
    height: 92px;
    font-size: 0.78rem;
    top: calc(5rem + 49.48vw - 72px);
    right: 0.9rem;
  }
}

/* section nouvel album : tirage + texte */
.duo-texte h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 0.5rem; }
.heros-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: 1.2rem;
}
.heros-eyebrow::before { content: ""; width: 34px; height: 15px; background: var(--rayures); }
.heros-affiche h1 {
  font-size: clamp(5rem, 16vw, 12.5rem);
  color: var(--marine);
}
.heros-sous {
  max-width: 30em;
  margin-top: 1.4rem;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.5;
  color: var(--marine-70);
}
.heros-sous strong { color: var(--marine); font-weight: 700; }
.heros-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.2rem;
}

/* cadre photo façon tirage épinglé */
.cadre-affiche {
  position: relative;
  justify-self: center;
  max-width: 460px;
  transform: rotate(2.2deg);
  transition: transform 0.4s ease;
}
.cadre-affiche:hover { transform: rotate(0.8deg) scale(1.01); }
.cadre-affiche .tirage {
  background: var(--blanc);
  padding: 14px 14px 52px;
  border-radius: 4px;
  box-shadow:
    0 2px 6px rgba(13, 27, 51, 0.12),
    0 24px 48px -18px rgba(13, 27, 51, 0.38);
}
.cadre-affiche img { border-radius: 2px; }
.cadre-affiche figcaption {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--marine-70);
}
.pastille {
  position: absolute;
  top: -34px;
  right: -30px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: var(--rouge);
  color: var(--blanc);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--display);
  font-size: 0.95rem;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.6rem;
  transform: rotate(9deg);
  box-shadow: 0 10px 24px -8px rgba(185, 51, 33, 0.55);
  text-decoration: none;
  transition: transform 0.25s ease, background 0.2s ease;
  z-index: 2;
}
.pastille:hover { transform: rotate(3deg) scale(1.06); background: var(--rouge-2); }
@media (max-width: 900px) {
  .cadre-affiche { max-width: 400px; margin-top: 1rem; }
  .pastille { right: -10px; }
}

/* --------------------------------------------------------------------------
   Bandeau affiche (ticker)
   -------------------------------------------------------------------------- */

.bandeau {
  background: var(--marine);
  color: var(--ecru);
  overflow: hidden;
  padding-block: 0.8rem;
  border-block: 3px solid var(--marine);
  box-shadow: inset 0 5px 0 var(--ecru), inset 0 -5px 0 var(--ecru);
  border-top: 6px solid var(--marine);
  border-bottom: 6px solid var(--marine);
}
.bandeau-piste {
  display: flex;
  gap: 2.6rem;
  width: max-content;
  animation: defile 38s linear infinite;
}
.bandeau span {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.bandeau span::before {
  content: "✶";
  margin-right: 2.6rem;
  color: var(--rouge);
  -webkit-text-stroke: 1px var(--ecru);
}
.bandeau .accent { color: #f2b8ad; }
@keyframes defile {
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .bandeau-piste { animation: none; }
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* --------------------------------------------------------------------------
   En-têtes de pages intérieures
   -------------------------------------------------------------------------- */

.heros-page {
  padding: clamp(7.5rem, 15vh, 10rem) 0 clamp(1.5rem, 3vh, 2.5rem);
}
.heros-page .heros-eyebrow { margin-bottom: 0.9rem; }
.heros-page h1 {
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  color: var(--marine);
}
.heros-page .heros-sous { margin-top: 1rem; }

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

.section { padding-block: var(--rythme); }
.section-nuit,
.contexte-sombre {
  background: var(--marine);
  color: var(--ecru);
}
.section-nuit { border-block: 6px solid var(--marine-2); }
.contexte-sombre ::selection { background: var(--ecru); color: var(--marine); }

.entete-section { margin-bottom: clamp(2rem, 5vw, 3.2rem); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: 0.9rem;
}
.eyebrow::before { content: ""; width: 34px; height: 15px; background: var(--rayures); flex: none; }
.section-nuit .eyebrow { color: #f2b8ad; }
.section-nuit .eyebrow::before { --rayures: repeating-linear-gradient(180deg, var(--ecru) 0 3px, transparent 3px 9px); }
.entete-section h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
.entete-section p { margin-top: 0.9rem; color: var(--marine-70); max-width: 52em; }
.section-nuit .entete-section p { color: rgba(244, 239, 229, 0.75); }

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.7rem;
  font-family: var(--texte);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ecru);
  background: var(--marine);
  border: 2px solid var(--marine);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn:hover { background: var(--marine-2); border-color: var(--marine-2); transform: translateY(-2px); }
.btn-rouge { background: var(--rouge); border-color: var(--rouge); color: var(--blanc); }
.btn-rouge:hover { background: var(--rouge-2); border-color: var(--rouge-2); }
.btn-contour {
  background: transparent;
  color: var(--marine);
  border-color: rgba(21, 43, 80, 0.4);
}
.btn-contour:hover { background: rgba(21, 43, 80, 0.07); border-color: var(--marine); transform: translateY(-2px); }
.contexte-sombre .btn-contour, .section-nuit .btn-contour {
  color: var(--ecru);
  border-color: rgba(244, 239, 229, 0.45);
}
.contexte-sombre .btn-contour:hover, .section-nuit .btn-contour:hover {
  background: rgba(244, 239, 229, 0.1);
  border-color: var(--ecru);
}
.btn-petit { padding: 0.55rem 1.15rem; font-size: 0.76rem; }

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

.grille-actus {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.4rem;
}
.carte-actu {
  display: flex;
  flex-direction: column;
  background: var(--blanc);
  border: 1.5px solid var(--filet);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.carte-actu:hover {
  transform: translateY(-5px);
  border-color: rgba(21, 43, 80, 0.35);
  box-shadow: 0 18px 40px -18px rgba(13, 27, 51, 0.35);
}
.carte-actu figure { aspect-ratio: 16 / 10; overflow: hidden; }
.carte-actu img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.carte-actu:hover img { transform: scale(1.04); }
.carte-actu-corps { padding: 1.3rem 1.4rem 1.4rem; display: flex; flex-direction: column; gap: 0.45rem; flex: 1; }
.carte-actu time, .carte-date {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rouge);
}
.carte-actu h3 { font-size: 1.45rem; letter-spacing: 0.02em; }
.carte-actu p { font-size: 0.95rem; color: var(--marine-70); }
.carte-actu .faux-lien {
  margin-top: auto;
  padding-top: 0.9rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rouge);
}
.carte-actu:hover .faux-lien { text-decoration: underline; text-decoration-thickness: 2.5px; text-underline-offset: 4px; }

/* --------------------------------------------------------------------------
   Bande de photos de scène
   -------------------------------------------------------------------------- */

.bande-scene {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 900px) { .bande-scene { grid-template-columns: repeat(2, 1fr); } }
.bande-scene a {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.bande-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.bande-scene a:hover img { transform: scale(1.05); }
.bande-scene figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 2.4rem 1.2rem 1rem;
  background: linear-gradient(transparent, rgba(13, 27, 51, 0.85));
  color: var(--ecru);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}
.bande-scene figcaption time {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #f2b8ad;
  margin-top: 0.2rem;
}

/* --------------------------------------------------------------------------
   Concerts : billet + rangée d'événement
   -------------------------------------------------------------------------- */

.liste-evenements { display: flex; flex-direction: column; }
.evenement {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.35rem 0.25rem;
  border-bottom: 1.5px solid var(--filet);
}
.evenement:first-child { border-top: 1.5px solid var(--filet); }
.section-nuit .evenement { border-color: var(--filet-clair); }
.tampon {
  flex: none;
  width: 82px;
  text-align: center;
  padding: 0.6rem 0.3rem 0.7rem;
  border: 2px dashed var(--rouge);
  border-radius: 10px;
  transform: rotate(-2deg);
  color: var(--rouge);
  background: var(--blanc);
}
.section-nuit .tampon { background: transparent; border-color: #f2b8ad; color: #f2b8ad; }
.tampon strong {
  display: block;
  font-family: var(--display);
  font-size: 1.6rem;
  line-height: 1;
}
.tampon small {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.evenement-infos { flex: 1; min-width: 0; }
.evenement-infos h3 { font-size: 1.45rem; }
.evenement-infos p { font-size: 0.92rem; color: var(--marine-70); margin-top: 0.2rem; }
.section-nuit .evenement-infos p { color: rgba(244, 239, 229, 0.7); }
@media (max-width: 640px) {
  .evenement { flex-wrap: wrap; }
  .evenement .btn { margin-left: calc(82px + 1.4rem); }
}

/* --------------------------------------------------------------------------
   Mur d'affiches
   -------------------------------------------------------------------------- */

.mur-affiches {
  columns: 4 240px;
  column-gap: 1.2rem;
}
.affiche {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  background: var(--blanc);
  border-radius: 6px;
  padding: 10px 10px 0;
  box-shadow: 0 2px 5px rgba(13, 27, 51, 0.1), 0 14px 30px -18px rgba(13, 27, 51, 0.3);
  overflow: hidden;
  cursor: zoom-in;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.affiche:nth-child(3n) { transform: rotate(0.5deg); }
.affiche:nth-child(3n + 1) { transform: rotate(-0.5deg); }
.affiche:hover {
  transform: translateY(-4px) rotate(0deg);
  box-shadow: 0 4px 8px rgba(13, 27, 51, 0.12), 0 22px 44px -18px rgba(13, 27, 51, 0.4);
}
.affiche img { width: 100%; border-radius: 3px; }
.affiche figcaption { padding: 0.7rem 0.4rem 0.8rem; font-size: 0.86rem; font-weight: 700; line-height: 1.35; }
.affiche figcaption time {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rouge);
  margin-top: 0.15rem;
}

/* Visionneuse */
.visionneuse {
  border: none;
  background: rgba(13, 27, 51, 0.93);
  max-width: 100vw;
  max-height: 100vh;
  width: 100vw;
  height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 1rem 1rem;
}
.visionneuse[open] { display: flex; }
.visionneuse img { max-width: min(92vw, 900px); max-height: 86vh; object-fit: contain; border-radius: 4px; background: var(--blanc); padding: 8px; }
.visionneuse-fermer {
  position: fixed;
  top: 1rem;
  right: 1.2rem;
  font: 800 0.85rem/1 var(--texte);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--ecru);
  border: none;
  border-radius: 999px;
  color: var(--marine);
  padding: 0.7rem 1.1rem;
  cursor: pointer;
}
.visionneuse-fleche {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--ecru);
  color: var(--marine);
  font-size: 1.3rem;
  cursor: pointer;
}
.visionneuse-fleche:hover { background: var(--blanc); }
.visionneuse-fleche.prec { left: 1rem; }
.visionneuse-fleche.suiv { right: 1rem; }

/* --------------------------------------------------------------------------
   Lecteur d'album
   -------------------------------------------------------------------------- */

.onglets-albums {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.2rem;
}
.onglets-albums button {
  font: 800 0.83rem/1 var(--texte);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--marine);
  background: transparent;
  border: 2px solid rgba(21, 43, 80, 0.35);
  border-radius: 999px;
  padding: 0.75rem 1.4rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.onglets-albums button:hover { border-color: var(--marine); }
.onglets-albums button[aria-selected="true"] {
  color: var(--ecru);
  background: var(--marine);
  border-color: var(--marine);
}

.lecteur {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}
@media (max-width: 820px) { .lecteur { grid-template-columns: 1fr; } }
.lecteur-pochette { position: sticky; top: 6rem; }
@media (max-width: 820px) { .lecteur-pochette { position: static; max-width: 340px; } }
.lecteur-pochette img {
  width: 100%;
  border-radius: 6px;
  background: var(--blanc);
  padding: 10px;
  box-shadow: 0 2px 6px rgba(13, 27, 51, 0.12), 0 24px 48px -20px rgba(13, 27, 51, 0.4);
  transform: rotate(-1.2deg);
}
.lecteur-pochette h3 { margin-top: 1.3rem; font-size: 1.7rem; }
.lecteur-pochette p { color: var(--marine-70); font-size: 0.9rem; font-weight: 700; margin-top: 0.2rem; }
.lecteur-pochette .actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.1rem; }

.lecteur-barre {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  background: var(--blanc);
  border: 1.5px solid var(--filet);
  border-radius: 999px;
  margin-bottom: 1rem;
}
.lecteur-bouton {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--rouge);
  color: var(--blanc);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s, transform 0.15s;
}
.lecteur-bouton:hover { background: var(--rouge-2); transform: scale(1.05); }
.lecteur-bouton svg { width: 20px; height: 20px; fill: currentColor; }
.lecteur-progression {
  flex: 1;
  height: 26px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.lecteur-progression .rail {
  width: 100%;
  height: 5px;
  border-radius: 3px;
  background: rgba(21, 43, 80, 0.15);
  overflow: hidden;
}
.lecteur-progression .avancee {
  width: 0;
  height: 100%;
  background: var(--marine);
}
.lecteur-temps {
  flex: none;
  font-size: 0.8rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--marine-70);
  min-width: 6.4em;
  text-align: right;
}

.liste-titres { list-style: none; counter-reset: piste; }
.liste-titres li { counter-increment: piste; }
.liste-titres button {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  width: 100%;
  padding: 0.75rem 0.8rem;
  font: 500 1.02rem/1.4 var(--texte);
  color: var(--marine);
  text-align: left;
  background: none;
  border: none;
  border-bottom: 1.5px solid var(--filet);
  cursor: pointer;
  transition: background 0.15s;
  border-radius: 6px 6px 0 0;
}
.liste-titres li:first-child button { border-top: 1.5px solid var(--filet); }
.liste-titres button:hover { background: rgba(253, 251, 245, 0.9); }
.liste-titres button::before {
  content: counter(piste, decimal-leading-zero);
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--marine-50);
  font-variant-numeric: tabular-nums;
  min-width: 1.7em;
}
.liste-titres .duree {
  margin-left: auto;
  font-size: 0.82rem;
  color: var(--marine-50);
  font-variant-numeric: tabular-nums;
}
.liste-titres li.joue button { color: var(--rouge); font-weight: 700; }
.liste-titres li.joue button::before { content: "♪"; color: var(--rouge); }

.plateformes { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.6rem; }
.plateformes a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--marine);
  background: var(--blanc);
  border: 1.5px solid var(--filet);
  border-radius: 999px;
  transition: border-color 0.2s, transform 0.15s;
}
.plateformes a:hover { border-color: var(--marine); transform: translateY(-2px); }
.plateformes img { width: 18px; height: 18px; }
.section-nuit .plateformes a { background: transparent; color: var(--ecru); border-color: var(--filet-clair); }
.section-nuit .plateformes a:hover { border-color: var(--ecru); }

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

.grille-videos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 1.6rem;
}
.carte-video { display: flex; flex-direction: column; gap: 0.7rem; }
.cadre-video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--marine-2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(13, 27, 51, 0.12), 0 16px 34px -18px rgba(13, 27, 51, 0.35);
}
.cadre-video iframe, .cadre-video video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.cadre-video .amorce {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  cursor: pointer;
  background: none;
}
.cadre-video .amorce img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.cadre-video .amorce:hover img { transform: scale(1.04); }
.cadre-video .amorce::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--rouge) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23fdfbf5"><path d="M8 5.5v13l11-6.5z"/></svg>') center/26px no-repeat;
  box-shadow: 0 8px 20px -6px rgba(13, 27, 51, 0.55);
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.cadre-video .amorce:hover::after { transform: scale(1.1); background-color: var(--rouge-2); }
.carte-video h3 { font-size: 1.3rem; }
.carte-video .genre {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rouge);
}

/* --------------------------------------------------------------------------
   Le groupe
   -------------------------------------------------------------------------- */

.duo {
  display: grid;
  grid-template-columns: minmax(280px, 440px) 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 860px) { .duo { grid-template-columns: 1fr; } }
.duo-photo img {
  border-radius: 4px;
  background: var(--blanc);
  padding: 12px 12px 44px;
  box-shadow: 0 2px 6px rgba(13, 27, 51, 0.12), 0 24px 48px -20px rgba(13, 27, 51, 0.4);
  transform: rotate(-1.6deg);
}
.duo-texte p + p { margin-top: 1em; }
.duo-texte p { color: var(--marine-70); }
.duo-texte p strong { color: var(--marine); font-weight: 800; }

.pupitres { list-style: none; display: flex; flex-direction: column; }
.pupitre {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.3rem 1.2rem;
  padding: 1.1rem 0.2rem;
  border-bottom: 1.5px solid var(--filet-clair);
}
.pupitre:first-child { border-top: 1.5px solid var(--filet-clair); }
.pupitre-nom { font-family: var(--display); font-size: 1.6rem; letter-spacing: 0.03em; text-transform: uppercase; flex: none; }
.pupitre-instruments { color: rgba(244, 239, 229, 0.75); font-size: 1rem; }

.chronologie { list-style: none; position: relative; padding-left: 1.7rem; }
.chronologie::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--filet);
}
.chronologie li { position: relative; padding-block: 0.85rem; }
.chronologie li::before {
  content: "";
  position: absolute;
  left: calc(-1.7rem + 1px);
  top: 1.5rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rouge);
}
.chronologie .annee {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--rouge);
}
.chronologie h3 { font-family: var(--texte); font-size: 1.1rem; font-weight: 800; text-transform: none; letter-spacing: 0; margin-top: 0.1rem; }
.chronologie p { font-size: 0.92rem; color: var(--marine-70); }

.carte-radio {
  background: var(--blanc);
  border: 1.5px solid var(--filet);
  border-radius: 14px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.carte-radio h3 { font-size: 1.45rem; }
.carte-radio p { font-size: 0.95rem; color: var(--marine-70); }
.carte-radio audio { width: 100%; }
.carte-radio img { border-radius: 8px; }

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

.grille-contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.3rem;
}
.carte-contact {
  background: var(--blanc);
  border: 1.5px solid var(--filet);
  border-radius: 14px;
  padding: 1.7rem 1.6rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.carte-contact:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -18px rgba(13, 27, 51, 0.3); }
.carte-contact .eyebrow { margin-bottom: 0.7rem; }
.carte-contact a { color: var(--marine); text-decoration: none; font-weight: 700; }
.carte-contact a:hover { color: var(--rouge); }
.carte-contact li { list-style: none; padding-block: 0.2rem; font-size: 1.05rem; }

.liste-docs { list-style: none; }
.liste-docs a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 0.4rem;
  border-bottom: 1.5px solid var(--filet-clair);
  text-decoration: none;
  color: var(--ecru);
  font-weight: 700;
  transition: color 0.2s, padding-left 0.2s;
}
.liste-docs li:first-child a { border-top: 1.5px solid var(--filet-clair); }
.liste-docs a:hover { color: #f2b8ad; padding-left: 0.8rem; }
.liste-docs a::before { content: "↧"; color: #f2b8ad; font-size: 1.1rem; }
.liste-docs .type {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(244, 239, 229, 0.55);
}

/* --------------------------------------------------------------------------
   Jeux
   -------------------------------------------------------------------------- */

.grille-jeux {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.4rem;
}
.carte-jeu {
  position: relative;
  background: var(--blanc);
  border: 1.5px solid var(--filet);
  border-radius: 14px;
  padding: 1.8rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.carte-jeu:hover {
  transform: translateY(-5px) rotate(-0.4deg);
  box-shadow: 0 20px 40px -20px rgba(13, 27, 51, 0.35);
}
.carte-jeu .pictos { font-size: 2.1rem; line-height: 1; }
.carte-jeu h3 { font-size: 1.5rem; }
.carte-jeu p { font-size: 0.93rem; color: var(--marine-70); flex: 1; }
.carte-jeu .actions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.6rem; }

/* --------------------------------------------------------------------------
   Pages titre (liens plateformes)
   -------------------------------------------------------------------------- */

.fiche-titre {
  width: min(560px, 100% - 2 * var(--gouttiere));
  margin-inline: auto;
  padding-block: 8.5rem 4rem;
  text-align: center;
}
.fiche-titre .pochette {
  width: min(320px, 70vw);
  margin-inline: auto;
  border-radius: 4px;
  background: var(--blanc);
  padding: 10px;
  box-shadow: 0 2px 6px rgba(13, 27, 51, 0.12), 0 28px 56px -22px rgba(13, 27, 51, 0.45);
  transform: rotate(-1.2deg);
}
.fiche-titre h1 { font-size: clamp(2.1rem, 6.5vw, 3.1rem); margin-top: 1.8rem; }
.fiche-titre .artiste {
  color: var(--rouge);
  margin-top: 0.5rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
}
.liste-ecoute { list-style: none; margin-top: 2rem; }
.liste-ecoute a {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 1.2rem;
  border: 1.5px solid var(--filet);
  border-radius: 12px;
  margin-bottom: 0.65rem;
  text-decoration: none;
  color: var(--marine);
  font-weight: 700;
  background: var(--blanc);
  transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}
.liste-ecoute a:hover {
  border-color: var(--marine);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -14px rgba(13, 27, 51, 0.35);
}
.liste-ecoute img { width: 26px; height: 26px; }
.liste-ecoute .action {
  margin-left: auto;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rouge);
}
.liste-ecoute .mise-avant { border-color: rgba(217, 64, 44, 0.5); background: #fdf3f1; }

/* --------------------------------------------------------------------------
   Pied de page
   -------------------------------------------------------------------------- */

.pied {
  background: var(--marine-2);
  color: var(--ecru);
  padding: 0 0 2.5rem;
}
.pied-rayures {
  height: 18px;
  background: repeating-linear-gradient(180deg, var(--marine) 0 4px, var(--ecru) 4px 8px);
  border-bottom: 6px solid var(--marine-2);
  margin-bottom: 3.2rem;
}
.pied-grille {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 760px) { .pied-grille { grid-template-columns: 1fr; } }
.pied h3 { font-size: 1.3rem; margin-bottom: 0.9rem; }
.pied ul { list-style: none; }
.pied li { padding-block: 0.18rem; }
.pied a { color: rgba(244, 239, 229, 0.78); text-decoration: none; font-size: 0.95rem; font-weight: 500; }
.pied a:hover { color: #f2b8ad; }
.pied-marque { max-width: 34em; }
.pied-marque img { width: 70px; margin-bottom: 0.9rem; }
.pied-marque p { font-size: 0.95rem; color: rgba(244, 239, 229, 0.72); }
.pied-bas {
  margin-top: 2.6rem;
  padding-top: 1.4rem;
  border-top: 1.5px solid var(--filet-clair);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1.6rem;
  font-size: 0.83rem;
  color: rgba(244, 239, 229, 0.6);
}
.pied-bas a { color: inherit; }
.pied-bas .credit-pidz img { display: inline-block; width: 54px; vertical-align: middle; filter: invert(0.92); }
.bouton-chevre {
  margin-left: auto;
  font-size: 1.25rem;
  background: none;
  border: 1.5px solid var(--filet-clair);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.2s, background 0.2s;
}
.bouton-chevre:hover { border-color: var(--ecru); background: rgba(244, 239, 229, 0.08); }
.bouton-chevre.bele { animation: bele 0.5s ease; }
@keyframes bele {
  25% { transform: rotate(-14deg) scale(1.15); }
  60% { transform: rotate(10deg) scale(1.1); }
}

.reseaux { display: flex; gap: 0.7rem; margin-top: 1rem; }
.reseaux a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--filet-clair);
  border-radius: 50%;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.reseaux a:hover { border-color: var(--ecru); background: rgba(244, 239, 229, 0.1); transform: translateY(-2px); }
.reseaux svg { width: 17px; height: 17px; fill: rgba(244, 239, 229, 0.85); }

/* --------------------------------------------------------------------------
   Apparitions au défilement
   -------------------------------------------------------------------------- */

.apparait {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.apparait.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .apparait { opacity: 1; transform: none; }
}
