/* ==========================================================================
   70 ans Voyages Vandivinit — feuille de style
   Direction : affiche de voyage. Papier crème, encre marine, impression à deux
   passages (rouge + bleu Vandivinit légèrement décalés), ligne de car en timeline.
   ========================================================================== */

:root {
  --rouge: #ee2a39;
  --rouge-vif: #f44653;
  --rouge-sombre: #c21e2b;
  --bleu: #1035bb;
  --bleu-nuit: #042396;
  --encre: #0d1540;
  --encre-2: #2b3468;
  --papier: #f3ecdf;
  --creme: #fbf8f1;
  --sable: #e4d9c3;
  --or: #e2b53c;
  --muted: #5d648a;
  --ligne: rgba(13, 21, 64, 0.16);
  --ombre: 8px 8px 0 var(--encre);
  --ombre-rouge: 8px 8px 0 var(--rouge);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --fd: "Fraunces", "Iowan Old Style", Georgia, serif;
  --fb: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --largeur: 1180px;
  --gout: clamp(18px, 4vw, 40px);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html[data-i18n-pending] body { opacity: 0; }
body {
  margin: 0;
  background: var(--papier);
  color: var(--encre);
  font: 400 1rem/1.6 var(--fb);
  overflow-x: hidden;
  position: relative;
}
/* grain papier */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.07;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
[hidden] { display: none !important; }
img, svg { max-width: 100%; }
h1, h2, h3 {
  font-family: var(--fd);
  font-weight: 600;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.01em;
}
p { margin: 0; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--bleu); outline-offset: 3px; border-radius: 4px; }

.sur {
  font-family: var(--fb);
  font-stretch: 75%;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--rouge);
  margin: 0 0 14px;
}
.muted { color: var(--muted); }
.lien {
  color: var(--bleu);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
.lien:hover { color: var(--rouge); }

.skip {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 200;
  background: var(--encre);
  color: var(--creme);
  padding: 10px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
}
.skip:focus { top: 12px; }

/* ---------- boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font: 700 0.95rem/1 var(--fb);
  text-decoration: none;
  border: 2px solid var(--encre);
  color: var(--encre);
  background: var(--creme);
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--encre);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--encre); }
.btn:active { transform: translate(2px, 2px); box-shadow: 0 0 0 var(--encre); }
.btn-rouge { background: var(--rouge); color: #fff; }
.btn-rouge:hover { background: var(--rouge-vif); }
.btn-contour { background: transparent; }
.btn-sm { padding: 10px 16px; font-size: 0.85rem; box-shadow: 3px 3px 0 var(--encre); }
.btn-inactif { opacity: 0.55; cursor: not-allowed; box-shadow: none; }
.btn-inactif:hover { transform: none; box-shadow: none; background: var(--rouge); }

/* ---------- en-tête ---------- */
.entete {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px var(--gout);
  background: rgba(243, 236, 223, 0.84);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1.5px solid var(--encre);
  transition: padding 0.3s var(--ease);
}
.entete.compact { padding-top: 9px; padding-bottom: 9px; }
.marque { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.marque-logo {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--encre);
  color: var(--creme);
  font: italic 800 1.2rem/1 var(--fd);
  box-shadow: 3px 3px 0 var(--rouge);
  flex: none;
}
.marque-txt { display: flex; flex-direction: column; font-weight: 700; line-height: 1.15; }
.marque-txt small {
  font-stretch: 80%;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav { display: flex; align-items: center; gap: 24px; }
.nav > a { text-decoration: none; color: var(--encre); font-weight: 600; font-size: 0.95rem; position: relative; }
.nav > a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--rouge);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav > a:hover::after { transform: scaleX(1); }
.lang-switch {
  display: flex;
  gap: 2px;
  padding: 3px;
  border: 1.5px solid var(--encre);
  border-radius: 999px;
  background: var(--creme);
}
.lang-switch button {
  border: 0;
  background: transparent;
  padding: 6px 11px;
  border-radius: 999px;
  font: 700 0.74rem/1 var(--fb);
  letter-spacing: 0.08em;
  color: var(--muted);
  cursor: pointer;
  transition: 0.2s;
}
.lang-switch button:hover { color: var(--encre); }
.lang-switch button[aria-pressed="true"] { background: var(--encre); color: var(--creme); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  max-width: var(--largeur);
  margin: 0 auto;
  padding: clamp(40px, 7vw, 96px) var(--gout) 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 var(--gout);
  z-index: -1;
  pointer-events: none;
  background: repeating-linear-gradient(90deg, transparent 0 calc(100% / 12 - 1px), var(--ligne) calc(100% / 12 - 1px) calc(100% / 12));
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 85%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 85%);
}
.hero-int {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.5rem, 5.6vw, 4.7rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  text-wrap: balance;
}
.hero-p {
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  max-width: 56ch;
  color: var(--encre-2);
  margin: 22px 0 30px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-prochain {
  margin: 28px 0 0;
  padding: 14px 18px;
  border-left: 3px solid var(--rouge);
  background: var(--creme);
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  align-items: baseline;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.hero-prochain:hover { transform: translateX(4px); box-shadow: -3px 0 0 var(--rouge); }
.hero-prochain-l {
  font-stretch: 78%;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--rouge);
  flex-basis: 100%;
}
.hero-prochain b { font-family: var(--fd); font-weight: 600; font-size: 1.15rem; }

.hero-art {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.anneau {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: tourne 48s linear infinite;
}
.anneau text {
  font-family: var(--fb);
  font-stretch: 80%;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.2em;
  fill: var(--encre);
}
.n70 {
  position: relative;
  display: grid;
  font: italic 900 clamp(150px, 22vw, 250px)/0.85 var(--fd);
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.06em;
  animation: flotte 7s ease-in-out infinite;
}
.n70 span { grid-area: 1 / 1; }
.n70-r { color: var(--rouge); transform: translate(-7px, -6px); mix-blend-mode: multiply; }
.n70-b { color: var(--bleu); transform: translate(7px, 6px); mix-blend-mode: multiply; }
.n70-i { color: var(--encre); }

/* billet de statistiques */
.ticket {
  --souche: 48px;
  position: relative;
  margin: clamp(40px, 6vw, 76px) 0 0;
  display: grid;
  grid-template-columns: var(--souche) repeat(4, 1fr);
  border: 2px solid var(--encre);
  background: var(--creme);
  box-shadow: var(--ombre);
}
.ticket::before, .ticket::after {
  content: "";
  position: absolute;
  left: calc(var(--souche) - 9px);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--papier);
  border: 2px solid var(--encre);
  z-index: 1;
}
.ticket::before { top: -11px; }
.ticket::after { bottom: -11px; }
.ticket-souche {
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 0;
  background: var(--rouge);
  color: #fff;
  border-right: 2px dashed var(--encre);
  font-stretch: 78%;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  white-space: nowrap;
}
.stat { padding: 20px 22px; display: flex; flex-direction: column; border-right: 1.5px solid var(--ligne); }
.stat:last-child { border-right: 0; }
.stat b {
  font: 600 clamp(1.9rem, 3vw, 2.8rem)/1 var(--fd);
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.03em;
}
.stat span {
  font-stretch: 80%;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 6px;
  color: var(--rouge);
}
.stat small { color: var(--muted); font-size: 0.82rem; margin-top: 2px; }
.hero-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  padding-left: 22px;
  position: relative;
}
.hero-note::before {
  content: "i";
  position: absolute;
  left: 0; top: 3px;
  width: 15px; height: 15px;
  border-radius: 50%;
  border: 1.5px solid var(--muted);
  font: italic 700 0.68rem/13px var(--fd);
  text-align: center;
}

/* apparition à l'ouverture */
.reveal-h {
  opacity: 0;
  transform: translateY(22px);
  animation: monte 0.9s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes monte { to { opacity: 1; transform: none; } }
@keyframes tourne { to { transform: rotate(360deg); } }
@keyframes flotte { 50% { transform: translateY(-9px); } }

/* ---------- sections ---------- */
.section-tete { max-width: 720px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-tete h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); font-weight: 500; letter-spacing: -0.02em; text-wrap: balance; }
.intro { color: var(--encre-2); font-size: 1.05rem; margin: 16px 0 0; max-width: 58ch; }

/* ---------- timeline ---------- */
.timeline {
  max-width: var(--largeur);
  margin: clamp(64px, 10vw, 130px) auto 0;
  padding: 0 var(--gout);
}
.route-wrap { position: relative; padding: 6px 0 6px; }
.route-wrap::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  margin-left: -1.5px;
  background: repeating-linear-gradient(to bottom, var(--encre) 0 16px, transparent 16px 28px);
}
.terminus {
  position: relative;
  z-index: 2;
  width: max-content;
  margin: 0 auto;
  text-align: center;
  background: var(--encre);
  color: var(--creme);
  padding: 10px 20px;
  border-radius: 999px;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.terminus span {
  font-stretch: 78%;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.64rem;
  font-weight: 700;
  color: var(--or);
}
.terminus b { font-family: var(--fd); font-weight: 600; font-size: 1rem; }
.route {
  list-style: none;
  margin: 0;
  padding: clamp(28px, 4vw, 48px) 0;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 56px);
}
.route-vide { text-align: center; color: var(--muted); padding: 40px 0; }
.arret {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 160px 1fr;
  align-items: start;
}
.gare {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  margin-top: 18px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 3px solid var(--encre);
  background: var(--creme);
  display: grid;
  place-content: center;
  text-align: center;
  line-height: 1;
  box-shadow: 0 0 0 8px var(--papier);
  z-index: 2;
}
.gare-mois {
  font-stretch: 78%;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.66rem;
  color: var(--rouge);
}
.gare-jour { font: 700 1.5rem/1 var(--fd); margin-top: 3px; }
.arret.gauche .carte { grid-column: 1; grid-row: 1; }
.arret.droite .carte { grid-column: 3; grid-row: 1; }
/* connecteur gare → carte */
.arret::after {
  content: "";
  position: absolute;
  top: 54.5px;
  height: 3px;
  width: 42px;
  background: var(--encre);
  z-index: 1;
}
.arret.gauche::after { right: calc(50% + 38px); }
.arret.droite::after { left: calc(50% + 38px); }

.arret.est-phare .gare { background: var(--rouge); }
.arret.est-phare .gare-mois, .arret.est-phare .gare-jour { color: #fff; }
.arret.est-passe .gare { background: var(--papier); border-color: var(--muted); }
.arret.est-passe .gare-mois { color: var(--muted); }
.arret.est-passe .gare-jour { color: var(--muted); }
.arret.prochain .gare { animation: pulse 2.4s ease-out infinite; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 8px var(--papier), 0 0 0 8px rgba(238, 42, 57, 0.65); }
  100% { box-shadow: 0 0 0 8px var(--papier), 0 0 0 28px rgba(238, 42, 57, 0); }
}

.arret.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.arret.reveal.vu { opacity: 1; transform: none; }

/* carte événement */
.carte {
  position: relative;
  background: var(--creme);
  border: 2px solid var(--encre);
  padding: clamp(20px, 2.4vw, 30px);
  box-shadow: var(--ombre);
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), filter 0.35s, opacity 0.35s;
}
.carte:hover { transform: translate(-3px, -3px); box-shadow: 11px 11px 0 var(--encre); }
.carte-tete { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; margin-bottom: 12px; }
.tag-mois {
  font-stretch: 78%;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  background: var(--encre);
  color: var(--creme);
  padding: 6px 10px;
}
.carte-tete time { font-size: 0.9rem; color: var(--encre-2); }
.pills { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.pills:empty, .dlg-sur:empty { display: none; }
.pill {
  font-stretch: 82%;
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1.5px solid var(--encre);
  line-height: 1;
}
.pill-rouge { background: var(--rouge); border-color: var(--rouge); color: #fff; }
.pill-or { background: var(--or); border-color: var(--or); color: var(--encre); }
.pill-trait { border-style: dashed; color: var(--muted); border-color: var(--muted); }
.carte-titre {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 60;
  text-wrap: balance;
}
.carte-lieu { display: flex; align-items: center; gap: 8px; margin: 12px 0 0; color: var(--encre-2); font-size: 0.92rem; }
.carte-lieu svg { flex: none; width: 16px; height: 16px; color: var(--rouge); }
.carte-accroche { margin: 12px 0 0; color: var(--encre-2); }
.carte-pied {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
}
.btn-lien {
  border: 0;
  background: none;
  padding: 0 0 4px;
  font: 700 0.95rem var(--fb);
  color: var(--encre);
  cursor: pointer;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  position: relative;
}
.btn-lien::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--rouge);
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.carte:hover .btn-lien::after, .btn-lien:focus-visible::after { transform: scaleX(1); }
.btn-lien span { transition: transform 0.3s var(--ease); }
.carte:hover .btn-lien span { transform: translateX(4px); }

.carte.phare { background: var(--encre); color: var(--creme); box-shadow: var(--ombre-rouge); }
.carte.phare:hover { box-shadow: 11px 11px 0 var(--rouge); }
.carte.phare .tag-mois { background: var(--rouge); color: #fff; }
.carte.phare .carte-tete time, .carte.phare .carte-lieu, .carte.phare .carte-accroche { color: rgba(251, 248, 241, 0.78); }
.carte.phare .btn-lien { color: var(--creme); }
.carte.phare .pill { border-color: rgba(251, 248, 241, 0.5); }
.carte.phare .pill-trait { color: rgba(251, 248, 241, 0.7); }
.carte.phare .btn-rouge { border-color: var(--creme); box-shadow: 3px 3px 0 var(--creme); }
.carte.phare .btn-rouge:hover { box-shadow: 5px 5px 0 var(--creme); }

.carte.passe { filter: grayscale(0.7); opacity: 0.78; }
.carte.passe:hover { filter: none; opacity: 1; }
.tampon {
  position: absolute;
  top: 14px;
  right: 14px;
  transform: rotate(-9deg);
  border: 2.5px solid var(--rouge);
  color: var(--rouge);
  padding: 4px 10px;
  border-radius: 4px;
  font-stretch: 78%;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  opacity: 0.9;
  pointer-events: none;
}

@media (max-width: 900px) {
  .route-wrap::before { left: 30px; }
  .terminus { margin-left: 0; }
  .arret { grid-template-columns: 60px 1fr; gap: 16px; }
  .gare { grid-column: 1; width: 60px; height: 60px; margin-top: 12px; justify-self: start; }
  .gare-jour { font-size: 1.2rem; }
  .gare-mois { font-size: 0.58rem; }
  .arret.gauche .carte, .arret.droite .carte { grid-column: 2; }
  .arret::after { display: none; }
}
@media (max-width: 640px) {
  .route-wrap::before { left: 21px; }
  .arret { grid-template-columns: 44px 1fr; gap: 12px; }
  .gare { width: 44px; height: 44px; margin-top: 14px; border-width: 2.5px; box-shadow: 0 0 0 5px var(--papier); }
  .gare-mois { font-size: 0.5rem; letter-spacing: 0.06em; }
  .gare-jour { font-size: 0.95rem; margin-top: 2px; }
  .arret.prochain .gare { animation-name: pulse-sm; }
  .carte { padding: 18px; box-shadow: 5px 5px 0 var(--encre); }
  .carte.phare { box-shadow: 5px 5px 0 var(--rouge); }
  .carte-titre { font-size: 1.4rem; }
  .tampon { top: 10px; right: 10px; }
}
@keyframes pulse-sm {
  0%   { box-shadow: 0 0 0 5px var(--papier), 0 0 0 5px rgba(238, 42, 57, 0.65); }
  100% { box-shadow: 0 0 0 5px var(--papier), 0 0 0 20px rgba(238, 42, 57, 0); }
}

/* ---------- infos ---------- */
.infos {
  max-width: var(--largeur);
  margin: clamp(64px, 10vw, 130px) auto 0;
  padding: 0 var(--gout);
}
.infos-grille {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 2px solid var(--encre);
  background: var(--creme);
  box-shadow: var(--ombre);
}
.info { padding: 28px 26px 30px; border-right: 1.5px solid var(--ligne); }
.info:last-child { border-right: 0; }
.info-n { font: italic 600 2.6rem/1 var(--fd); color: var(--rouge); display: block; margin-bottom: 14px; }
.info h3 { font-size: 1.35rem; font-weight: 600; margin-bottom: 10px; }
.info p { color: var(--encre-2); font-size: 0.95rem; }
.info .lien { display: inline-block; margin-top: 10px; font-weight: 600; word-break: break-all; }
.info.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.info.reveal.vu { opacity: 1; transform: none; }
.info:nth-child(2) { transition-delay: 0.08s; }
.info:nth-child(3) { transition-delay: 0.16s; }
.info:nth-child(4) { transition-delay: 0.24s; }
@media (max-width: 960px) {
  .infos-grille { grid-template-columns: 1fr 1fr; }
  .info:nth-child(2) { border-right: 0; }
  .info:nth-child(-n + 2) { border-bottom: 1.5px solid var(--ligne); }
}
@media (max-width: 560px) {
  .infos-grille { grid-template-columns: 1fr; }
  .info { border-right: 0; border-bottom: 1.5px solid var(--ligne); }
  .info:last-child { border-bottom: 0; }
}

/* ---------- pied de page ---------- */
.pied {
  position: relative;
  margin-top: clamp(80px, 12vw, 150px);
  background: var(--encre);
  color: var(--creme);
  padding: clamp(44px, 6vw, 72px) var(--gout) 36px;
}
.pied::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--rouge);
}
.pied-int {
  max-width: var(--largeur);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 40px;
}
.pied-marque { font-size: 1.15rem; display: flex; flex-wrap: wrap; gap: 4px 14px; align-items: baseline; }
.pied-marque em { font-family: var(--fd); font-style: italic; font-weight: 400; color: rgba(251, 248, 241, 0.72); }
.pied-adresse, .pied-copy { color: rgba(251, 248, 241, 0.66); font-size: 0.9rem; grid-column: 1; }
.pied-haut {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: start;
  color: var(--creme);
  text-decoration: none;
  border: 1.5px solid rgba(251, 248, 241, 0.4);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: 0.2s;
}
.pied-haut:hover { background: var(--creme); color: var(--encre); }
@media (max-width: 640px) {
  .pied-int { grid-template-columns: 1fr; }
  .pied-haut { grid-column: 1; grid-row: auto; width: max-content; margin-top: 10px; }
}

/* ---------- fiche événement : panneau latéral ---------- */
.dlg {
  position: fixed;
  inset: 0 0 0 auto;
  margin: 0;
  width: min(560px, 100%);
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  padding: 0;
  border: 0;
  border-left: 2px solid var(--encre);
  border-radius: 0;
  background: var(--creme);
  color: var(--encre);
  box-shadow: -18px 0 48px rgba(13, 21, 64, 0.22);
  overflow: hidden;
}
.dlg::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--bleu);
  z-index: 3;
}
.dlg.phare::before { background: var(--rouge); }
.dlg[open] { display: flex; flex-direction: column; animation: dlg-in 0.42s var(--ease); }
.dlg::backdrop { background: rgba(13, 21, 64, 0.34); }
.dlg[open]::backdrop { animation: fond-in 0.42s ease; }
.dlg.sort { animation: dlg-out 0.26s var(--ease) forwards; }
.dlg.sort::backdrop { animation: fond-out 0.26s ease forwards; }
@keyframes dlg-in  { from { transform: translateX(48px); opacity: 0; } }
@keyframes dlg-out { to   { transform: translateX(60px); opacity: 0; } }
@keyframes fond-in  { from { opacity: 0; } }
@keyframes fond-out { to   { opacity: 0; } }
.dlg-int { display: contents; }

.dlg-tete {
  flex: none;
  padding: 22px 30px 20px;
  border-bottom: 1.5px solid var(--ligne);
  background: var(--creme);
}
.dlg-barre {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.dlg-fermer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  padding: 8px 0;
  font: 700 0.9rem/1 var(--fb);
  color: var(--encre-2);
  cursor: pointer;
  border-radius: 6px;
}
.dlg-fermer span { display: inline-block; transition: transform 0.25s var(--ease); }
.dlg-fermer:hover { color: var(--rouge); }
.dlg-fermer:hover span { transform: translateX(-4px); }
.dlg-date {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 6px 12px;
  border: 1.5px solid var(--encre);
  border-radius: 999px;
  background: var(--papier);
  line-height: 1;
}
.dlg-mois {
  font-stretch: 78%;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.66rem;
  color: var(--rouge);
}
.dlg-jour { font: 700 1.25rem/1 var(--fd); }
.dlg-sur { margin: 0 0 10px; display: flex; flex-wrap: wrap; gap: 6px; }
.dlg-titre { font-size: clamp(1.6rem, 2.6vw, 2.15rem); font-weight: 600; letter-spacing: -0.015em; text-wrap: balance; }
.dlg-accroche { margin: 10px 0 0; color: var(--encre-2); font-size: 1.02rem; }

.dlg-corps { padding: 24px 30px 28px; overflow: auto; flex: 1 1 auto; min-height: 0; overscroll-behavior: contain; }
.dlg-meta {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 14px 16px;
  margin: 0 0 24px;
  padding: 0 0 24px;
  border-bottom: 1.5px solid var(--ligne);
}
.dlg-meta > div { display: contents; }
.dlg-meta dt {
  font-stretch: 78%;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.66rem;
  color: var(--rouge);
  padding-top: 4px;
}
.dlg-meta dd { margin: 0; font-size: 0.97rem; line-height: 1.5; }
.dlg-meta .prov { color: var(--muted); font-style: normal; font-size: 0.85rem; }
.dlg-desc p { margin: 0 0 12px; color: var(--encre-2); }
.dlg-h3 { font-size: 1.2rem; margin: 26px 0 12px; font-weight: 600; }
.dlg-prog { list-style: none; margin: 0; padding: 0; border-left: 2px solid var(--encre); }
.dlg-prog li {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  padding: 7px 0 7px 18px;
}
.dlg-prog li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 14px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--creme);
  border: 2px solid var(--encre);
}
.dlg-prog b { font-stretch: 85%; font-weight: 800; letter-spacing: 0.02em; }
.dlg-prog span { color: var(--encre-2); }
.dlg-infos { margin: 0; padding: 0 0 0 20px; color: var(--encre-2); }
.dlg-infos li { margin: 4px 0; }
.dlg-contact { margin: 26px 0 0; padding: 14px 16px; background: var(--papier); border-radius: 10px; font-size: 0.92rem; }

.dlg-pied {
  flex: none;
  border-top: 1.5px solid var(--ligne);
  padding: 16px 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  justify-content: space-between;
  background: var(--creme);
}
.dlg-cta { display: flex; flex-direction: column; gap: 6px; }
.aide { color: var(--muted); font-size: 0.76rem; }
.dlg-outils { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.dlg-nav { display: flex; gap: 6px; }
.btn-nav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--encre);
  background: var(--creme);
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.2s;
}
.btn-nav:hover:not(:disabled) { background: var(--encre); color: var(--creme); }
.btn-nav:disabled { opacity: 0.3; cursor: default; }

@media (max-width: 600px) {
  .dlg { width: 100%; border-left: 0; box-shadow: none; }
  .dlg-tete { padding: 16px 20px 16px; }
  .dlg-barre { margin-bottom: 16px; }
  .dlg-corps { padding: 20px 20px 24px; }
  .dlg-meta { grid-template-columns: 1fr; gap: 6px; }
  .dlg-meta dt { padding-top: 8px; }
  .dlg-meta > div:first-child dt { padding-top: 0; }
  .dlg-pied { padding: 14px 20px; flex-direction: column; align-items: stretch; }
  .dlg-cta .btn { justify-content: center; }
  .dlg-outils { justify-content: space-between; }
  .dlg-prog li { grid-template-columns: 1fr; gap: 2px; }
}

/* ---------- lien de comparaison entre versions ---------- */
.variante {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--encre);
  background: var(--creme);
  color: var(--encre);
  text-decoration: none;
  font: 700 0.78rem/1 var(--fb);
  letter-spacing: 0.04em;
  box-shadow: 3px 3px 0 var(--encre);
  transition: 0.2s;
}
.variante:hover { background: var(--encre); color: var(--creme); }

/* ---------- réactivité générale ---------- */
@media (max-width: 900px) {
  .hero-int { grid-template-columns: 1fr; }
  .hero-art { max-width: 340px; order: -1; }
  .n70 { font-size: clamp(130px, 38vw, 190px); }
  .ticket { grid-template-columns: var(--souche) 1fr 1fr; grid-template-rows: auto auto; }
  .ticket-souche { grid-row: 1 / -1; }
  .stat:nth-child(odd) { border-right: 0; }
  .stat:nth-child(2), .stat:nth-child(3) { border-bottom: 1.5px solid var(--ligne); }
}
@media (max-width: 640px) {
  .nav > a { display: none; }
  .marque-txt small { display: none; }
  .ticket { box-shadow: 6px 6px 0 var(--encre); }
  .infos-grille { box-shadow: 6px 6px 0 var(--encre); }
}

.noscript {
  text-align: center;
  padding: 30px;
  border: 2px dashed var(--rouge);
  color: var(--rouge-sombre);
  background: var(--creme);
}

/* ---------- mouvement réduit ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-h, .arret.reveal, .info.reveal { opacity: 1; transform: none; }
}

/* ---------- impression ---------- */
@media print {
  body::before, .entete, .hero-art, .hero-ctas, .carte-pied, .pied-haut, .variante { display: none !important; }
  .arret.reveal, .info.reveal { opacity: 1; transform: none; }
  .carte, .ticket, .infos-grille { box-shadow: none; break-inside: avoid; }
}
