@font-face {
  font-family: 'Heavitas';
  src: url('../fonts/Heavitas.woff2') format('woff2'),
       url('../fonts/Heavitas.ttf') format('truetype');
  font-weight: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SuperBoom';
  src: url('../fonts/SuperBoom.woff2') format('woff2'),
       url('../fonts/SuperBoom.otf') format('opentype');
  font-weight: normal;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Archivo', sans-serif;
  background: #16265f;
  -webkit-font-smoothing: antialiased;
}

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

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

.page {
  background: #16265f;
  /* clip au lieu de hidden : empêche le scroll horizontal sans bloquer position:sticky */
  overflow-x: clip;
}

/* ── Animations ── */
@keyframes acFloatA {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-22px) rotate(-5deg); }
}

@keyframes acFloatB {
  0%, 100% { transform: translateY(0) rotate(6deg); }
  50% { transform: translateY(-26px) rotate(6deg); }
}

@keyframes acFloatC {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(0deg); }
}

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

@keyframes acBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes acWalk {
  0% { transform: translateX(-170px); }
  100% { transform: translateX(calc(100vw + 60px)); }
}

@keyframes acWaddle {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-9px) rotate(3deg); }
}

@keyframes acNote {
  0% { transform: translateY(0) rotate(0); opacity: 0; }
  12% { opacity: 0.85; }
  100% { transform: translateY(-150px) rotate(22deg); opacity: 0; }
}

@keyframes acRise {
  0% { opacity: 0; transform: translateY(28px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ── Accessibility ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Typography helpers ── */
.font-superboom {
  font-family: 'SuperBoom', cursive;
  transform: rotate(-2deg);
}

.font-heavitas {
  font-family: 'Heavitas', sans-serif;
}

.font-narrow {
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn--yellow {
  background: #ffd11e;
  color: #18286e;
  box-shadow: 0 3px 0 #b88c00;
}

.btn--yellow:hover {
  transform: translateY(1px);
  box-shadow: 0 2px 0 #b88c00;
}

.btn--yellow-lg {
  padding: 15px 26px;
  font-size: 16px;
  font-weight: 900;
  gap: 10px;
  box-shadow: 0 5px 0 #b88c00;
}

.btn--yellow-lg:hover {
  transform: translateY(2px);
  box-shadow: 0 3px 0 #b88c00;
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.85);
  padding: 14px 28px;
  font-size: 16px;
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn--nav {
  padding: 9px 16px;
  font-size: 14px;
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(22, 38, 95, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid rgba(255, 209, 30, 0);
  transition: background 0.5s ease, backdrop-filter 0.5s ease, -webkit-backdrop-filter 0.5s ease, border-color 0.5s ease;
}

.header.is-scrolled {
  background: rgba(14, 22, 62, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(255, 209, 30, 0.28);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav__logo img {
  height: 72px;
  width: auto;
  display: block;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.is-scrolled .nav__logo img {
  height: 51px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 15px;
  color: #f4eedb;
  position: relative;
  transition: color 0.25s ease;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffd11e;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__link:hover {
  color: #ffd11e;
}

.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
}

.nav__link.is-active {
  color: #ffd11e;
}

/* Burger button */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: relative;
  z-index: 110;
  line-height: 0;
}

.nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
}

.nav__burger span {
  display: block;
  height: 2px;
  background: #ffd11e;
  border-radius: 2px;
  transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.3s ease;
  transform-origin: center;
}

.nav__toggle.is-open .nav__burger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav__toggle.is-open .nav__burger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__toggle.is-open .nav__burger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Full-screen overlay */
.nav__overlay {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: #0e1642 url('../assets/fabric-blue.webp') center / cover;
  clip-path: circle(0% at calc(100% - 33px) 37px);
  transition: clip-path 0.75s cubic-bezier(0.76, 0, 0.24, 1);
  pointer-events: none;
  display: flex;
  align-items: stretch;
}

.nav__overlay.is-open {
  clip-path: circle(170% at calc(100% - 33px) 37px);
  pointer-events: all;
}

.nav__overlay-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: 110px 36px 52px;
}

.nav__overlay-nav {
  display: flex;
  flex-direction: column;
}

.nav__overlay-link {
  font-family: 'Heavitas', sans-serif;
  font-size: clamp(34px, 10vw, 56px);
  color: rgba(255, 255, 255, 0.88);
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 209, 30, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(28px);
  transition: color 0.25s ease, opacity 0.5s ease, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__overlay-link::after {
  content: '→';
  font-size: 0.45em;
  opacity: 0.4;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav__overlay-link:hover {
  color: #ffd11e;
}

.nav__overlay-link:hover::after {
  opacity: 1;
  transform: translateX(6px);
}

.nav__overlay.is-open .nav__overlay-link {
  opacity: 1;
  transform: none;
}

.nav__overlay.is-open .nav__overlay-link:nth-child(1) { transition-delay: 0.12s; }
.nav__overlay.is-open .nav__overlay-link:nth-child(2) { transition-delay: 0.18s; }
.nav__overlay.is-open .nav__overlay-link:nth-child(3) { transition-delay: 0.24s; }
.nav__overlay.is-open .nav__overlay-link:nth-child(4) { transition-delay: 0.30s; }
.nav__overlay.is-open .nav__overlay-link:nth-child(5) { transition-delay: 0.36s; }

.nav__overlay-bottom {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease 0.42s, transform 0.5s ease 0.42s;
}

.nav__overlay.is-open .nav__overlay-bottom {
  opacity: 1;
  transform: none;
}

.nav__overlay-ig {
  padding: 14px 26px;
  font-size: 15px;
}

.nav__overlay-date {
  color: rgba(255, 209, 30, 0.5);
  font-size: 11px;
  letter-spacing: 0.16em;
  margin: 0;
}

/* Scroll offset for fixed nav */
section[id] {
  scroll-margin-top: 80px;
}

/* ── Hero Scroll — sticky natif, pas de pin GSAP ── */
.hero-pin {
  /* Conteneur : hauteur = stage (100svh) + plage d'animation (95svh) */
  height: 195svh;
}

@media (max-width: 768px) {
  .hero-pin {
    height: 165svh;
  }
}

.hero-pin__stage {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  background: #0e1642;
}

/* Photo (derrière les rideaux) */
.hero-pin__photo {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-pin__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.hero-pin__photo-overlay {
  position: absolute;
  inset: 0;
  background:
    /* Dégradé vertical : fort en haut (sous le sous-titre) et en bas
       (sous les boutons), fenêtre centrale plus ouverte pour voir la scène */
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.84) 0%,
      rgba(0, 0, 0, 0.46) 28%,
      rgba(0, 0, 0, 0.22) 48%,
      rgba(0, 0, 0, 0.42) 72%,
      rgba(0, 0, 0, 0.82) 100%),
    /* Vignette latérale légère */
    linear-gradient(90deg,
      rgba(0, 0, 0, 0.28) 0%,
      transparent 20%,
      transparent 80%,
      rgba(0, 0, 0, 0.28) 100%);
}

/* ── Portes — un seul logo coupé en deux ── */
/*
  Logo width W = clamp(300px, 70vw, 720px), W/2 = clamp(150px, 35vw, 360px).
  Porte gauche (left:0, width:50%, overflow:hidden) :
    logo positionné left = (50vw − W/2) → la porte clippe à 50vw → moitié gauche visible ✓
  Porte droite (right:0, width:50%, overflow:hidden) :
    logo positionné left = −W/2 (coords porte) = (50vw − W/2) en viewport → moitié droite visible ✓
  Ensemble : [50vw−W/2, 50vw+W/2] = 1 logo centré.
*/
.hero-pin__door {
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  z-index: 3;
  overflow: hidden;
  background-color: #16265f;
  background-image: radial-gradient(130% 110% at 50% -8%, rgba(74, 110, 230, 0.38) 0%, rgba(20, 32, 90, 0) 54%);
  will-change: transform;
}

.hero-pin__door--left  { left: 0; }
.hero-pin__door--right { right: 0; }

/* Ligne lumineuse à la jointure */
.hero-pin__door--left::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 209, 30, 0.55) 30%, rgba(255, 209, 30, 0.55) 70%, transparent 100%);
}
.hero-pin__door--right::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 209, 30, 0.55) 30%, rgba(255, 209, 30, 0.55) 70%, transparent 100%);
}

/* Logo commun aux deux portes — la porte (overflow:hidden) masque la moitié non voulue */
.hero-pin__door-logo {
  position: absolute;
  top: 50%;
  width: clamp(300px, 70vw, 720px);
  max-width: none; /* override global img{max-width:100%} : le logo doit déborder de la porte */
  height: auto;
  transform: translateY(-50%);
  filter: drop-shadow(0 8px 28px rgba(0, 0, 0, 0.65));
  pointer-events: none;
  user-select: none;
}

/* Porte gauche : logo positionné pour que son bord gauche = 50vw − W/2 */
.hero-pin__door--left  .hero-pin__door-logo { left: calc(50vw - clamp(150px, 35vw, 360px)); }
/* Porte droite : même bord gauche, mais en coords porte = (50vw − W/2) − 50vw = −W/2 */
.hero-pin__door--right .hero-pin__door-logo { left: calc(-1 * clamp(150px, 35vw, 360px)); }

/* Contenu (révélé en cascade) */
.hero-pin__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* flex-start : le 1er item commence TOUJOURS au padding-top,
     jamais au-dessus (justify-center débordait vers le haut quand
     le contenu dépassait la hauteur disponible)                    */
  justify-content: flex-start;
  text-align: center;
  padding: clamp(120px, 16vh, 150px) 28px clamp(88px, 11vh, 110px);
}

.hero-pin__content .btn,
.hero-pin__content a { pointer-events: all; }

/* Chaque item démarre invisible — GSAP révèle */
.hero-pin__item {
  opacity: 0;
}

/* Réduit les mouvements : afficher l'état final directement */
@media (prefers-reduced-motion: reduce) {
  .hero-pin__door    { display: none !important; }
  .hero-pin__item    { opacity: 1 !important; transform: none !important; }
  .hero__duck-wrap   { opacity: 1 !important; transform: none !important; }
  .hero-pin__scroll-hint { opacity: 0 !important; }
}

/* État final verrouillé après play-once — !important écrase le scrub GSAP.
   transition sur les portes : absorbe le lag restant du scrub (0.6 s) sans snap. */
.hero--locked .hero-pin__door--left  {
  transform: translateX(-100%) !important;
  transition: transform 0.65s ease-out;
}
.hero--locked .hero-pin__door--right {
  transform: translateX( 100%) !important;
  transition: transform 0.65s ease-out;
}
.hero--locked .hero-pin__item        { opacity: 1 !important; transform: none !important; transition: opacity 0.5s ease-out, transform 0.5s ease-out; }
.hero--locked .hero-pin__scroll-hint { opacity: 0 !important; }
@media (min-width: 769px) {
  .hero--locked .hero__duck-wrap { opacity: 1 !important; transform: none !important; }
}

/* Indicateur de scroll */
.hero-pin__scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  opacity: 0;
  pointer-events: none;
}

.hero-pin__scroll-hint-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(255, 209, 30, 0.7) 0%, rgba(255, 209, 30, 0) 100%);
  animation: acScrollPulse 1.9s ease-in-out infinite;
}

.hero-pin__scroll-hint-text {
  color: rgba(255, 209, 30, 0.55);
  font-size: 9px;
  letter-spacing: 0.2em;
}

@keyframes acScrollPulse {
  0%, 100% { transform: scaleY(1);   opacity: 1; }
  50%       { transform: scaleY(0.4); opacity: 0.4; }
}

/* ── Hero (legacy CSS — gardé pour compatibilité .hero__* enfants) ── */
.hero {
  position: relative;
  padding: 88px 24px 120px;
  text-align: center;
  overflow: hidden;
  background-color: #16265f;
  background-image:
    radial-gradient(120% 95% at 50% -12%, rgba(74, 110, 230, 0.42) 0%, rgba(20, 32, 90, 0) 56%),
    url('../assets/fabric-blue.webp');
  background-size: auto, cover;
  background-position: center top, center;
}

.hero__note {
  position: absolute;
  color: #ffd11e;
  pointer-events: none;
  animation: acNote ease-in infinite;
}

.hero__note--1 { left: 16%; bottom: 140px; font-size: 38px; opacity: 0.5; animation-duration: 5s; }
.hero__note--2 { left: 40%; bottom: 170px; font-size: 28px; opacity: 0.4; animation-duration: 6.2s; animation-delay: 1.4s; }
.hero__note--3 { left: 64%; bottom: 150px; font-size: 34px; opacity: 0.45; animation-duration: 5.6s; animation-delay: 2.6s; }
.hero__note--4 { left: 82%; bottom: 180px; font-size: 26px; opacity: 0.4; animation-duration: 6.8s; animation-delay: 0.8s; }

/* Duck wrappers — GSAP entrance targets */
.hero__duck-wrap {
  position: absolute;
  pointer-events: none;
}

.hero__duck-wrap--guitar { left: -18px; top: 128px; }
.hero__duck-wrap--saxo  { right: -10px; top: 96px; }
.hero__duck-wrap--micro { right: 7%; bottom: -26px; }

.hero__duck {
  display: block;
  opacity: 0.96;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.4));
}

.hero__duck--guitar {
  width: 190px;
  animation: acFloatA 6s ease-in-out infinite;
}

.hero__duck--saxo {
  width: 170px;
  animation: acFloatB 7s ease-in-out infinite;
}

.hero__duck--micro {
  width: 140px;
  opacity: 0.94;
  animation: acFloatC 5.5s ease-in-out infinite;
  filter: drop-shadow(0 16px 20px rgba(0, 0, 0, 0.4));
}

.hero__content {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}

.hero__tagline {
  color: #ffd11e;
  font-size: 34px;
  margin: 0 0 6px;
}

.hero__logo {
  width: min(360px, 54vw);
  margin: 4px auto 10px;
  display: block;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.45));
}

.hero__dates {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 18px 0 6px;
}

.hero__dates-num {
  color: #fff;
  font-size: clamp(34px, 8vw, 64px);
  line-height: 1;
  letter-spacing: 0.01em;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.3);
}

.hero__dates-month {
  color: #ffd11e;
  font-size: clamp(30px, 7vw, 56px);
  line-height: 1;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.3);
}

.hero__location {
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #cdd9ff;
  font-size: clamp(14px, 2.4vw, 19px);
  margin: 6px 0 0;
}

.hero__countdown {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 30px 0 8px;
  flex-wrap: wrap;
}

.countdown__box {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 209, 30, 0.4);
  border-radius: 14px;
  padding: 12px 6px;
  min-width: 78px;
}

.countdown__value {
  font-family: 'Heavitas', sans-serif;
  color: #ffd11e;
  font-size: 36px;
  line-height: 1;
}

.countdown__label {
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #cdd9ff;
  font-size: 11px;
  margin-top: 6px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* ── Marquee ── */
.marquee {
  background: #ffd11e;
  overflow: hidden;
  white-space: nowrap;
  border-top: 3px solid #18286e;
  border-bottom: 3px solid #18286e;
  padding: 11px 0;
}

.marquee__inner {
  display: inline-block;
  animation: acMarquee 26s linear infinite;
}

.marquee__text {
  font-family: 'Heavitas', sans-serif;
  color: #18286e;
  font-size: 22px;
  letter-spacing: 0.02em;
}

/* ── Section shared ── */
.section {
  padding: 100px 24px 110px;
}

.section__container {
  max-width: 1040px;
  margin: 0 auto;
}

.section__container--wide {
  max-width: 1180px;
  margin: 0 auto;
}

.section__container--infos {
  max-width: 1100px;
  margin: 0 auto;
}

.section__eyebrow {
  color: #1f3f9e;
  font-size: 22px;
  margin: 0 0 6px;
}

.section__eyebrow--yellow {
  color: #ffd11e;
  font-size: 22px;
  margin: 0 0 4px;
}

.section__title {
  font-family: 'Heavitas', sans-serif;
  color: #18286e;
  font-size: clamp(44px, 6.5vw, 80px);
  line-height: 0.94;
  margin: 0;
}

.section__title--white {
  color: #fff;
  line-height: 1;
}

.section__title--large {
  font-size: clamp(52px, 8.5vw, 110px);
  line-height: 0.92;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
}

.section__subtitle {
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #cdd9ff;
  font-size: 15px;
  margin: 12px 0 0;
}

.section__header {
  text-align: center;
  margin-bottom: 56px;
}

.section__header--sm {
  margin-bottom: 14px;
}

.section__desc {
  font-family: 'Archivo', sans-serif;
  color: #5b543a;
  font-size: 17px;
  max-width: 54ch;
  margin: 14px auto 0;
  line-height: 1.5;
}

/* Paper texture background */
.bg-paper {
  background: #f4eedb;
}

.bg-paper--yellow {
  background: #ffd11e;
}

.bg-blue-fabric {
  background-color: #1c2d82;
  background-image:
    linear-gradient(rgba(16, 24, 66, 0.22), rgba(16, 24, 66, 0.34)),
    url('../assets/fabric-blue.webp');
  background-size: cover, cover;
  background-position: center, center;
}

.bg-blue-dark {
  background-color: #16265f;
  background-image:
    linear-gradient(rgba(13, 20, 56, 0.42), rgba(13, 20, 56, 0.64)),
    url('../assets/fabric-blue.webp');
  background-size: cover, cover;
  background-position: center, center bottom;
}

/* ── Intro ── */
.intro__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.intro__title-accent {
  color: #1f3f9e;
}

/* Surcharge fond sombre (section--intro sur bg-blue-dark) */
.section--intro .intro__title-accent {
  color: #ffd11e;
}

.intro__text {
  font-family: 'Archivo', sans-serif;
  color: #3a3420;
  font-size: 18px;
  line-height: 1.65;
  margin: 0 0 16px;
  max-width: 46ch;
}

.intro__text:last-of-type {
  margin-bottom: 0;
}

.intro__badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.badge-org {
  display: flex;
  align-items: center;
  gap: 11px;
  background: #fff;
  border-radius: 14px;
  padding: 9px 16px 9px 9px;
}

.badge-org--foot {
  border: 2px solid #2f6b2c;
}

.badge-org--rugby {
  border: 2px solid #c4302b;
}

.badge-org--ancien {
  border: 2px solid #d99a1c;
}

.badge-org__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.badge-org--foot .badge-org__avatar {
  border: 2px solid #2f6b2c;
}

.badge-org--rugby .badge-org__avatar {
  border: 2px solid #c4302b;
}

.badge-org--ancien .badge-org__avatar {
  border: 2px solid #d99a1c;
}

.badge-org__avatar--duck {
  object-fit: contain;
  background: #1f3f9e;
  padding: 4px;
}

.badge-org__name {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  color: #18286e;
  font-size: 14px;
  line-height: 1.1;
}

.badge-org__sub {
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 600;
  color: #6b6346;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.intro__visual {
  position: relative;
  text-align: center;
}

.intro__visual-bg {
  position: absolute;
  inset: 8% 6%;
  background: #ffd11e;
  border-radius: 24px;
  transform: rotate(-4deg);
}

.intro__visual-img {
  position: relative;
  width: min(330px, 80%);
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.25));
  animation: acBob 4s ease-in-out infinite;
}

/* ── Intro compacte ── */
.section--intro {
  padding: clamp(52px, 6vw, 72px) 24px clamp(48px, 5.5vw, 68px);
}
.section--intro .intro__grid {
  gap: 32px;
}
.section--intro .section__eyebrow {
  font-size: 17px;
  margin-bottom: 3px;
  color: #ffd11e;
}
.section--intro .section__title {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 0.96;
  color: #ffffff;
}
.section--intro .intro__text {
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.7;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.85); /* fallback si JS désactivé */
}
.section--intro .intro__badges {
  margin-top: 16px;
  gap: 10px;
}
.section--intro .badge-org {
  padding: 7px 12px 7px 7px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}
.section--intro .badge-org__avatar {
  width: 36px;
  height: 36px;
}
.section--intro .intro__visual-img {
  width: min(240px, 80%);
}

/* ── Effet text-fill au scroll — mots ── */
.intro-word {
  display: inline;
  color: rgba(255, 255, 255, 0.18);
  will-change: color;
}

/* Réduit les mouvements : texte allumé directement */
@media (prefers-reduced-motion: reduce) {
  .intro-word { color: #ffffff !important; }
}

/* ── Ambiance ── */
.ambiance {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 90px 24px;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(16, 26, 70, 0.62), rgba(16, 26, 70, 0.72)),
    url('../assets/photos/p07.webp');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  border-top: 4px solid #ffd11e;
  border-bottom: 4px solid #ffd11e;
}

.ambiance__walker {
  position: absolute;
  bottom: 14px;
  left: 0;
  width: 118px;
  animation: acWalk 18s linear infinite;
  z-index: 3;
}

.ambiance__walker img {
  width: 100%;
  animation: acWaddle 0.5s ease-in-out infinite;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.55));
}

.ambiance__content {
  position: relative;
  max-width: 840px;
}

.ambiance__text {
  font-family: 'Archivo', sans-serif;
  color: #e7ecff;
  font-size: clamp(16px, 2.4vw, 20px);
  line-height: 1.5;
  max-width: 54ch;
  margin: 20px auto 0;
}

/* ── Programme ── */
.programme__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.programme-card {
  background: #f4eedb;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid #18286e;
  box-shadow: 0 12px 0 rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.programme-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 0 rgba(0, 0, 0, 0.22), 0 8px 32px rgba(0, 0, 0, 0.14);
}

.programme-card__header {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #16265f url('../assets/fabric-blue.webp') center / cover;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 12px;
}

.programme-card__header--ven {
  background-position: center 40%;
}

.programme-card__header--sam {
  background-position: center 60%;
}

.programme-card__day {
  position: relative;
  font-family: 'Heavitas', sans-serif;
  font-size: 34px;
  color: rgba(255, 255, 255, 0.14);
  line-height: 1;
}

.programme-card__duck {
  position: relative;
  filter: drop-shadow(0 6px 8px rgba(0, 0, 0, 0.4));
}

.programme-card__duck--saxo { width: 80px; }
.programme-card__duck--guitar { width: 80px; }
.programme-card__duck--micro { width: 70px; }

.programme-card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.programme-card__weekday {
  font-family: 'SuperBoom', cursive;
  color: #1f3f9e;
  font-size: 26px;
  line-height: 0.9;
}

.programme-card__date {
  font-family: 'Heavitas', sans-serif;
  color: #18286e;
  font-size: 20px;
  line-height: 1;
  margin: 2px 0 12px;
}

.programme-card__artist {
  font-family: 'Heavitas', sans-serif;
  color: #1f3f9e;
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  margin: 6px 0 0;
}

.programme-card__support {
  margin-top: 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  color: #6b6346;
  font-size: 13px;
}

.programme-card__tag-wrap {
  margin-top: auto;
  padding-top: 14px;
}

.tag {
  display: inline-block;
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  border-radius: 999px;
  padding: 5px 12px;
}

.tag--blue {
  color: #fff;
  background: #1f3f9e;
}

.tag--yellow {
  color: #18286e;
  background: #ffd11e;
}

.programme__note {
  text-align: center;
  font-family: 'Archivo', sans-serif;
  color: #cdd9ff;
  font-size: 14px;
  margin: 30px 0 0;
}

/* ── Bodegas ── */
.bodegas__grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 44px;
}

.bodega-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.bodega-card--foot   { border: 2px solid rgba(47, 107, 44, 0.45); }
.bodega-card--rugby  { border: 2px solid rgba(196, 48, 43, 0.45); }
.bodega-card--ancien { border: 2px solid rgba(217, 154, 28, 0.45); }

/* Photo : panneau gauche de largeur fixe */
.bodega-card__photo {
  position: relative;
  width: clamp(200px, 24vw, 280px);
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}

.bodega-card__photo--foot {
  background-image: url('../assets/photos/p06.webp');
  background-position: center 38%;
}

.bodega-card__photo--rugby {
  background-image: url('../assets/photos/p05.webp');
  background-position: center 32%;
}

.bodega-card__photo--ancien {
  overflow: hidden;
  background-color: #1f3f9e;
  background-image: url('../assets/fabric-blue.webp');
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bodega-card__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 30, 70, 0) 50%, rgba(20, 30, 70, 0.12) 100%);
}

.bodega-card__label {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: #fff;
  border-radius: 999px;
  padding: 5px 12px;
}

.bodega-card__label--foot   { background: #2f6b2c; }
.bodega-card__label--rugby  { background: #c4302b; }
.bodega-card__label--ancien { color: #18286e; background: #ffd11e; }

.bodega-card__duck {
  position: relative;
  width: 130px;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.45));
  animation: acBob 4.5s ease-in-out infinite;
}

/* Corps : 2 colonnes — identité | programme */
.bodega-card__body {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(180px, 38%) 1fr;
  min-width: 0;
}

.bodega-card__identity {
  padding: 22px 24px 22px 26px;
  border-right: 1px solid rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
}

.bodega-card__info {
  padding: 18px 24px 20px 22px;
  display: flex;
  flex-direction: column;
}

.bodega-card__name {
  font-family: 'Heavitas', sans-serif;
  font-size: clamp(24px, 2.8vw, 34px);
  margin: 0;
  line-height: 0.92;
}

.bodega-card__name--foot   { color: #2f6b2c; }
.bodega-card__name--rugby  { color: #c4302b; }
.bodega-card__name--ancien { color: #b6800f; font-size: clamp(20px, 2.4vw, 28px); }

.bodega-card__desc {
  font-family: 'Archivo', sans-serif;
  color: #3a3420;
  font-size: 14px;
  line-height: 1.6;
  margin: 10px 0 0;
}

.bodega-card__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 16px;
}

.bodega-tag {
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
  border-radius: 999px;
  padding: 4px 11px;
}

.bodega-tag--foot   { color: #2f6b2c; background: #e7f1e3; }
.bodega-tag--rugby  { color: #c4302b; background: #fbe6e4; }
.bodega-tag--ancien { color: #b6800f; background: #fbeecb; }

/* Blasons */
.bodega-card__blason {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.6));
}
.bodega-card__blason--duck {
  position: relative;
  bottom: auto;
  right: auto;
  filter: drop-shadow(0 10px 14px rgba(0,0,0,0.45));
}

/* Annule top-margin sur le premier enfant de .bodega-card__info */
.bodega-card__info > *:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

/* Mobile : retour carte verticale */
@media (max-width: 760px) {
  .bodega-card {
    flex-direction: column;
  }
  .bodega-card__photo {
    width: 100%;
    height: 200px;
  }
  .bodega-card__body {
    grid-template-columns: 1fr;
  }
  .bodega-card__identity {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    padding: 18px 18px 16px;
  }
  .bodega-card__info {
    padding: 14px 18px 18px;
  }
  .bodega-card__tags {
    margin-top: 12px;
    padding-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bodega-card__duck { animation: none; }
}

/* ── Galerie ── */
.galerie__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}

.galerie__cta {
  padding: 11px 18px;
  font-size: 14px;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 0 #b88c00;
}

.galerie__cta:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #b88c00;
}

.galerie__wrapper {
  position: relative;
}

.galerie__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 2px 18px;
  scroll-behavior: smooth;
}

.galerie__track::-webkit-scrollbar {
  height: 9px;
}

.galerie__track::-webkit-scrollbar-thumb {
  background: rgba(255, 209, 30, 0.55);
  border-radius: 9px;
}

.galerie__track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 9px;
}

.galerie__slide {
  flex: 0 0 auto;
  width: 340px;
  max-width: 78vw;
  height: 460px;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(255, 209, 30, 0.5);
  scroll-snap-align: center;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.35);
}

.galerie__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.galerie__nav {
  position: absolute;
  top: calc(50% - 36px);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  background: #ffd11e;
  color: #18286e;
  font-family: 'Archivo', sans-serif;
  cursor: pointer;
  box-shadow: 0 5px 0 #b88c00;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.galerie__nav:hover {
  transform: translateY(2px);
  box-shadow: 0 3px 0 #b88c00;
}

.galerie__nav--prev { left: -8px; }
.galerie__nav--next { right: -8px; }

.galerie__hint {
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9fb0e8;
  font-size: 12px;
  margin: 8px 2px 0;
}

/* ── Infos ── */
.infos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.info-card {
  background: #18286e;
  border-radius: 18px;
  padding: 32px 26px;
  transition: transform 0.25s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card__label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Heavitas', sans-serif;
  color: #ffd11e;
  font-size: 13px;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.info-card__icon {
  flex-shrink: 0;
  display: block;
  opacity: 0.9;
}

.info-card__title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
}

.info-card__desc {
  font-family: 'Archivo', sans-serif;
  color: #cdd9ff;
  font-size: 14px;
  margin-top: 8px;
  line-height: 1.55;
}

/* Tarif rows (card ENTRÉE) — une ligne par jour */
.info-card__tarifs {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
}

.info-tarif {
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  color: #cdd9ff;
  line-height: 1.55;
  margin: 0;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.info-tarif:first-child {
  padding-top: 2px;
}

.info-tarif:last-child {
  border-bottom: none;
  padding-bottom: 2px;
}

.info-tarif strong {
  color: #fff;
  font-weight: 700;
}

.info-tarif__nowrap {
  white-space: nowrap;
}

/* Perks (verre offert, enfants) */
.info-card__perks {
  margin-top: 12px;
  padding-top: 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-perk {
  font-family: 'Archivo', sans-serif;
  font-size: 11.5px;
  color: rgba(255, 209, 30, 0.75);
  line-height: 1.35;
  padding-left: 12px;
  position: relative;
}

.info-perk::before {
  content: '·';
  position: absolute;
  left: 0;
  color: rgba(255, 209, 30, 0.5);
  font-size: 14px;
  line-height: 1;
  top: 1px;
}

/* ── Footer ── */
.footer {
  position: relative;
  background: #101a46;
  padding: 60px 24px 36px;
  overflow: hidden;
}

.footer__duck {
  position: absolute;
  right: 3%;
  bottom: -10px;
  width: 170px;
  opacity: 0.9;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.4));
  animation: acBob 5s ease-in-out infinite;
  pointer-events: none;
}

.footer__grid {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer__logo {
  height: 74px;
  width: auto;
  margin-bottom: 14px;
}

.footer__about {
  font-family: 'Archivo', sans-serif;
  color: #aebef0;
  font-size: 14px;
  line-height: 1.6;
  max-width: 34ch;
  margin: 0;
}

.footer__heading {
  font-family: 'Heavitas', sans-serif;
  color: #ffd11e;
  font-size: 15px;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.footer__link {
  display: block;
  font-family: 'Archivo', sans-serif;
  color: #cdd9ff;
  font-size: 15px;
  margin-bottom: 9px;
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: #fff;
}

.footer__ig {
  padding: 11px 18px;
  font-size: 14px;
  letter-spacing: 0.03em;
}

.footer__ig:hover {
  transform: translateY(1px);
}

.footer__social {
  font-family: 'Archivo', sans-serif;
  color: #7f8fc8;
  font-size: 13px;
  margin: 16px 0 0;
  line-height: 1.5;
}

.footer__bottom {
  position: relative;
  max-width: 1100px;
  margin: 38px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer__copy {
  font-family: 'Archivo', sans-serif;
  color: #7f8fc8;
  font-size: 13px;
}

.footer__legal {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  max-width: 1100px;
  margin: 20px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.bod-legal {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.3);
  text-align: center;
  padding: 14px 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  max-width: 820px;
  margin: 14px auto 0;
}

/* ── Reveal animations ── */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.3s ease;
  will-change: opacity, transform;
}

[data-reveal="left"] { transform: translateX(-46px); }
[data-reveal="right"] { transform: translateX(46px); }
[data-reveal="up"] { transform: translateY(40px); }

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ── FAQ ── */
.faq__list {
  max-width: 720px;
  margin: 0 auto;
}

.faq__item {
  border-top: 1px dashed rgba(255, 209, 30, 0.3);
}

.faq__item:last-child {
  border-bottom: 1px dashed rgba(255, 209, 30, 0.3);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 0;
  text-align: left;
  color: #ffd11e;
  font-family: 'Heavitas', sans-serif;
  font-size: 17px;
  line-height: 1.35;
  transition: color 0.2s;
}

.faq__question:hover,
.faq__item.is-open .faq__question {
  color: #fff;
}

.faq__chevron {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: #ffd11e;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s;
}

.faq__question:hover .faq__chevron,
.faq__item.is-open .faq__chevron {
  color: #fff;
}

.faq__item.is-open .faq__chevron {
  transform: rotate(180deg);
}

.faq__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item.is-open .faq__body {
  grid-template-rows: 1fr;
}

.faq__body-inner {
  overflow: hidden;
}

.faq__answer {
  padding-bottom: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.72;
  max-width: 600px;
  margin: 0;
}

/* ── Premium interactions ── */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #ffd11e;
  transform-origin: 0 0;
  transform: scaleX(0);
  z-index: 200;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(255, 209, 30, 0.7);
}

.btn--yellow {
  position: relative;
  overflow: hidden;
}

.btn--yellow::after {
  content: '';
  position: absolute;
  top: 0;
  left: -130%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  pointer-events: none;
}

.btn--yellow:hover::after {
  left: 160%;
}

/* Programme card header: night-theme overlays */
.programme-card__header::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.programme-card--ven .programme-card__header::after {
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.055) 0,
      rgba(255, 255, 255, 0.055) 3px,
      transparent 3px,
      transparent 22px
    ),
    linear-gradient(135deg, rgba(30, 80, 210, 0.45) 0%, rgba(200, 38, 38, 0.2) 100%);
}

.programme-card--sam .programme-card__header::after {
  background: linear-gradient(145deg, rgba(28, 140, 68, 0.58) 0%, rgba(15, 70, 32, 0.14) 100%);
}

.programme-card--dim .programme-card__header::after {
  background: linear-gradient(155deg, rgba(24, 100, 44, 0.64) 0%, rgba(80, 160, 36, 0.2) 100%);
}

.programme-card__day,
.programme-card__duck {
  position: relative;
  z-index: 2;
}

/* Countdown glow */
.countdown__value {
  text-shadow: 0 0 30px rgba(255, 209, 30, 0.6);
}

/* Bodega photo panel */
.bodega-card__photo {
  overflow: hidden;
}

.bodega-card__photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.bodega-card__label {
  z-index: 2;
}

/* Galerie slide */
.galerie__slide {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.35s ease, box-shadow 0.35s ease;
}

.galerie__slide:hover {
  transform: scale(1.025);
  border-color: rgba(255, 209, 30, 0.95);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.55);
}

/* ══════════════════════════════════════════════════════════
   PROGRAMME — section onglets jours
   ══════════════════════════════════════════════════════════ */

.prog-section {
  position: relative;
  background: #0c1840;
  background-image:
    radial-gradient(ellipse 65% 50% at 8%  40%, rgba(74, 110, 230, 0.22) 0%, transparent 58%),
    radial-gradient(ellipse 55% 45% at 92% 65%, rgba(255,150,  20, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 50% 92%, rgba(20,  40, 120, 0.45) 0%, transparent 60%);
  padding: clamp(88px, 10vw, 120px) 0 clamp(72px, 9vw, 112px);
  overflow: hidden;
}

/* Guirlande de fanions en haut de la section */
.prog-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='44'%3E%3Cline x1='0' y1='6' x2='240' y2='6' stroke='rgba(255,255,255,0.22)' stroke-width='1.5'/%3E%3Ccircle cx='0' cy='6' r='3' fill='rgba(255,255,255,0.28)'/%3E%3Ccircle cx='80' cy='6' r='3' fill='rgba(255,255,255,0.28)'/%3E%3Ccircle cx='160' cy='6' r='3' fill='rgba(255,255,255,0.28)'/%3E%3Ccircle cx='240' cy='6' r='3' fill='rgba(255,255,255,0.28)'/%3E%3Cpolygon points='6,6 74,6 40,44' fill='%23ffd11e' opacity='0.68'/%3E%3Cpolygon points='86,6 154,6 120,44' fill='%23fff' opacity='0.32'/%3E%3Cpolygon points='166,6 234,6 200,44' fill='%23ff8c1a' opacity='0.62'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 240px 44px;
  pointer-events: none;
  z-index: 1;
}

/* Crénelage de château en bas de section */
.prog-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 52px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='52'%3E%3Cpath d='M0 52L0 26 14 26 14 6 28 6 28 26 42 26 42 6 56 6 56 26 70 26 70 6 84 6 84 26 98 26 98 6 112 6 112 26 120 26 120 52Z' fill='rgba(255,255,255,0.035)'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 120px 52px;
  background-position: center bottom;
  pointer-events: none;
  z-index: 1;
}

.prog-section__inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

/* ── Décors de fond flottants ── */
.prog-deco-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.prog-note {
  position: absolute;
  color: rgba(255, 209, 30, 0.13);
  user-select: none;
  line-height: 1;
  animation: prog-note-float 9s ease-in-out infinite;
}
.prog-note--1 { top: 18%; left: 4%;  font-size: 22px; animation-delay:  0s;   animation-duration:  9s; }
.prog-note--2 { top: 42%; right: 5%; font-size: 16px; animation-delay: -3s;   animation-duration: 12s; }
.prog-note--3 { top: 68%; left: 2%;  font-size: 14px; animation-delay: -5s;   animation-duration: 14s; }
.prog-note--4 { top: 22%; right: 9%; font-size: 28px; animation-delay: -7s;   animation-duration:  8s; }
.prog-note--5 { top: 78%; right: 3%; font-size: 18px; animation-delay: -1.5s; animation-duration: 11s; }

@keyframes prog-note-float {
  0%, 100% { transform: translateY(0px)    rotate(-6deg); opacity: 0.55; }
  35%       { transform: translateY(-22px)  rotate( 6deg); opacity: 0.95; }
  65%       { transform: translateY(-11px)  rotate(-3deg); opacity: 0.70; }
}

/* ── En-tête ── */
.prog-section__hd {
  text-align: center;
  margin-bottom: clamp(40px, 5.5vw, 64px);
}

.prog-section__eyebrow {
  display: block;
  font-family: 'SuperBoom', sans-serif;
  font-size: clamp(13px, 1.8vw, 17px);
  color: #ffd11e;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.prog-year {
  font-size: clamp(26px, 4vw, 38px);
  color: #fff;
  letter-spacing: 0.06em;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.prog-section__title {
  font-family: 'Heavitas', sans-serif;
  font-size: clamp(52px, 10vw, 100px);
  line-height: 0.88;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}

.prog-section__sub {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(13px, 1.6vw, 16px);
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Liseré décoratif sous le sous-titre */
.prog-section__sub::after {
  content: '';
  display: block;
  width: 44px;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(255, 209, 30, 0.55), transparent);
  margin: 16px auto 0;
  border-radius: 1px;
}

/* ── Onglets ── */
.prog-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 36px;
  padding-top: 44px; /* espace pour le canard au-dessus */
}

.prog-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 20px 10px 16px;
  border: 1.5px solid rgba(255, 209, 30, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  font-family: 'Archivo', sans-serif;
  text-align: center;
  transition:
    background   0.25s ease,
    border-color 0.25s ease,
    color        0.25s ease,
    transform    0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow   0.25s ease;
  will-change: transform;
  position: relative;
}

.prog-tab:focus-visible {
  outline: 2px solid #ffd11e;
  outline-offset: 3px;
}

.prog-tab:hover:not(.prog-tab--active) {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 209, 30, 0.45);
  color: rgba(255, 255, 255, 0.88);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 209, 30, 0.1);
}

.prog-tab--active {
  background: linear-gradient(160deg, #ffe14a 0%, #ffd11e 55%, #ffba00 100%);
  border-color: #ffd11e;
  color: #0d1b4a;
  transform: translateY(-6px);
  box-shadow:
    0 18px 52px rgba(255, 209, 30, 0.44),
    0 4px 18px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 225, 74, 0.5) inset;
}

/* Canard mascotte au-dessus du jour actif */
.prog-tab__duck {
  position: absolute;
  top: -52px;
  left: 50%;
  transform: translateX(-50%) scale(0) translateY(10px);
  opacity: 0;
  transition:
    opacity   0.28s ease,
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.55));
  z-index: 3;
  line-height: 0;
}
.prog-tab__duck-img {
  width: 52px;
  height: auto;
  display: block;
}

.prog-tab--active .prog-tab__duck {
  opacity: 1;
  transform: translateX(-50%) scale(1) translateY(0);
  animation: prog-duck-bob 2.8s ease-in-out infinite 0.45s;
}

/* Petite flèche sous le canard */
.prog-tab--active .prog-tab__duck::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top: 5px solid rgba(255, 209, 30, 0.65);
}

@keyframes prog-duck-bob {
  0%,  100% { transform: translateX(-50%) translateY(0px)   rotate(-4deg) scale(1);    }
  40%        { transform: translateX(-50%) translateY(-6px)  rotate( 4deg) scale(1.06); }
  70%        { transform: translateX(-50%) translateY(-3px)  rotate(-2deg) scale(1.02); }
}

.prog-tab__day {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.82;
  line-height: 1;
}

.prog-tab--active .prog-tab__day {
  opacity: 0.72;
}

.prog-tab__num {
  font-family: 'Heavitas', sans-serif;
  font-size: clamp(36px, 6.5vw, 68px);
  line-height: 1;
  letter-spacing: 0.01em;
  margin: 2px 0;
}

.prog-tab__mth {
  font-size: 28px;
  font-style: italic;
  opacity: 0.72;
  margin-bottom: 4px;
}

.prog-tab__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.14);
  letter-spacing: 0.02em;
  margin-top: 6px;
}

.prog-tab--active .prog-tab__badge {
  background: rgba(13, 27, 74, 0.14);
}

.prog-tab__badge--free {
  color: #b8ffb0;
  background: rgba(80, 200, 80, 0.15);
}

/* ── Thème du soir ── */
.prog-theme {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid rgba(255, 209, 30, 0.45);
  border-radius: 0 8px 8px 0;
}

.prog-theme__icon {
  font-size: 20px;
  line-height: 1.1;
  flex-shrink: 0;
}

.prog-theme__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.prog-theme__label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 209, 30, 0.65);
}

.prog-theme__name {
  display: block;
  font-family: 'Heavitas', sans-serif;
  font-size: 14px;
  color: #fff;
  font-weight: normal;
  line-height: 1.2;
}

.prog-theme__who {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.prog-theme__detail {
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.48);
  margin-top: 2px;
  line-height: 1.4;
}

.prog-theme__tbd {
  color: rgba(255, 209, 30, 0.5);
}

/* ── Panneaux ── */
.prog-panels {
  position: relative;
}

.prog-panel[hidden] {
  display: none;
}

/* Grille de blocs */
.prog-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.prog-blocks--solo {
  grid-template-columns: 1fr;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Bloc individuel */
.prog-block {
  border-radius: 0 8px 8px 0;
  padding: 28px 26px 24px;
  border: none;
  position: relative;
  overflow: hidden;
}

/* Journée : éditorial, barre ambrée large, chaleur */
.prog-block--jour {
  background: linear-gradient(
    135deg,
    rgba(255, 165, 40, 0.13) 0%,
    rgba(255, 209, 30, 0.03) 100%
  );
  border-left: 6px solid #ffd11e;
}

/* Soirée : nuit profonde, barre bleue, halo lunaire */
.prog-block--soir {
  background:
    radial-gradient(ellipse 70% 55% at 85% 18%, rgba(80, 100, 240, 0.22) 0%, transparent 65%),
    rgba(10, 16, 68, 0.65);
  border-left: 6px solid rgba(80, 110, 230, 0.45);
}

/* Solo soirée (Vendredi) : cinématique */
.prog-blocks--solo .prog-block--soir {
  padding: 32px 32px 28px;
  background:
    radial-gradient(ellipse 60% 70% at 22% 22%, rgba(80, 100, 240, 0.28) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 80% 78%, rgba(120, 50, 220, 0.13) 0%, transparent 55%),
    rgba(8, 12, 56, 0.88);
}

/* Grille asymétrique quand la journée a des moments forts */
.prog-blocks--jour-heavy {
  grid-template-columns: 3fr 2fr;
}

/* Étoiles discrètes dans les blocs soirée */
.prog-block--soir::after {
  content: '✦  ✦  ✦';
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-size: 6px;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
  line-height: 1;
}

/* En-tête de bloc */
.prog-block__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* Icône dans un cercle de couleur */
.prog-block__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1;
}
.prog-block__icon svg {
  display: block;
  overflow: visible;
}

.prog-block--jour .prog-block__icon {
  background: rgba(255, 165, 40, 0.18);
  border: 1.5px solid rgba(255, 165, 40, 0.38);
}

.prog-block--soir .prog-block__icon {
  background: rgba(80, 110, 230, 0.2);
  border: 1.5px solid rgba(90, 130, 240, 0.3);
}

.prog-block__label {
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
  flex: 1;
}

.prog-block--jour .prog-block__label {
  color: rgba(255, 190, 60, 0.9);
}

.prog-block__hours {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.42);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* Description */
.prog-block__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.68);
  margin: 0 0 14px;
  line-height: 1.55;
}

/* Moment fort standard */
.prog-highlight {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 13px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 8px;
}

.prog-highlight__icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.prog-highlight__copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.prog-highlight__title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.prog-highlight__sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* ★ Moment fort — traitement éditorial grand format */
.prog-highlight--star {
  background: transparent;
  border: none;
  border-left: 3px solid #ffd11e;
  border-radius: 0;
  padding: 18px 0 18px 20px;
  cursor: pointer;
  transition: padding-left 0.25s ease, background 0.25s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 4px;
}

.prog-highlight--star:hover {
  padding-left: 28px;
  background: rgba(255, 209, 30, 0.04);
}

/* Lueur ambrée sur le bord gauche au survol */
.prog-highlight--star::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #ffd11e;
  box-shadow: 0 0 14px rgba(255, 209, 30, 0.0);
  transition: box-shadow 0.3s ease;
}

.prog-highlight--star:hover::before {
  box-shadow: 0 0 18px rgba(255, 209, 30, 0.6);
}

.prog-highlight--star .prog-highlight__icon {
  font-size: 30px;
  align-self: center;
}

.prog-highlight--star .prog-highlight__title {
  font-family: 'Heavitas', sans-serif;
  font-size: clamp(22px, 3.5vw, 32px);
  color: #ffd11e;
  letter-spacing: 0.03em;
  line-height: 1.05;
}

.prog-highlight--star .prog-highlight__sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 3px;
  font-style: normal;
}

.prog-highlight--star .prog-highlight__copy::before {
  content: '★ moment fort';
  display: block;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 209, 30, 0.48);
  margin-bottom: 6px;
  font-family: 'Archivo', sans-serif;
}

.prog-block__aftershow {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.5;
}

/* Dans la grille jour-heavy (3fr 2fr), la colonne soirée est étroite —
   on réduit le plafond de la typo artiste pour que MATRONOME ne soit pas coupé */
.prog-blocks--jour-heavy .prog-block--soir .prog-lineup__artist {
  font-size: clamp(24px, 3.2vw, 36px);
}

/* Photo peek — image flottante au curseur */
.prog-peek {
  position: fixed;
  width: 240px;
  height: 300px;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.72), 0 0 0 1.5px rgba(255, 255, 255, 0.12);
  will-change: transform;
}

.prog-peek__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Photo inline mobile (injectée par JS dans .prog-lineup) ── */
.prog-lineup__mob-photo,
.prog-highlight__mob-photo {
  display: none;
}

@media (max-width: 768px) {
  .prog-lineup__mob-photo {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 12px;
    opacity: 0.88;
  }
  .prog-highlight__mob-photo {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 6px;
    margin-top: 10px;
    opacity: 0.82;
  }
}

/* ── Section récap vidéo ── */
.recap-section {
  background: #080e28;
  padding: clamp(72px, 9vw, 112px) 0;
  position: relative;
  overflow: hidden;
}

.recap-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 60%, rgba(255, 100, 30, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 15% 30%, rgba(74, 110, 230, 0.12) 0%, transparent 55%);
  pointer-events: none;
}

.recap-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.recap-section__hd {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 52px);
}

.recap-section__eyebrow {
  display: block;
  font-family: 'SuperBoom', sans-serif;
  font-size: clamp(12px, 1.6vw, 15px);
  color: rgba(255, 180, 60, 0.85);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.recap-section__title {
  font-family: 'Heavitas', sans-serif;
  font-size: clamp(42px, 8vw, 80px);
  line-height: 0.9;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}

.recap-section__sub {
  font-size: clamp(13px, 1.6vw, 15px);
  color: rgba(255, 255, 255, 0.45);
  font-family: 'Archivo', sans-serif;
}

.recap-video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.recap-video__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.recap-video:hover .recap-video__thumb {
  transform: scale(1.03);
  opacity: 0.8;
}

.recap-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 14, 40, 0.55) 0%,
    rgba(8, 14, 40, 0.1) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.recap-video__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2;
}

.recap-video__play-icon {
  width: clamp(64px, 8vw, 96px);
  height: clamp(64px, 8vw, 96px);
  border-radius: 50%;
  background: rgba(255, 209, 30, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 0 0 rgba(255, 209, 30, 0.5);
}

.recap-video:hover .recap-video__play-icon {
  transform: scale(1.12);
  background: #ffd11e;
  box-shadow: 0 0 0 16px rgba(255, 209, 30, 0.18), 0 0 0 32px rgba(255, 209, 30, 0.08);
}

.recap-video__play-icon svg {
  width: clamp(24px, 3vw, 36px);
  height: clamp(24px, 3vw, 36px);
  fill: #0d1b4a;
  margin-left: 4px; /* optique play icon centering */
}

.recap-video__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .recap-video {
    border-radius: 8px;
  }
}

/* Placeholder À VENIR — shimmer + pulse */
/* ── Lineup réel (tête d'affiche concert) ── */
.prog-lineup {
  color: #fff; /* force l'héritage blanc sur tous les enfants */
  padding: 16px 0 16px 20px;
  border-left: 3px solid rgba(255, 255, 255, 0.22);
  margin-top: 12px;
  position: relative;
}
.prog-lineup__label {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 6px;
}
.prog-lineup__artist {
  display: block;
  font-family: 'Heavitas', sans-serif;
  font-size: clamp(30px, 4.5vw, 46px);
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 0.94;
}
.prog-lineup__genre {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.46);
  margin-top: 6px;
  font-style: italic;
  letter-spacing: 0.02em;
}
.prog-lineup__local {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffd11e;
  background: rgba(255, 209, 30, 0.1);
  border: 1px solid rgba(255, 209, 30, 0.3);
  border-radius: 999px;
  padding: 4px 12px;
}

/* ── Prog bodega (grille soirs par carte) ── */
.bodega-prog {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.bodega-prog__label {
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 9px;
  color: #9a8a6a;
  margin: 0 0 8px;
}
.bodega-prog__row {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
}
.bodega-prog__row + .bodega-prog__row {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.bodega-prog__row--star {
  padding: 8px 0;
  background: rgba(47, 107, 44, 0.05);
  border-radius: 6px;
  padding-left: 6px;
  padding-right: 6px;
  margin: 2px -6px;
}
.bodega-prog__day {
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 700;
  font-size: 10px;
  color: #b0a080;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.bodega-prog__row--star .bodega-prog__day {
  color: #2f6b2c;
}
.bodega-prog__act {
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #4a3f28;
}
.bodega-prog__act--star {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #2f6b2c;
  line-height: 1.1;
}
.bodega-prog__artist-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bodega-prog__badge {
  display: inline-block;
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: #2f6b2c;
  border-radius: 999px;
  padding: 2px 8px;
}
.bodega-prog__secret {
  font-family: 'Archivo', sans-serif;
  font-size: 12.5px;
  font-style: italic;
  color: #9a8a6a;
  line-height: 1.5;
  margin: 0;
}
.bodega-prog__act--tbd {
  font-style: italic;
  color: #b0a080;
  font-weight: 400;
  font-size: 12px;
}

/* ── Bodega themes (thème déguisement du soir) ── */
.bodega-themes {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.bodega-themes__label {
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 9px;
  color: #9a8a6a;
  margin: 0 0 8px;
}
.bodega-themes__row {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
}
.bodega-themes__row + .bodega-themes__row {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.bodega-themes__day {
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 700;
  font-size: 10px;
  color: #b0a080;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.bodega-themes__name {
  font-family: 'Archivo', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: #4a3f28;
}
.bodega-themes__name--tbd {
  font-style: italic;
  color: #b0a080;
  font-weight: 400;
}

/* ── Bodega menu (À manger) ── */
.bodega-menu {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.bodega-menu__title {
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 9px;
  color: #9a8a6a;
  margin: 0 0 10px;
}
.bodega-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.bodega-menu__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  padding: 7px 0;
}
.bodega-menu__item + .bodega-menu__item {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.bodega-menu__dish {
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  color: #3a3420;
  line-height: 1.35;
  flex: 1;
}
.bodega-menu__price {
  font-family: 'Heavitas', sans-serif;
  font-size: 15px;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.2;
}
.bodega-menu__price-note {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-weight: 400;
  font-size: 10px;
  font-style: normal;
  text-align: right;
  color: rgba(58, 52, 32, 0.5);
  margin-top: 1px;
}
.bodega-menu--foot .bodega-menu__price { color: #2f6b2c; }
.bodega-menu--rugby .bodega-menu__price { color: #c4302b; }
.bodega-menu--ancien .bodega-menu__price { color: #b6800f; }

.bodega-menu__coming {
  background: #fdf5e0;
  border: 1px dashed rgba(182, 128, 15, 0.3);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 64px;
  justify-content: center;
}
.bodega-menu__coming-text {
  font-family: 'Heavitas', sans-serif;
  font-size: 14px;
  color: #b6800f;
  margin: 0;
  line-height: 1.2;
}
.bodega-menu__coming-sub {
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  color: rgba(182, 128, 15, 0.65);
  font-style: italic;
  margin: 0;
  line-height: 1.4;
}

/* CTA "Voir la carte complète" inside bodega cards */
.bodega-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 2px solid;
  transition: transform 0.2s ease, background 0.2s ease;
}
.bodega-card--foot .bodega-card__cta {
  color: #2f6b2c;
  border-color: #2f6b2c;
  background: transparent;
}
.bodega-card--rugby .bodega-card__cta {
  color: #c4302b;
  border-color: #c4302b;
  background: transparent;
}
.bodega-card--foot .bodega-card__cta:hover { background: #e7f1e3; }
.bodega-card--rugby .bodega-card__cta:hover { background: #fbe6e4; }

.prog-coming {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px dashed rgba(255, 209, 30, 0.32);
  background: rgba(255, 209, 30, 0.04);
  margin-top: 4px;
  position: relative;
  overflow: hidden;
  animation: prog-coming-pulse 2.5s ease-in-out infinite;
}

/* Scan shimmer */
.prog-coming::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 20%,
    rgba(255, 209, 30, 0.07) 50%,
    transparent 80%
  );
  background-size: 200% 100%;
  animation: prog-shimmer 2.8s linear infinite;
  pointer-events: none;
}

@keyframes prog-shimmer {
  0%   { background-position:  200% center; }
  100% { background-position: -200% center; }
}

@keyframes prog-coming-pulse {
  0%, 100% { border-color: rgba(255, 209, 30, 0.28); }
  50%       { border-color: rgba(255, 209, 30, 0.65); box-shadow: 0 0 14px rgba(255, 209, 30, 0.09) inset; }
}

.prog-coming__duck {
  font-size: 26px;
  line-height: 1;
  flex-shrink: 0;
  display: inline-block;
  position: relative;
  z-index: 1;
  animation: prog-waddle 2.8s ease-in-out infinite;
}

@keyframes prog-waddle {
  0%,  100% { transform: rotate(-7deg) translateY(0px); }
  25%        { transform: rotate( 7deg) translateY(-3px); }
  50%        { transform: rotate(-4deg) translateY(0px); }
  75%        { transform: rotate( 5deg) translateY(-2px); }
}

.prog-coming__copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  position: relative;
  z-index: 1;
}

.prog-coming__title {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #ffd11e;
}

.prog-coming__sub {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* Prix — style ticket de caisse festif */
.prog-prix {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 18px 24px 18px 28px;
  border-radius: 14px;
  background: rgba(255, 209, 30, 0.07);
  border: 1px solid rgba(255, 209, 30, 0.25);
  position: relative;
  overflow: hidden;
}

.prog-prix__main {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
}

.prog-prix__detail {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.prog-prix__sub {
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
}

.prog-prix__eur--free {
  font-size: 26px;
  min-width: unset;
}

.prog-prix__kids {
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  color: rgba(255, 209, 30, 0.65);
  border-top: 1px solid rgba(255, 209, 30, 0.14);
  padding-top: 8px;
  width: 100%;
  margin: 0;
}

/* Rive gauche colorée façon ticket */
.prog-prix::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(to bottom, #ffe14a, #ff9a1a, #ffd11e);
  border-radius: 14px 0 0 14px;
}

.prog-prix__eur {
  font-family: 'Heavitas', sans-serif;
  font-size: 34px;
  color: #ffd11e;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

/* Tirets de séparation façon ticket perforé */
.prog-prix__sep {
  flex-shrink: 0;
  width: 1px;
  align-self: stretch;
  margin: 0 16px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 209, 30, 0.3) 0,
    rgba(255, 209, 30, 0.3) 5px,
    transparent 5px,
    transparent 10px
  );
}

.prog-prix__txt {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .intro__grid,
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .programme__grid {
    grid-template-columns: 1fr;
  }

  .infos__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ambiance {
    background-attachment: scroll;
  }
}

@media (max-width: 1080px) and (min-width: 769px) {
  .nav__links {
    gap: 16px;
  }
  .nav__link {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .nav__toggle {
    display: block;
  }

  .nav__links {
    display: none;
  }

  .nav {
    position: relative;
  }

  .hero__duck--guitar,
  .hero__duck--saxo {
    width: 120px;
    opacity: 0.7;
  }

  .hero__duck--micro {
    width: 100px;
  }

  .galerie__nav--prev { left: 4px; }
  .galerie__nav--next { right: 4px; }

  .infos__grid {
    grid-template-columns: 1fr;
  }

  /* ── Logo des portes mobile ──
     W = clamp(340px, 90vw, 480px)
     Split au centre VISUEL de l'artwork (1329/2481 = 53.57% du PNG, pas 50%)
     → offset = W × 0.5357 = clamp(182px, 48vw, 257px)
     Cela aligne la ligne de fente (50vw) exactement sur le milieu visuel du logo. */
  .hero-pin__door-logo {
    width: clamp(340px, 90vw, 480px);
    top: 50%;
  }
  .hero-pin__door--left  .hero-pin__door-logo { left: calc(50vw - clamp(182px, 48vw, 257px)); }
  .hero-pin__door--right .hero-pin__door-logo { left: calc(-1 * clamp(182px, 48vw, 257px)); }

  /* ── Hero mobile : réduire le contenu pour tenir dans 100svh ── */
  .hero-pin__content {
    padding: clamp(108px, 14vh, 128px) 20px clamp(72px, 9vh, 88px);
  }
  .hero__tagline {
    font-size: 26px;
  }
  .hero__logo {
    width: min(480px, 72vw);
    margin: 2px auto 6px;
  }
  .hero__dates {
    margin: 10px 0 2px;
  }
  .hero__location {
    margin-top: 0;
  }
  .hero__countdown {
    margin: 14px 0 4px;
    gap: 8px;
  }
  .countdown__box {
    padding: 8px 4px;
    min-width: 68px;
  }
  .countdown__value {
    font-size: 28px;
  }
  .hero__actions {
    margin-top: 14px;
    gap: 10px;
  }

  /* Programme — mobile */
  .prog-tabs {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding-top: 38px;
  }

  .prog-tab {
    padding: 14px 6px 12px;
    border-radius: 14px;
    gap: 2px;
  }

  .prog-tab__day  { font-size: 9px; }
  .prog-tab__mth  { font-size: 9px; }

  .prog-tab__badge {
    font-size: 13px;
    padding: 3px 9px;
    margin-top: 4px;
  }

  .prog-blocks {
    grid-template-columns: 1fr;
  }

  .prog-block {
    padding: 16px 16px 14px;
  }

  .prog-prix {
    padding: 14px 20px 14px 22px;
    gap: 8px;
  }

  .prog-prix__eur {
    font-size: 28px;
    min-width: 48px;
  }

  .prog-prix__eur--free {
    font-size: 22px;
    min-width: unset;
  }

  .prog-prix__sep {
    margin: 0 12px;
  }

  .prog-prix__sub {
    font-size: 11px;
  }

  .prog-prix__kids {
    font-size: 11px;
  }

  .prog-tab__badge--free {
    font-size: 11px;
  }

  /* Masquer les notes flottantes sur mobile (perf) */
  .prog-deco-bg { display: none; }
}

/* ═══════════════════════════════════════════
   CASHLESS / BRACELET
═══════════════════════════════════════════ */

.cashless .section__container { text-align: center; }

/* Header */
.cashless__hd { margin-bottom: 64px; }

.cashless__bracelet {
  display: inline-block;
  margin-bottom: 36px;
  animation: cashless-float 3.2s ease-in-out infinite;
}

@keyframes cashless-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-10px) rotate(-2deg); }
}

.cashless__band {
  position: relative;
  width: 224px;
  height: 54px;
  border-radius: 27px;
  background:
    linear-gradient(transparent 9px, #ffd11e 9px, #ffd11e 13px, transparent 13px),
    linear-gradient(transparent 41px, #ffd11e 41px, #ffd11e 45px, transparent 45px),
    linear-gradient(to bottom, #1e3b8a 0%, #0f1f55 50%, #1e3b8a 100%);
  box-shadow:
    0 10px 36px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(0, 0, 0, 0.28);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 10px;
}

.cashless__band-text {
  font-family: 'Heavitas', sans-serif;
  font-size: 8.5px;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  flex: 1;
  text-align: left;
}

.cashless__chip {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #0a1540;
  border: 2px solid rgba(255, 209, 30, 0.9);
  flex-shrink: 0;
  animation: cashless-nfc 2.6s ease-out infinite;
}

@keyframes cashless-nfc {
  0%   { box-shadow: 0 0 0 0 rgba(255, 209, 30, 0.75); }
  60%  { box-shadow: 0 0 0 12px rgba(255, 209, 30, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 209, 30, 0); }
}

.section__eyebrow--yellow { color: #ffd11e; }
.section__title--white    { color: #fff; }

.cashless__intro {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255, 255, 255, 0.68);
  max-width: 560px;
  margin: 18px auto 0;
  line-height: 1.65;
}

/* Steps */
.cashless__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0 12px;
  align-items: start;
  margin: 0 0 56px;
  text-align: left;
}

.cashless__step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 24px 22px;
}

.cashless__step-num {
  font-family: 'Heavitas', sans-serif;
  font-size: clamp(38px, 5vw, 54px);
  color: rgba(255, 209, 30, 0.16);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.cashless__step-title {
  font-family: 'Heavitas', sans-serif;
  font-size: clamp(15px, 1.8vw, 19px);
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}

.cashless__step-desc {
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.55;
  margin: 0;
}

.cashless__tbd {
  display: block;
  margin-top: 12px;
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-style: italic;
  color: rgba(255, 209, 30, 0.7);
  background: rgba(255, 209, 30, 0.07);
  border: 1px solid rgba(255, 209, 30, 0.18);
  border-radius: 6px;
  padding: 7px 10px;
  line-height: 1.45;
}
.cashless__tbd strong { color: rgba(255, 209, 30, 0.95); font-style: normal; }

.cashless__step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 48px;
  color: rgba(255, 209, 30, 0.3);
}

/* Benefits */
.cashless__benefits {
  display: flex;
  gap: 16px;
  margin-bottom: 52px;
  justify-content: center;
}

.cashless__benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 18px 22px;
  flex: 1;
  max-width: 280px;
  text-align: left;
}

.cashless__benefit-icon {
  width: 26px;
  height: 26px;
  color: #ffd11e;
  flex-shrink: 0;
}

.cashless__benefit-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cashless__benefit-title {
  font-family: 'Heavitas', sans-serif;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.04em;
  font-weight: normal;
}

.cashless__benefit-desc {
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.48);
}

/* Pending notice */
.cashless__pending {
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 28px 32px;
  text-align: left;
  background: rgba(255, 255, 255, 0.025);
  max-width: 680px;
  margin: 0 auto;
}

.cashless__pending-label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: rgba(255, 209, 30, 0.65);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cashless__pending-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.cashless__pending-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cashless__pending-item strong {
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}

.cashless__pending-item span {
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
  font-style: italic;
  line-height: 1.5;
}

.cashless__pending-follow {
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0;
}
.cashless__pending-follow strong { color: rgba(255, 255, 255, 0.8); }

/* Mobile */
@media (max-width: 768px) {
  .cashless__hd { margin-bottom: 44px; }

  .cashless__steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cashless__step-arrow {
    padding: 6px 0;
    margin: 0 auto;
    transform: rotate(90deg);
    width: 28px;
  }

  .cashless__benefits {
    flex-direction: column;
  }

  .cashless__benefit {
    max-width: none;
  }

  .cashless__pending {
    padding: 20px;
  }
}

/* ── CITATION CANARD ─────────────────────────────────────── */

.citation-canard {
  background: #0c1840;
  padding: 56px 24px 64px;
  text-align: center;
}

.citation-canard__inner {
  max-width: 740px;
  margin: 0 auto;
  position: relative;
}

.citation-canard__inner::before,
.citation-canard__inner::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: #ffd11e;
  margin: 0 auto 28px;
}

.citation-canard__inner::after {
  margin: 28px auto 0;
}

.citation-canard__block {
  margin: 0;
  padding: 0;
}

.citation-canard__guillemet {
  font-family: 'Heavitas', sans-serif;
  font-size: 1.2em;
  color: #ffd11e;
  line-height: 1;
  vertical-align: middle;
}

.citation-canard__text {
  font-family: 'Archivo', sans-serif;
  font-style: italic;
  font-size: clamp(18px, 2.6vw, 26px);
  line-height: 1.55;
  color: #f4eedb;
  margin: 0;
  letter-spacing: 0.01em;
}

@media (max-width: 600px) {
  .citation-canard {
    padding: 44px 20px 52px;
  }
}

/* ── ILS NOUS SOUTIENNENT ────────────────────────────────── */

.partenaires-section {
  padding: 80px 24px 96px;
}

.partenaires__hd {
  text-align: center;
  margin-bottom: 48px;
}

.partenaires__title {
  font-family: 'Heavitas', sans-serif;
  color: #18286e;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 0.96;
  margin: 0;
}

.partenaires__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

/* Slot vide — sera remplacé par .partner-logo */
.partner-placeholder {
  width: 160px;
  height: 80px;
  background: rgba(24, 40, 110, 0.06);
  border: 2px dashed rgba(24, 40, 110, 0.2);
  border-radius: 8px;
  flex-shrink: 0;
}

/* Logo réel une fois ajouté */
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 80px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: opacity 0.25s ease;
  flex-shrink: 0;
}

.partner-logo:hover {
  opacity: 0.7;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  transition: filter 0.3s ease;
}

.partner-logo:hover img {
  filter: grayscale(0);
}

@media (max-width: 600px) {
  .partenaires-section {
    padding: 60px 16px 72px;
  }

  .partner-placeholder,
  .partner-logo {
    width: 130px;
    height: 65px;
  }
}

/* ── PRÉVENTE / PASS WEEK-END ─────────────────────────────── */

.prevente-section {
  background: #16265f;
  padding: 80px 24px 96px;
}

.prevente__eyebrow {
  color: #ffd11e;
  font-size: 22px;
  margin: 0 0 28px;
  text-align: center;
}

.prevente-card {
  display: grid;
  grid-template-columns: minmax(190px, 38%) 28px 1fr;
  border-radius: 14px;
  overflow: hidden;
  max-width: 880px;
  margin: 0 auto;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.52);
}

/* Stub gauche — jaune */
.prevente-card__stub {
  background: #ffd11e;
  padding: 48px 28px 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.prevente-card__stub-label {
  font-family: 'Heavitas', sans-serif;
  font-size: clamp(20px, 2.6vw, 28px);
  color: #18286e;
  line-height: 1.08;
  margin: 0;
}

.prevente-card__stub-price {
  font-family: 'Heavitas', sans-serif;
  font-size: clamp(82px, 10.5vw, 116px);
  color: #18286e;
  line-height: 0.86;
  margin: 0;
  letter-spacing: -0.02em;
}

.prevente-card__stub-currency {
  font-size: 0.44em;
  vertical-align: super;
  line-height: 1;
  letter-spacing: 0;
}

.prevente-card__stub-nights {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #18286e;
  opacity: 0.65;
  margin: 4px 0 0;
}

/* Perforation */
.prevente-card__tear {
  background:
    radial-gradient(circle at center, #16265f 10px, transparent 11px)
    0 0 / 28px 28px repeat-y,
    linear-gradient(to right, #ffd11e 50%, #f4eedb 50%);
}

/* Détail droit — crème */
.prevente-card__detail {
  background: #f4eedb;
  padding: 44px 44px 44px 42px;
  display: flex;
  align-items: center;
}

.prevente-card__detail-inner {
  width: 100%;
}

.prevente-card__where-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #18286e;
  opacity: 0.55;
  margin: 0 0 4px;
}

.prevente-card__where-name {
  font-family: 'Heavitas', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  color: #18286e;
  line-height: 1.05;
  margin: 0 0 6px;
}

.prevente-card__where-sub {
  font-size: 13px;
  color: #18286e;
  opacity: 0.55;
  margin: 0 0 24px;
  font-style: italic;
}

.prevente-card__bonplan {
  background: #fff;
  border: 1.5px solid rgba(24, 40, 110, 0.18);
  border-radius: 8px;
  padding: 14px 18px 16px;
}

.prevente-card__bonplan-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: #18286e;
  border-radius: 4px;
  padding: 2px 7px;
  margin-bottom: 11px;
}

.prevente-card__bonplan-calc {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
}

.prevente-card__bonplan-old {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 13px;
  color: #18286e;
  opacity: 0.4;
  text-decoration: line-through;
}

.prevente-card__bonplan-new {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #18286e;
}

.prevente-card__bonplan-new strong {
  font-size: 16px;
}

.prevente-card__bonplan-saving {
  font-size: 12px;
  color: #18286e;
  opacity: 0.6;
  margin: 0;
  font-style: italic;
  border-top: 1px solid rgba(24, 40, 110, 0.1);
  padding-top: 10px;
}

@media (max-width: 680px) {
  .prevente-section {
    padding: 60px 16px 80px;
  }

  .prevente-card {
    grid-template-columns: 1fr;
  }

  .prevente-card__stub {
    padding: 36px 28px 40px;
    align-items: center;
    text-align: center;
  }

  .prevente-card__tear {
    height: 28px;
    background:
      radial-gradient(circle at center, #16265f 10px, transparent 11px)
      0 0 / 28px 28px repeat-x,
      linear-gradient(to bottom, #ffd11e 50%, #f4eedb 50%);
  }

  .prevente-card__detail {
    padding: 32px 24px 36px;
  }

  .prevente-card__where-name {
    font-size: 28px;
  }
}

/* ─────────────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
