/* ==========================================================================
   Maison de la Canne — Les Trois-Îlets, Martinique
   Feuille de style principale
   --------------------------------------------------------------------------
   Direction : éditoriale, patrimoniale, calme. Beaucoup de vide.
   Serif (Cormorant Garamond) pour la voix du lieu, sans (Instrument Sans)
   pour l'information pratique.
   ========================================================================== */

/* ---------- 1. Jetons ---------------------------------------------------- */
:root {
  /* Palette — blanc, vert-noir, or, cuivre */
  --blanc:    #FFFFFF;   /* fond principal */
  --gris:     #F5F5F3;   /* fond secondaire, très léger */
  --gris-2:   #ECECE9;
  --sombre:   #101714;   /* vert-noir des sections sombres */
  --sombre-2: #0B100D;
  --or:       #C9A961;   /* or champagne : titres sur fond sombre */
  --or-2:     #E4D3A3;
  --feuille:  #5B7056;   /* vert végétal, marque et accents discrets */
  --cuivre:   #C2762E;   /* cuivre : action principale */
  --cuivre-2: #A8621F;
  --rouille:  #A65E2A;
  --encre:    #161616;
  --encre-2:  #585858;
  --encre-3:  #8A8A86;
  --ligne:    #E5E5E1;
  --ligne-sombre: rgba(255, 255, 255, .16);
  /* alias conservés pour les composants */
  --ivoire:   var(--blanc);
  --papier:   var(--gris);
  --sable:    var(--gris-2);
  --paille:   var(--or);
  --paille-2: var(--or-2);
  --canne:    var(--sombre);
  --canne-2:  var(--sombre-2);
  --terre:    var(--sombre);
  --bois:     #6B4B34;

  /* Typographie */
  --serif: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --sans:  "Instrument Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Rythme */
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --pad-y:  clamp(5rem, 11vw, 11rem);
  --pad-y-s: clamp(3rem, 6vw, 6rem);
  --gap:    clamp(1rem, 2vw, 2rem);
  --header-h: 7.25rem;   /* bureau : deux rangées (marque + navigation) */
  --status-h: 4.75rem;   /* bandeau d'accueil fixe en bas du viewport */
  --max-w: 1560px;

  --ease-out: cubic-bezier(.22, .75, .25, 1);
  --dur: 1.1s;

  color-scheme: light;
}

/* ---------- 2. Base ------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--encre);
  background: var(--ivoire);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1.2em; }
p:last-child { margin-bottom: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--paille-2); color: var(--encre); }
:focus-visible { outline: 2px solid var(--cuivre); outline-offset: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: var(--gutter); top: -4rem; z-index: 200; background: var(--encre); color: var(--ivoire); padding: .6rem 1rem; font-size: .8rem; }
.skip:focus { top: 1rem; }

/* ---------- 3. Typographie ---------------------------------------------- */
.serif { font-family: var(--serif); font-weight: 400; }
.t-display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.9rem, 8.6vw, 7.8rem);
  line-height: .96;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.t-1 { font-family: var(--serif); font-weight: 400; font-size: clamp(2.6rem, 5.6vw, 5.4rem); line-height: 1; letter-spacing: -.005em; }
/* titres de section : capitales serif, sous-titre italique en bas de casse */
.t-2 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.8rem, 2.8vw, 2.7rem); line-height: 1.15; text-transform: uppercase; letter-spacing: .09em; }
.t-2 i { display: block; text-transform: none; letter-spacing: 0; font-style: italic; font-weight: 300; font-size: .9em; margin-top: .3em; color: var(--encre-2); }
.on-dark .t-2 i { color: rgba(255,255,255,.75); }
.t-3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.55rem, 2.4vw, 2.15rem); line-height: 1.15; }
.t-4 { font-family: var(--serif); font-weight: 500; font-size: 1.35rem; line-height: 1.25; }
.lead { font-family: var(--serif); font-size: clamp(1.3rem, 1.9vw, 1.65rem); line-height: 1.42; font-weight: 400; color: var(--encre); }
.ital { font-style: italic; }
.upper { text-transform: uppercase; letter-spacing: .04em; }
.overline {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--encre-3);
}
.overline--dark { color: var(--paille); }
.caption {
  font-family: var(--sans);
  font-size: .76rem;
  line-height: 1.5;
  letter-spacing: .02em;
  color: var(--encre-3);
}
.caption::before { content: "— "; }
.small { font-size: .9rem; color: var(--encre-2); }
.muted { color: var(--encre-2); }
.measure { max-width: 34em; }
.measure-s { max-width: 26em; }
.num {
  font-family: var(--serif);
  font-variant-numeric: oldstyle-nums;
}
.rule { border: 0; border-top: 1px solid var(--ligne); margin: 0; }

/* Lien avec flèche */
.lnk {
  display: inline-flex; align-items: baseline; gap: .55em;
  font-family: var(--sans); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  border-bottom: 1px solid currentColor; padding-bottom: .3em;
  transition: color .4s var(--ease-out);
}
.lnk .arr { display: inline-block; transition: transform .5s var(--ease-out); }
.lnk:hover { color: var(--cuivre); }
.lnk:hover .arr { transform: translateX(.35em); }
.on-dark .lnk:hover { color: var(--paille); }

/* Bouton — pilule, trois tons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .8em;
  padding: 1.05rem 2.2rem;
  font-family: var(--sans); font-size: .72rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  border: 1px solid var(--sombre); border-radius: 0;
  color: var(--encre); background: transparent;
  transition: background-color .45s var(--ease-out), color .45s var(--ease-out), border-color .45s var(--ease-out), transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.btn:hover { background: var(--sombre); color: var(--blanc); }
.btn--primary { background: var(--cuivre); border-color: var(--cuivre); color: var(--blanc); }
.btn--primary:hover { background: var(--cuivre-2); border-color: var(--cuivre-2); color: var(--blanc); }
.btn--ghost-light { border-color: rgba(255,255,255,.7); color: var(--blanc); }
.btn--ghost-light:hover { background: var(--blanc); color: var(--encre); border-color: var(--blanc); }
.btn--light { background: var(--blanc); border-color: var(--blanc); color: var(--encre); }
.btn--light:hover { background: var(--or-2); border-color: var(--or-2); color: var(--encre); }
.on-dark .btn:not(.btn--primary):not(.btn--ghost-light) { border-color: rgba(255,255,255,.7); color: var(--blanc); }
.on-dark .btn:not(.btn--primary):not(.btn--ghost-light):hover { background: var(--blanc); color: var(--encre); }
.btn[disabled] { opacity: .35; pointer-events: none; box-shadow: none; }

/* ---------- 4. Mise en page --------------------------------------------- */
.wrap { padding-inline: var(--gutter); max-width: var(--max-w); margin-inline: auto; }
.grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gap); row-gap: var(--gap); }
.section { padding-block: var(--pad-y); }
.section--s { padding-block: var(--pad-y-s); }
.section--flush-b { padding-bottom: 0; }
.section--flush-t { padding-top: 0; }
.on-dark { color: var(--blanc); }
.on-dark .muted, .on-dark .small { color: rgba(255,255,255,.72); }
.on-dark .caption { color: rgba(255,255,255,.6); }
.on-dark .overline { color: var(--or); }
.on-dark .rule { border-color: var(--ligne-sombre); }
.bg-sombre, .bg-canne, .bg-canne-2, .bg-terre { background: var(--sombre); }
.bg-papier, .bg-sable { background: var(--gris); }
.bg-paille { background: var(--gris); }
.section-rule { border-top: 1px solid var(--ligne); }

/* Section partagée : texte sur blanc d'un côté, photo pleine hauteur de l'autre */
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: clamp(30rem, 82vh, 54rem); background: var(--blanc); border-top: 1px solid var(--ligne); }
.split-text { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 1.6rem; padding: clamp(3rem, 7vw, 7rem) clamp(1.5rem, 7vw, 8rem); }
.split-text .overline { display: inline-flex; align-items: center; gap: .9rem; }
.split-text .overline::before { content: ""; width: 2.2rem; height: 1px; background: currentColor; opacity: .55; }
.split-text .t-2 { max-width: 14em; }
.split-text .muted { max-width: 32em; }
.split-media { position: relative; overflow: hidden; }
.split-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split--reverse .split-media { order: -1; }
.split-media .band-cap { position: absolute; left: 1.4rem; bottom: 1.2rem; z-index: 1; color: rgba(255,255,255,.9); font-size: .74rem; letter-spacing: .03em; }
.split-media::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 32%; background: linear-gradient(to top, rgba(10,12,10,.5), rgba(10,12,10,0)); pointer-events: none; }
@media (max-width: 899px) {
  .split { grid-template-columns: 1fr; min-height: 0; }
  .split-media { aspect-ratio: 4 / 3; }
  .split--reverse .split-media { order: 0; }
}

/* colonnes utilitaires (desktop) */
@media (min-width: 900px) {
  .c-1-5   { grid-column: 1 / 6; }
  .c-1-6   { grid-column: 1 / 7; }
  .c-1-7   { grid-column: 1 / 8; }
  .c-1-8   { grid-column: 1 / 9; }
  .c-2-6   { grid-column: 2 / 7; }
  .c-2-7   { grid-column: 2 / 8; }
  .c-2-8   { grid-column: 2 / 9; }
  .c-2-12  { grid-column: 2 / 12; }
  .c-3-8   { grid-column: 3 / 9; }
  .c-3-11  { grid-column: 3 / 11; }
  .c-4-10  { grid-column: 4 / 10; }
  .c-4-12  { grid-column: 4 / 12; }
  .c-5-13  { grid-column: 5 / 13; }
  .c-6-13  { grid-column: 6 / 13; }
  .c-7-12  { grid-column: 7 / 12; }
  .c-7-13  { grid-column: 7 / 13; }
  .c-8-13  { grid-column: 8 / 13; }
  .c-9-13  { grid-column: 9 / 13; }
  .c-1-13  { grid-column: 1 / 13; }
  .c-1-4   { grid-column: 1 / 5; }
  .c-1-3   { grid-column: 1 / 4; }
  .c-10-13 { grid-column: 10 / 13; }
  .c-5-9   { grid-column: 5 / 10; }
  .c-8-12  { grid-column: 8 / 13; }
  .self-end { align-self: end; }
  .self-center { align-self: center; }
}
@media (max-width: 899px) {
  .grid > * { grid-column: 1 / -1; }
}

/* Figures */
.fig { margin: 0; position: relative; }
.fig img { width: 100%; height: 100%; object-fit: cover; }
.fig figcaption { margin-top: .9rem; }
.fig--bleed-r { margin-right: calc(-1 * var(--gutter)); }
.fig--bleed-l { margin-left: calc(-1 * var(--gutter)); }
.fig--bleed { margin-inline: calc(-1 * var(--gutter)); }
.fig--frame { overflow: hidden; }
.fig--frame img { transition: transform 1.6s var(--ease-out); }
.fig--frame:hover img { transform: scale(1.025); }
.ratio-4-5 { aspect-ratio: 4 / 5; }
.ratio-3-4 { aspect-ratio: 3 / 4; }
.ratio-1-1 { aspect-ratio: 1 / 1; }
.ratio-3-2 { aspect-ratio: 3 / 2; }
.ratio-16-9 { aspect-ratio: 16 / 9; }
.ratio-21-9 { aspect-ratio: 21 / 9; }
.ratio-2-3 { aspect-ratio: 2 / 3; }
.ratio-4-3 { aspect-ratio: 4 / 3; }
.tone-archive img { filter: grayscale(1) contrast(1.06); }
.tone-canne img { filter: saturate(.78) contrast(1.02); }
.tone-terre img { filter: saturate(.6) contrast(1.04) brightness(.95); }

/* Bandeau photo pleine largeur avec parallaxe douce */
.band {
  position: relative; overflow: hidden;
  height: clamp(18rem, 55vh, 42rem);
}
.band img {
  position: absolute; inset: -12% 0; width: 100%; height: 124%;
  object-fit: cover; will-change: transform;
}
.band--tall { height: clamp(24rem, 82vh, 56rem); }
/* ombre basse pour la légende, comme sur le héros */
.band::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 38%; background: linear-gradient(to top, rgba(10,12,10,.6), rgba(10,12,10,0)); pointer-events: none; }
.band-title { position: absolute; inset: 0; z-index: 1; display: flex; align-items: center; justify-content: center; text-align: center; padding: var(--gutter); color: var(--or); font-family: var(--serif); text-transform: uppercase; letter-spacing: .08em; font-size: clamp(1.8rem, 4.5vw, 4rem); line-height: 1.1; text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.band--title::before { content: ""; position: absolute; inset: 0; background: rgba(8,10,8,.38); z-index: 1; }
.band .band-cap {
  position: absolute; left: var(--gutter); bottom: 1.4rem; z-index: 1;
  color: rgba(255,255,255,.9);
  font-size: .76rem; letter-spacing: .03em;
}

/* ---------- 5. En-tête --------------------------------------------------- */
/* Composition « grande institution », inspirée du Louvre : sélecteur de
   langue à gauche, marque centrée, actions à droite ; navigation centrée
   sur une seconde rangée. Transparent en haut de page (toutes les pages),
   fond blanc + filet dès que la page défile. Sous 900px : une seule rangée
   compacte, la navigation passe dans le menu plein écran. */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  padding-inline: var(--gutter);
  color: var(--encre);
  background: transparent;
  transition: background-color .6s var(--ease-out), color .6s var(--ease-out), box-shadow .6s var(--ease-out), transform .6s var(--ease-out);
}
.site-header--over { color: var(--ivoire); }
.site-header.is-scrolled { background: var(--blanc); color: var(--encre); box-shadow: 0 1px 0 var(--ligne); }
.site-header.is-hidden { transform: translateY(-100%); }
body.menu-open .site-header { transform: none; }
.site-header .inner {
  width: 100%; height: 100%; max-width: var(--max-w); margin-inline: auto;
  display: flex; flex-direction: column;
}

/* rangée haute : langue — marque — actions. Les colonnes latérales restent
   égales tant que la place le permet : la marque est réellement centrée. */
.header-top {
  flex: 1 1 auto; min-height: 0;
  display: grid;
  grid-template-columns: minmax(max-content, 1fr) auto minmax(max-content, 1fr);
  align-items: center; column-gap: 1rem;
}
.header-side { display: flex; align-items: center; min-width: 0; }
.header-side--end { justify-content: flex-end; }

/* marque : le pied de page garde la version avec pictogramme ; dans
   l'en-tête, texte seul (nom serif, lieu en petites capitales dessous) */
.brand { display: inline-flex; align-items: center; gap: .85rem; }
.brand svg { width: 1.35rem; height: 2.2rem; flex: none; }
.brand-name { font-family: var(--serif); font-size: 1.32rem; line-height: 1; letter-spacing: .01em; white-space: nowrap; }
.brand-place { display: block; font-family: var(--sans); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; opacity: .7; margin-top: .3rem; }

/* sélecteur de langue — décoratif : le panneau s'ouvre au survol ou au
   focus, sans script. currentColor : lisible sur héros sombre et fond blanc */
.lang { position: relative; display: inline-flex; }
.lang-btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  padding-block: .4rem; white-space: nowrap;
}
.lang-caret { width: .55rem; height: .33rem; flex: none; transition: transform .4s var(--ease-out); }
.lang:hover .lang-caret, .lang:focus-within .lang-caret { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: 100%; left: 0; z-index: 5; min-width: 8.5rem;
  background: var(--blanc); color: var(--encre);
  border: 1px solid var(--ligne);
  box-shadow: 0 18px 40px -26px rgba(0, 0, 0, .3);
  padding: .4rem 0;
  opacity: 0; visibility: hidden; transform: translateY(-.3rem);
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out), visibility 0s .35s;
}
.lang:hover .lang-menu, .lang:focus-within .lang-menu {
  opacity: 1; visibility: visible; transform: none;
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
}
.lang-menu button {
  display: block; width: 100%; text-align: left; padding: .55rem 1.1rem;
  font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--encre-2);
  transition: color .3s var(--ease-out), background-color .3s var(--ease-out);
}
.lang-menu button:hover { color: var(--encre); background: var(--gris); }
.lang-menu button[aria-current="true"] { color: var(--encre); text-decoration: underline; text-underline-offset: .4em; text-decoration-thickness: 1px; }

/* navigation : rangée centrée sous la marque, fin filet en currentColor */
.nav {
  position: relative; flex: none; height: 2.6rem;
  display: flex; align-items: center; justify-content: center;
  gap: clamp(1.4rem, 2.4vw, 2.6rem);
}
.nav::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: currentColor; opacity: .14; }
.nav a { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; position: relative; padding-block: .3rem; }
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: currentColor; transition: right .5s var(--ease-out); }
.nav a:hover::after, .nav a[aria-current="page"]::after { right: 0; }
.nav-reserve {
  font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600;
  padding: .82rem 1.5rem; border: 1px solid var(--sombre); border-radius: 0; white-space: nowrap;
  background: var(--sombre); color: var(--blanc);
  transition: background-color .45s var(--ease-out), color .45s var(--ease-out), border-color .45s var(--ease-out);
}
.nav-reserve:hover { background: var(--cuivre); border-color: var(--cuivre); color: var(--blanc); }
/* sur le héros non défilé et dans le menu plein écran : simple contour blanc, se remplit au survol */
.site-header--over:not(.is-scrolled) .nav-reserve, body.menu-open .nav-reserve { background: transparent; border-color: rgba(255,255,255,.72); color: var(--blanc); }
.site-header--over:not(.is-scrolled) .nav-reserve:hover, body.menu-open .nav-reserve:hover { background: var(--blanc); border-color: var(--blanc); color: var(--encre); }
.nav-toggle { display: none; align-items: center; gap: .7rem; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 500; }
.nav-toggle .burger { width: 1.4rem; height: .55rem; position: relative; }
.nav-toggle .burger::before, .nav-toggle .burger::after { content: ""; position: absolute; left: 0; right: 0; height: 1px; background: currentColor; transition: transform .5s var(--ease-out); }
.nav-toggle .burger::before { top: 0; } .nav-toggle .burger::after { bottom: 0; }

/* marque centrée (bureau) : nom en serif, lieu en petites capitales */
@media (min-width: 900px) {
  .site-header .brand { text-align: center; }
  .site-header .brand-name { font-size: 1.55rem; letter-spacing: .02em; }
  .site-header .brand-place { font-size: .6rem; letter-spacing: .22em; opacity: .65; margin-top: .35rem; }
}

/* une seule rangée sous 900px */
@media (max-width: 899px) {
  :root { --header-h: 4.5rem; }
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header .brand-place { display: none; }
}
@media (max-width: 640px) {
  :root { --header-h: 4.25rem; }
  .brand { gap: .5rem; }              /* pied de page */
  .brand-name { font-size: 1.02rem; }
  .header-top { column-gap: .5rem; }
  .header-actions { gap: .55rem; }
  .lang-btn { font-size: .56rem; letter-spacing: .1em; }
  .nav-reserve { padding: .5rem .7rem; font-size: .58rem; letter-spacing: .1em; }
  .nav-toggle span:not(.burger) { display: none; }
  .nav-toggle .burger { width: 1.25rem; }
}
@media (max-width: 480px) {
  /* très petits écrans : on resserre pour garder la marque bien centrée */
  .lang-btn { font-size: .54rem; }
  .header-actions { gap: .4rem; }
  .nav-reserve { padding: .45rem .6rem; font-size: .56rem; letter-spacing: .08em; }
}

/* Menu plein écran (mobile / tablette) */
.menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--canne-2); color: var(--ivoire);
  padding: calc(var(--header-h) + 1.5rem) var(--gutter) 2rem;
  display: flex; flex-direction: column; justify-content: space-between;
  opacity: 0; visibility: hidden; transform: translateY(-1%);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out), visibility 0s .6s;
}
.menu.is-open { opacity: 1; visibility: visible; transform: none; transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.menu ul li { border-top: 1px solid var(--ligne-sombre); }
.menu ul li:last-child { border-bottom: 1px solid var(--ligne-sombre); }
.menu ul a { display: flex; justify-content: space-between; align-items: baseline; padding: 1rem 0; font-family: var(--serif); font-size: clamp(2rem, 8vw, 3rem); line-height: 1.05; }
.menu ul a small { font-family: var(--sans); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--or); opacity: .9; }
.menu-foot { display: grid; gap: 1.2rem; padding-top: 2rem; }
.menu-foot .btn { width: 100%; }
body.menu-open { overflow: hidden; }
body.menu-open .site-header { background: var(--canne-2); color: var(--ivoire); box-shadow: none; }
body.menu-open .nav-toggle .burger::before { transform: translateY(.27rem) rotate(45deg); }
body.menu-open .nav-toggle .burger::after { transform: translateY(-.27rem) rotate(-45deg); }

/* ---------- 6. Héros — carrousel plein écran ------------------------------ */
/* Quatre diapositives en fondu croisé (défilement auto dans site.js, ~6 s,
   à garder en phase avec l'animation hero-progress ci-dessous), légende en
   bas à gauche, segments de progression cliquables en bas au centre ;
   bandeau d'accueil sombre au pied (statut d'ouverture calculé en JS). */
.hero {
  position: relative; overflow: hidden;
  min-height: 100svh; min-height: 100vh;
  background: var(--sombre); color: var(--blanc);
}
/* fenêtres anormalement hautes (captures pleine page) : hauteur raisonnable */
@media (min-height: 3000px) { .hero { min-height: 900px; } }

/* diapositives */
.hero-slides { position: absolute; inset: 0; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s var(--ease-out); }
.hero-slide.is-active { opacity: 1; z-index: 1; }
.hero-slide img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transform: scale(1.06); transition: transform 8s var(--ease-out);
}
.hero-slide.is-active img { transform: scale(1); }
.hero-slide:first-child img { object-position: 50% 50%; }
/* voiles : navigation lisible en haut, légendes lisibles en bas */
.hero-slides::before { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; background: linear-gradient(to bottom, rgba(8,10,8,.55) 0%, rgba(8,10,8,0) 30%); }
.hero-slide::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 46%; background: linear-gradient(to top, rgba(8,10,8,.62), rgba(8,10,8,0)); }

/* légende de diapositive, en bas à gauche */
.hero-cap {
  position: absolute; left: var(--gutter); right: var(--gutter);
  bottom: calc(var(--status-h) + 4.9rem); z-index: 3;
  opacity: 0; transform: translateY(14px);
  transition: opacity .9s var(--ease-out) .35s, transform .9s var(--ease-out) .35s;
}
.hero-slide.is-active .hero-cap { opacity: 1; transform: none; }
.hero-cap-title {
  margin: 0; font-family: var(--serif); font-weight: 400;
  font-size: clamp(2rem, 4.6vw, 4.2rem); line-height: 1.02;
  text-transform: uppercase; letter-spacing: .06em;
  text-shadow: 0 2px 30px rgba(0, 0, 0, .35);
}
.hero-cap-sub { margin: .8rem 0 0; font-size: .92rem; letter-spacing: .02em; color: rgba(255,255,255,.88); max-width: 34em; }


/* progression : quatre segments fins, le segment actif se remplit */
.hero-progress { position: absolute; left: 50%; transform: translateX(-50%); bottom: calc(var(--status-h) + 1.1rem); z-index: 4; display: flex; gap: .55rem; }
.hero-progress button { display: flex; align-items: center; width: clamp(2.1rem, 4vw, 3.4rem); height: 2.75rem; }
.hero-progress .seg { display: block; width: 100%; height: 2px; background: rgba(255,255,255,.32); overflow: hidden; }
.hero-progress .seg-fill { display: block; width: 100%; height: 100%; background: var(--blanc); transform: scaleX(0); transform-origin: left; }
.hero-progress button.is-active .seg-fill { animation: hero-progress 6s linear forwards; }
.hero.is-paused .hero-progress .seg-fill { animation-play-state: paused; }
@keyframes hero-progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* bandeau d'accueil : fin, une seule ligne, collé en bas du viewport
   pendant tout le défilement (sous l'en-tête et le menu plein écran) */
.hero-status {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  height: var(--status-h);
  background: var(--sombre-2); color: var(--blanc);
  border-top: 1px solid rgba(255,255,255,.12);
  padding-inline: var(--gutter);
}
.hero-status-in {
  max-width: var(--max-w); margin-inline: auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.hero-status-info { display: flex; align-items: center; gap: 1.5rem; min-width: 0; margin: 0; }
.hero-status-welcome { font-size: .62rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--or-2); white-space: nowrap; }
.hero-status-state { display: flex; align-items: baseline; gap: .8rem; padding-left: 1.5rem; border-left: 1px solid rgba(255,255,255,.18); white-space: nowrap; }
.hero-status-line { font-size: .88rem; color: rgba(255,255,255,.8); }
.hero-status-hours { font-weight: 600; font-size: 1.15rem; letter-spacing: .04em; text-transform: uppercase; }
.hero-status-hours .fl { font-weight: 400; margin-inline: .2em; }
.hero-status-cta { display: flex; align-items: center; gap: .7rem; flex: none; }
.hero-status .btn { padding: .68rem 1.4rem; font-size: .68rem; }

@media (max-width: 1080px) {
  .hero-status .btn--light { display: none; }   /* un seul appel à l'action */
}
@media (max-width: 899px) {
  .hero-status-welcome { display: none; }
  .hero-status-state { padding-left: 0; border-left: 0; }
}
@media (max-width: 640px) {
  :root { --status-h: 3.9rem; }
  .hero-slide:first-child img { object-position: 48% 50%; }
  .hero-cap { bottom: calc(var(--status-h) + 4.2rem); }
  .hero-cap-sub { max-width: 24em; }
  /* statut sur deux lignes fines, un seul appel à l'action */
  .hero-status-state { display: grid; gap: .1rem; white-space: normal; }
  .hero-status-line { font-size: .72rem; line-height: 1.35; }
  .hero-status-hours { font-size: .85rem; letter-spacing: .02em; line-height: 1.15; }
  .hero-status .btn { padding: .55rem 1rem; font-size: .58rem; letter-spacing: .12em; }
}

/* ---------- 6b. À la une -------------------------------------------------- */
/* Cinq actualités sous le héros, façon grande institution : une carte
   vedette sur deux tiers, quatre cartes standard ; badges rectangulaires
   posés sur l'image, carte entière cliquable (liens inertes ici). */
.une-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.6rem); line-height: 1;
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.une-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(2rem, 3.5vw, 3.5rem) var(--gap); }
.une-card { grid-column: span 4; display: block; }
.une-card--lead { grid-column: span 8; }
.une-media { position: relative; display: block; overflow: hidden; aspect-ratio: 4 / 3; background: var(--gris-2); }
.une-card--lead .une-media { aspect-ratio: 16 / 9; }
.une-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.une-card:hover .une-media img { transform: scale(1.04); }
.une-badges { position: absolute; top: .8rem; left: .8rem; z-index: 1; display: flex; gap: .4rem; }
.une-badge {
  display: inline-block; padding: .4rem .65rem;
  background: var(--sombre); color: var(--blanc);
  font-size: .6rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
}
.une-badge--light { background: var(--blanc); color: var(--encre); }
.une-body { display: block; padding-top: 1.15rem; }
.une-card-title {
  display: block; font-family: var(--serif); font-weight: 400;
  font-size: 1.35rem; line-height: 1.3; text-transform: uppercase; letter-spacing: .06em;
  text-decoration: underline; text-decoration-color: transparent; text-underline-offset: .3em; text-decoration-thickness: 1px;
  transition: text-decoration-color .4s var(--ease-out);
}
.une-card:hover .une-card-title { text-decoration-color: currentColor; }
.une-card--lead .une-card-title { font-size: clamp(1.6rem, 2.2vw, 2.1rem); }
.une-card-date { display: block; margin-top: .65rem; font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--cuivre); }
.une-card-txt { display: block; margin-top: .5rem; font-size: .92rem; line-height: 1.6; color: var(--encre-2); max-width: 36em; }
@media (max-width: 899px) {
  /* tablette : vedette pleine largeur, puis deux colonnes */
  .une-card { grid-column: span 6; }
  .une-card--lead { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .une-card, .une-card--lead { grid-column: 1 / -1; }
}

/* Haut de page intérieur (titre éditorial) */
.page-head { padding-top: calc(var(--header-h) + clamp(3rem, 9vw, 8rem)); padding-bottom: clamp(2.5rem, 6vw, 5rem); }
.page-head .overline { display: block; margin-bottom: 1.6rem; }
.page-head h1 { margin-bottom: 1.6rem; }
/* titre de page : capitales serif, sous-titre italique */
.page-head h1.t-1 { text-transform: uppercase; letter-spacing: .05em; font-size: clamp(2.2rem, 4.6vw, 4.4rem); line-height: 1.05; }
.page-head h1.t-1 br { display: none; }
.page-head h1.t-1 i { display: block; text-transform: none; letter-spacing: 0; font-weight: 300; font-size: .62em; margin-top: .35em; color: var(--encre-2); }
.page-head .lead { margin-top: .5rem; }
.page-head { text-align: center; }
.page-head .grid { display: flex; flex-direction: column; align-items: center; row-gap: 0; }
.page-head .grid > * { max-width: 46em; }
.page-head .lead { max-width: 30em; margin-top: 1.4rem; }
.page-head .muted { max-width: 38em; margin-inline: auto; }

/* ---------- 7. Manifeste (déclaration centrée) --------------------------- */
.manif { position: relative; text-align: center; }
.manif-inner { max-width: 64rem; margin-inline: auto; display: flex; flex-direction: column; align-items: center; }
.manif .overline { display: block; margin-bottom: 2.2rem; }
.manif-statement {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.9rem, 3.5vw, 3.4rem); line-height: 1.24; letter-spacing: -.004em;
  max-width: 21em; text-wrap: balance;
}
.manif-statement i { font-style: italic; font-weight: 300; }
.manif-orn { display: block; width: 1px; height: 3.2rem; margin: clamp(2rem, 4vw, 3rem) auto; background: var(--encre-3); opacity: .55; }
.manif-note { max-width: 36em; font-size: 1rem; line-height: 1.8; }
.manif .caption { display: block; margin-top: 1.8rem; max-width: 40em; }

/* ---------- 8. Compositions éditoriales ---------------------------------- */
.edito-offset { margin-top: -14%; }
@media (max-width: 899px) { .edito-offset { margin-top: 1.5rem; width: 70%; } }
.stack > * + * { margin-top: 1.3rem; }
.stack-l > * + * { margin-top: 2.2rem; }

/* Index typographique (Objets & matières) */
.index { border-top: 1px solid var(--ligne); position: relative; }
.index-row {
  display: grid; grid-template-columns: 3.4rem minmax(0, 1fr) minmax(0, 24rem) 2.4rem; align-items: baseline; gap: 1rem 2.5rem;
  padding: 1.75rem 0; border-bottom: 1px solid var(--ligne);
}
.index-row .n { font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--encre-3); font-variant-numeric: tabular-nums; }
.index-row .w { font-family: var(--serif); font-weight: 300; font-size: clamp(1.9rem, 3.2vw, 2.9rem); line-height: 1; transition: transform .7s var(--ease-out), color .5s var(--ease-out); }
.index-row .w i { font-style: italic; font-weight: 300; }
.index-row .s { font-size: .86rem; line-height: 1.55; color: var(--encre-2); letter-spacing: .01em; }
.index-row .go { justify-self: end; font-family: var(--serif); font-size: 1.5rem; line-height: 1; color: var(--cuivre); opacity: 0; transform: translateX(-.6rem); transition: opacity .5s var(--ease-out), transform .7s var(--ease-out); }
.index-row:hover .w { color: var(--cuivre); transform: translateX(.5rem); }
.index-row:hover .go { opacity: 1; transform: none; }
.index-row .swatch { display: none; }
@media (max-width: 899px) {
  .index-row { grid-template-columns: 2.6rem 1fr 1.6rem; gap: .6rem 1rem; padding: 1.4rem 0; }
  .index-row .s { grid-column: 2; }
  .index-row .go { grid-row: 1; grid-column: 3; opacity: .6; transform: none; }
}
/* variante mobile : petite image sous certaines lignes */
.index-row .thumb { display: none; }
@media (max-width: 899px) {
  .index-row .thumb { display: block; grid-column: 2; width: 44%; aspect-ratio: 4 / 3; overflow: hidden; margin-top: .4rem; }
  .index-row .thumb img { width: 100%; height: 100%; object-fit: cover; }
}

/* ---------- 9. Chronologie (récit) --------------------------------------- */
.tl { position: relative; }
.tl-item { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); column-gap: var(--gap); padding-block: clamp(2.5rem, 6vw, 5rem); position: relative; }
.tl-item + .tl-item::before {
  content: "↓"; position: absolute; left: 0; top: -.6em;
  font-family: var(--serif); font-size: 2rem; line-height: 1; color: var(--paille); font-weight: 300;
}
.tl-era { position: sticky; top: calc(var(--header-h) + 2rem); align-self: start; }
.tl-era .yr { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(2.2rem, 5vw, 4.6rem); line-height: 1; color: var(--encre); }
.tl-era .yr small { display: block; font-style: normal; font-family: var(--sans); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--encre-3); margin-top: .8rem; }
.tl-body h3 { font-family: var(--serif); font-weight: 400; text-transform: uppercase; letter-spacing: .04em; font-size: clamp(1.7rem, 3vw, 2.6rem); line-height: 1.08; margin-bottom: 1.2rem; }
.tl-body p { color: var(--encre-2); max-width: 36em; }
.tl-body .fig { margin-top: 2rem; max-width: 30rem; }
.tl-item--accent .tl-body h3 { color: var(--rouille); }
@media (max-width: 899px) {
  .tl-item { grid-template-columns: 1fr; row-gap: 1rem; }
  .tl-era { position: static; }
  .tl-item + .tl-item::before { font-size: 1.6rem; }
}

/* Chapitres thématiques (page Histoire) — chaque bloc a son propre comportement */
.chap { padding-block: var(--pad-y-s); scroll-margin-top: var(--header-h); }
.chap-head { display: flex; align-items: baseline; gap: 1.2rem; margin-bottom: 2rem; }
.chap-head .n { font-size: .72rem; letter-spacing: .16em; color: var(--encre-3); }
.chap-head h2 { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 4.6rem); line-height: 1; font-weight: 300; }
.chap-head h2 i { font-weight: 300; }
.on-dark .chap-head .n { color: var(--paille); }

/* Fiche botanique (La Canne) */
.fiche { border-top: 1px solid var(--ligne); border-bottom: 1px solid var(--ligne); }
.fiche dl { display: grid; grid-template-columns: 1fr; margin: 0; }
.fiche div { display: grid; grid-template-columns: 10rem 1fr; gap: 1rem; padding: .9rem 0; border-top: 1px solid var(--ligne); }
.fiche div:first-child { border-top: 0; }
.fiche dt { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--encre-3); padding-top: .35rem; }
.fiche dd { margin: 0; font-family: var(--serif); font-size: 1.25rem; line-height: 1.3; }
.cane-draw { width: 100%; max-width: 14rem; margin-inline: auto; color: var(--feuille); }
@media (max-width: 640px) { .fiche div { grid-template-columns: 7rem 1fr; } }

/* Mots en ligne (Le Sucre) */
.steps-line { display: flex; flex-wrap: wrap; align-items: baseline; gap: .6em 1.2em; font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 3.6rem); line-height: 1.1; }
.steps-line .sep { font-weight: 300; color: var(--cuivre); font-size: .6em; }
.on-dark .steps-line .sep { color: var(--or); }

/* Grande citation (Le Rhum / Mémoire) */
.quote { font-family: var(--serif); font-weight: 300; font-size: clamp(1.9rem, 4vw, 3.6rem); line-height: 1.12; }
.quote i { font-weight: 300; }
.quote-src { margin-top: 1.4rem; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--encre-3); }
.on-dark .quote-src { color: rgba(255,255,255,.6); }

/* Date monumentale (Le Travail) */
.date-mono { font-family: var(--serif); font-weight: 300; font-size: clamp(4rem, 14vw, 13rem); line-height: .9; letter-spacing: -.01em; }
.date-mono small { display: block; font-size: .18em; font-family: var(--sans); letter-spacing: .2em; text-transform: uppercase; font-weight: 500; margin-top: 1.2rem; color: var(--encre-3); }

/* ---------- 10. Liste agenda / expositions ------------------------------- */
.ev { border-top: 1px solid var(--ligne); }
.ev-row {
  display: grid; grid-template-columns: 9rem 1fr auto; gap: 1.5rem; align-items: baseline;
  padding: 1.6rem 0; border-bottom: 1px solid var(--ligne);
  transition: background-color .5s var(--ease-out);
}
.ev-row .d { font-family: var(--serif); font-size: 1.7rem; line-height: 1; }
.ev-row .d small { display: block; font-family: var(--sans); font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--encre-3); margin-top: .5rem; }
.ev-row .t { font-family: var(--serif); font-size: 1.45rem; line-height: 1.2; }
.ev-row .t p { font-family: var(--sans); font-size: .88rem; color: var(--encre-2); margin-top: .4rem; max-width: 34em; }
.ev-row .k { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--encre-3); white-space: nowrap; }
.ev-month { padding: 3rem 0 1rem; }
.on-dark .ev { border-color: var(--ligne-sombre); }
.on-dark .ev-row { border-color: var(--ligne-sombre); }
.on-dark .ev-row .d small, .on-dark .ev-row .k { color: rgba(255,255,255,.55); }
.on-dark .ev-row .t p { color: rgba(255,255,255,.72); }
@media (max-width: 720px) {
  .ev-row { grid-template-columns: 1fr; gap: .6rem; }
  .ev-row .d { font-size: 1.4rem; }
  .ev-row .d small { display: inline; margin-left: .6rem; }
}

/* Expositions : bloc éditorial avec dates verticales */
.expo { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gap); row-gap: 2rem; padding-block: clamp(3rem, 7vw, 6rem); border-top: 1px solid var(--ligne); }
.expo-dates { grid-column: 1 / 3; font-family: var(--serif); font-size: 1.35rem; line-height: 1.25; }
.expo-dates small { display: block; font-family: var(--sans); font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--encre-3); margin-top: .6rem; }
.expo-txt { grid-column: 3 / 8; }
.expo-fig { grid-column: 8 / 13; }
.expo:nth-child(even) .expo-txt { grid-column: 7 / 12; }
.expo:nth-child(even) .expo-fig { grid-column: 3 / 7; grid-row: 1; }
.on-dark .expo { border-color: var(--ligne-sombre); }
.on-dark .expo-dates small { color: var(--or); }
@media (max-width: 899px) { .expo > * { grid-column: 1 / -1 !important; } .expo:nth-child(even) .expo-fig { grid-row: auto; } }

/* ---------- 11. Informations pratiques ----------------------------------- */
.infos { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gap); }
.infos-nav { grid-column: 1 / 4; position: sticky; top: calc(var(--header-h) + 2rem); align-self: start; }
.infos-nav a { display: block; padding: .5rem 0; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--encre-3); border-bottom: 1px solid var(--ligne); }
.infos-nav a:hover { color: var(--encre); }
.infos-body { grid-column: 5 / 13; }
.info-block { padding-block: clamp(2.5rem, 5vw, 4rem); border-top: 1px solid var(--ligne); scroll-margin-top: calc(var(--header-h) + 1rem); }
.info-block:first-child { border-top: 0; padding-top: 0; }
.info-block h2 { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1; margin-bottom: 1.6rem; }
.kv { display: grid; grid-template-columns: 1fr auto; gap: .6rem 2rem; align-items: baseline; }
.kv > div { display: contents; }
.kv dt, .kv dd { margin: 0; padding: .8rem 0; border-bottom: 1px solid var(--ligne); }
.kv dt { font-size: .95rem; }
.kv dt small { display: block; font-size: .78rem; color: var(--encre-3); }
.kv dd { font-family: var(--serif); font-size: 1.4rem; text-align: right; white-space: nowrap; }
.addr { font-family: var(--serif); font-size: clamp(1.6rem, 2.6vw, 2.3rem); line-height: 1.2; }
@media (max-width: 899px) {
  .infos-nav { grid-column: 1 / -1; position: static; display: flex; flex-wrap: wrap; gap: .2rem 1.4rem; margin-bottom: 2rem; }
  .infos-nav a { border: 0; padding: .3rem 0; }
  .infos-body { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  /* clé / valeur : la valeur passe sous l'intitulé, sans contrainte de largeur */
  .kv { grid-template-columns: 1fr; gap: 0; }
  .kv dt { padding-bottom: .2rem; border-bottom: 0; }
  .kv dd { text-align: left; white-space: normal; padding-top: 0; font-size: 1.3rem; }
}
/* plan schématique */
.map { width: 100%; height: auto; color: var(--encre); }
.map text { font-family: var(--sans); font-size: 11px; letter-spacing: .06em; fill: var(--encre-2); }
.map .lbl-big { font-family: var(--serif); font-size: 15px; fill: var(--encre); letter-spacing: .02em; }
.map .sea { fill: #F3F4F2; }
.map .land { fill: #E6E7E2; stroke: #9C9E98; stroke-width: .8; }
.map .road { fill: none; stroke: #9C9E98; stroke-width: 1; }
.map .ferry { fill: none; stroke: var(--encre); stroke-width: 1; stroke-dasharray: 3 4; }
.map .pin { fill: var(--cuivre); }
.map .pin-ring { fill: none; stroke: var(--cuivre); stroke-width: 1; }
.map .dot { fill: var(--encre-3); }

/* ---------- 12. Réservation --------------------------------------------- */
.book { padding-top: calc(var(--header-h) + clamp(2rem, 6vw, 5rem)); padding-bottom: var(--pad-y); }
.book-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gap); row-gap: 3rem; }
.book-steps { grid-column: 1 / 3; position: sticky; top: calc(var(--header-h) + 2rem); align-self: start; }
.book-main { grid-column: 4 / 9; min-height: 30rem; }
.book-side { grid-column: 10 / 13; position: sticky; top: calc(var(--header-h) + 2rem); align-self: start; }
.book-steps li { position: relative; display: flex; gap: 1rem; align-items: baseline; padding: .7rem 0; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--encre-3); border-bottom: 1px solid var(--ligne); transition: color .4s var(--ease-out); }
.book-steps li .sn { font-family: var(--serif); font-size: 1.05rem; letter-spacing: 0; text-transform: none; min-width: 1.6rem; }
.book-steps li.is-done { color: var(--encre-2); cursor: pointer; }
.book-steps li.is-done .sn::after { content: " ✓"; color: var(--feuille); }
.book-steps li.is-active { color: var(--encre); }
.book-steps li.is-active .sn { color: var(--cuivre); }
.book-head { margin-bottom: 2.4rem; }
.book-head .overline { display: block; margin-bottom: 1rem; }
.book-head h1, .book-head h2 { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1.02; font-weight: 400; }
.book-head p { margin-top: 1rem; color: var(--encre-2); max-width: 30em; }
.step { display: none; animation: step-in .7s var(--ease-out); }
.step.is-active { display: block; }
@keyframes step-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.book-nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--ligne); }
.book-back { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--encre-3); }
.book-back:hover { color: var(--encre); }

/* Choix de la visite : lignes, pas cartes */
.choice { border-top: 1px solid var(--ligne); }
.choice label { display: grid; grid-template-columns: 1.6rem 1fr auto; gap: 1.2rem; align-items: start; padding: 1.6rem 0 1.6rem .2rem; border-bottom: 1px solid var(--ligne); cursor: pointer; position: relative; transition: padding-left .5s var(--ease-out), background-color .5s var(--ease-out); }
.choice label:hover { padding-left: .8rem; }
.choice input { position: absolute; opacity: 0; width: 0; height: 0; }
.choice .mark { width: 1.05rem; height: 1.05rem; border: 1px solid var(--encre-3); border-radius: 50%; margin-top: .55rem; position: relative; transition: border-color .4s; }
.choice .mark::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--cuivre); transform: scale(0); transition: transform .4s var(--ease-out); }
.choice input:checked ~ .mark { border-color: var(--cuivre); }
.choice input:checked ~ .mark::after { transform: scale(1); }
.choice input:checked ~ .cx .cn { color: var(--cuivre); }
.choice input:focus-visible ~ .mark { outline: 2px solid var(--cuivre); outline-offset: 3px; }
.choice .cn { font-family: var(--serif); font-size: clamp(1.5rem, 2.4vw, 2rem); line-height: 1.1; transition: color .4s; }
.choice .cd { color: var(--encre-2); font-size: .92rem; margin-top: .4rem; max-width: 30em; }
.choice .cm { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--encre-3); text-align: right; line-height: 1.8; padding-top: .55rem; white-space: nowrap; }
.choice .cm b { display: block; font-family: var(--serif); font-size: 1.3rem; letter-spacing: 0; text-transform: none; font-weight: 400; color: var(--encre); }
@media (max-width: 640px) { .choice label { grid-template-columns: 1.6rem 1fr; } .choice .cm { grid-column: 2; text-align: left; padding-top: .4rem; } .choice .cm b { display: inline; margin-right: .6rem; } }

/* Calendrier */
.cal { max-width: 34rem; }
.cal-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 1.4rem; }
.cal-head .m { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.4rem); line-height: 1; }
.cal-head .m small { font-family: var(--sans); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--encre-3); margin-left: .8rem; }
.cal-nav { display: flex; gap: .4rem; }
.cal-nav button { width: 2.4rem; height: 2.4rem; border: 1px solid var(--ligne); border-radius: 0; font-family: var(--serif); font-size: 1.3rem; display: inline-flex; align-items: center; justify-content: center; transition: background-color .4s, border-color .4s; }
.cal-nav button:hover { background: var(--papier); border-color: var(--encre-3); }
.cal-nav button[disabled] { opacity: .3; pointer-events: none; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: .25rem; }
.cal-grid .wd { font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--encre-3); text-align: center; padding-bottom: .8rem; }
.cal-day { aspect-ratio: 1; display: inline-flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.15rem; border-radius: 0; position: relative; transition: background-color .35s, color .35s; }
.cal-day:not([disabled]):hover { background: var(--sable); }
.cal-day[disabled] { color: var(--encre-3); opacity: .38; cursor: default; }
.cal-day.is-selected { background: var(--canne); color: var(--ivoire); }
.cal-day.is-today::after { content: ""; position: absolute; bottom: 14%; width: 4px; height: 4px; border-radius: 50%; background: var(--cuivre); }
.cal-legend { display: flex; gap: 1.6rem; margin-top: 1.4rem; font-size: .74rem; color: var(--encre-3); }

/* Créneaux */
.slots { display: flex; flex-wrap: wrap; gap: .6rem; }
.slot { font-family: var(--serif); font-size: 1.35rem; padding: .7rem 1.5rem; border: 1px solid var(--ligne); border-radius: 0; transition: background-color .4s, border-color .4s, color .4s; }
.slot:hover { border-color: var(--encre-3); background: var(--papier); }
.slot.is-selected { background: var(--canne); border-color: var(--canne); color: var(--ivoire); }
.slot small { display: block; font-family: var(--sans); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--encre-3); margin-top: .2rem; }
.slot.is-selected small { color: rgba(255,255,255,.7); }
.slot[disabled] { opacity: .35; text-decoration: line-through; pointer-events: none; }

/* Compteurs */
.counter { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 1rem 2rem; padding: 1.2rem 0; border-bottom: 1px solid var(--ligne); }
.counter:first-child { border-top: 1px solid var(--ligne); }
.counter .cl { font-family: var(--serif); font-size: 1.45rem; line-height: 1.1; }
.counter .cl small { display: block; font-family: var(--sans); font-size: .8rem; color: var(--encre-3); margin-top: .25rem; }
.counter .cp { font-family: var(--serif); font-size: 1.2rem; color: var(--encre-2); min-width: 4rem; text-align: right; }
.counter .cc { display: inline-flex; align-items: center; gap: .2rem; }
.counter .cc button { width: 2.3rem; height: 2.3rem; border: 1px solid var(--ligne); border-radius: 0; font-family: var(--serif); font-size: 1.4rem; display: inline-flex; align-items: center; justify-content: center; transition: background-color .35s, border-color .35s; }
.counter .cc button:hover { background: var(--papier); border-color: var(--encre-3); }
.counter .cc output { min-width: 2.4rem; text-align: center; font-family: var(--serif); font-size: 1.5rem; }
.total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 1.4rem; font-family: var(--serif); font-size: 1.3rem; }
.total b { font-weight: 400; font-size: 1.8rem; }

/* Formulaire : champs soulignés */
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem 2rem; }
.field { display: grid; gap: .5rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--encre-3); }
.field input, .field textarea, .field select {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--ligne);
  padding: .6rem 0; font-family: var(--serif); font-size: 1.3rem; border-radius: 0;
  transition: border-color .4s;
}
.field input:focus, .field textarea:focus { outline: none; border-bottom-color: var(--encre); }
.field textarea { min-height: 5.5rem; resize: vertical; }
.field.is-invalid input { border-bottom-color: var(--rouille); }
.field .err { display: none; font-size: .74rem; color: var(--rouille); }
.field.is-invalid .err { display: block; }
.check { display: flex; gap: .9rem; align-items: flex-start; font-size: .88rem; color: var(--encre-2); grid-column: 1 / -1; cursor: pointer; }
.check input { margin-top: .35rem; accent-color: var(--canne); }
@media (max-width: 640px) { .form { grid-template-columns: 1fr; } }

/* Récapitulatif */
.summary { background: var(--gris); padding: 1.8rem 1.6rem; border-radius: 12px; }
.summary .overline { display: block; margin-bottom: 1.2rem; }
.summary dl { display: grid; gap: .9rem; margin: 0; }
.summary dt { font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--encre-3); }
.summary dd { margin: .15rem 0 0; font-family: var(--serif); font-size: 1.25rem; line-height: 1.2; }
.summary dd.empty { color: var(--encre-3); font-style: italic; font-size: 1.05rem; }
.summary .tot { border-top: 1px solid var(--ligne); margin-top: 1.4rem; padding-top: 1rem; display: flex; justify-content: space-between; font-family: var(--serif); font-size: 1.2rem; }
.summary .tot b { font-weight: 400; font-size: 1.5rem; }
.book-mobilebar { display: none; }
@media (max-width: 1080px) {
  .book-steps { grid-column: 1 / -1; position: static; display: flex; gap: 1.2rem; overflow-x: auto; padding-bottom: .2rem; scrollbar-width: none; }
  .book-steps li { border: 0; white-space: nowrap; padding: .2rem 0; }
  .book-steps li:not(.is-active):not(.is-done) { display: none; }
  .book-steps li.is-done { display: none; }
  .book-main { grid-column: 1 / -1; min-height: 0; }
  .book-side { grid-column: 1 / -1; position: static; }
}

/* Confirmation & billet */
.confirm .t-1 { margin-bottom: 2rem; }
.confirm-when { font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.05; }
.confirm-when span { display: block; }
.confirm-where { margin-top: 1.2rem; font-family: var(--serif); font-size: 1.35rem; color: var(--encre-2); line-height: 1.3; }
.ticket {
  margin-top: 3rem; max-width: 30rem;
  background: var(--gris); color: var(--encre);
  display: grid; grid-template-columns: 1fr 5.5rem;
  position: relative; border-radius: 14px; border: 1px solid var(--ligne);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.28);
}
.ticket-main { padding: 1.8rem 1.6rem; border-right: 1px dashed var(--encre-3); display: grid; gap: 1.3rem; }
.ticket-main .ttl { display: flex; align-items: center; gap: .7rem; font-family: var(--serif); font-size: 1.15rem; }
.ticket-main .ttl svg { width: .9rem; height: 1.5rem; }
.ticket-main .big { font-family: var(--serif); font-size: 2rem; line-height: 1; }
.ticket-main .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ticket-main dt { font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; color: var(--encre-3); }
.ticket-main dd { margin: .2rem 0 0; font-family: var(--serif); font-size: 1.15rem; line-height: 1.2; }
.ticket-stub { padding: 1.4rem .8rem; display: grid; grid-template-rows: auto 1fr auto; justify-items: center; gap: .8rem; }
.ticket-stub .qr { width: 3.6rem; height: 3.6rem; }
.ticket-stub .id { writing-mode: vertical-rl; font-size: .62rem; letter-spacing: .2em; color: var(--encre-3); transform: rotate(180deg); }
.ticket::before, .ticket::after { content: ""; position: absolute; width: 1.2rem; height: 1.2rem; border-radius: 50%; background: var(--ivoire); right: calc(5.5rem - .6rem); }
.ticket::before { top: -.6rem; } .ticket::after { bottom: -.6rem; }
.confirm-actions { display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; margin-top: 2.4rem; }

/* ---------- 12b. Bandeau billetterie ------------------------------------- */
/* Petit bandeau CTA sur image, façon « Restons en contact » du Louvre :
   photo en fond voilée d'un dégradé sombre, titre en capitales, une ligne
   d'invitation et le bouton Billetterie. */
.cta-band { position: relative; overflow: hidden; padding: clamp(4rem, 9vw, 6.5rem) 0; color: var(--blanc); }
.cta-band-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,23,20,.86) 0%, rgba(16,23,20,.6) 45%, rgba(16,23,20,.24) 100%); }
.cta-band-inner { position: relative; z-index: 1; }
.cta-band-title { font-family: var(--sans); font-weight: 600; font-size: clamp(1.05rem, 1.7vw, 1.35rem); letter-spacing: .18em; text-transform: uppercase; }
.cta-band p { margin-top: .9rem; max-width: 36em; font-size: .98rem; line-height: 1.6; color: rgba(255,255,255,.88); }
.cta-band .btn { margin-top: 1.7rem; }

/* ---------- 13. Pied de page --------------------------------------------- */
/* Inspiré des pieds de page Met / Louvre : identité et coordonnées à
   gauche, menus au centre, encart lettre d'information en bas à droite,
   liens légaux centrés tout en bas. */
.site-footer { padding: clamp(3.5rem, 7vw, 6rem) 0 calc(2rem + var(--status-h)); background: var(--sombre); color: var(--blanc); }
.site-footer .grid { row-gap: 2.5rem; }
.foot-brand { display: flex; flex-direction: column; align-items: flex-start; }
.foot-brand .brand-name { font-size: 1.6rem; }
.foot-addr { margin-top: 1.4rem; font-family: var(--serif); font-size: clamp(.95rem, 1.3vw, 1.15rem); line-height: 1.35; color: rgba(255,255,255,.85); }
.foot-addr a { color: inherit; }
.foot-addr a:hover { color: var(--or); }
@media (min-width: 900px) {
  .foot-brand { grid-row: 1 / 3; }
  .foot-addr { white-space: nowrap; }
}
/* plan d'accès : occupe le reste de la colonne, son bas s'aligne sur le
   bas de l'encart lettre d'information (la colonne couvre les deux rangées) */
.foot-map { align-self: stretch; flex: 1 1 auto; margin-top: 1.6rem; min-height: 240px; border: 1px solid var(--ligne-sombre); }
.foot-map iframe { display: block; width: 100%; height: 100%; border: 0; }
/* petit encart horaires, entre l'adresse et les coordonnées */
.foot-hours { margin-top: 1.3rem; }
.foot-hours h4 { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--or); margin: 0 0 .45rem; }
.foot-hours p { margin: 0; font-size: .92rem; line-height: 1.55; color: rgba(255,255,255,.85); }
.foot-hours-off { display: block; font-size: .85rem; color: rgba(255,255,255,.5); }
.foot-contact { margin-top: 1.2rem; }
.foot-contact li { padding: .2rem 0; font-size: .92rem; color: rgba(255,255,255,.85); }
.foot-contact a { display: inline-flex; align-items: center; gap: .55rem; }
.foot-contact .foot-ic { width: .95em; height: .95em; flex: none; }
.foot-contact a:hover { color: var(--or); }
@media (min-width: 900px) {
  .foot-col--1 { grid-column: 7 / 10; }
  .foot-col--2 { grid-column: 10 / 13; }
}
.foot-col h4 { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--or); margin-bottom: 1rem; }
.foot-col li { padding: .3rem 0; font-size: .92rem; color: rgba(255,255,255,.85); }
.foot-col a:hover { color: var(--or); }
.foot-news { border: 1px solid var(--ligne-sombre); padding: 1.6rem 1.8rem 1.8rem; }
.foot-news h4 { font-family: var(--serif); font-size: 1.35rem; font-weight: 400; color: var(--or); }
.foot-news > p { margin-top: .4rem; font-size: .88rem; color: rgba(255,255,255,.7); }
.foot-news-row { display: flex; gap: .6rem; margin-top: 1.1rem; }
.foot-news input { flex: 1 1 auto; min-width: 0; background: transparent; border: 1px solid rgba(255,255,255,.35); color: var(--blanc); padding: .8rem 1rem; font-size: .9rem; font-family: var(--sans); transition: border-color .3s var(--ease-out); }
.foot-news input::placeholder { color: rgba(255,255,255,.45); }
.foot-news input:focus { outline: none; border-color: var(--or); }
.foot-news button { flex: none; width: 3.1rem; display: grid; place-items: center; background: var(--cuivre); color: var(--blanc); transition: background-color .3s var(--ease-out); }
.foot-news button:hover { background: var(--or); }
.foot-news button svg { width: 1.15rem; }
.foot-news-ok { margin-top: .8rem; font-size: .85rem; color: var(--or); }
.foot-bottom { margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: 1.6rem; border-top: 1px solid var(--ligne-sombre); text-align: center; }
.foot-legal { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem 2rem; font-size: .72rem; letter-spacing: .04em; color: rgba(255,255,255,.65); }
.foot-legal a:hover { color: var(--or); }
.foot-copy { margin-top: 1.1rem; font-size: .72rem; letter-spacing: .04em; color: rgba(255,255,255,.45); }

/* ---------- 13b. Compléments --------------------------------------------- */
.header-actions { display: flex; align-items: center; gap: 1.4rem; }
.section-head { display: flex; flex-direction: column; align-items: center; text-align: center; row-gap: 0; margin-bottom: clamp(3rem, 6vw, 5rem); }
.section-head > * { max-width: 40em; }
.section-head .overline { display: block; }
.section-head .t-2 { margin-top: 1.1rem; }
.section-head p { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(1.15rem, 1.6vw, 1.45rem); line-height: 1.4; color: var(--encre-2); max-width: 30em; margin: 1.3rem 0 0; }
.on-dark .section-head p { color: rgba(255,255,255,.75); }
.section-head .self-end, .page-head .self-end { align-self: center; }
.ta-c { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; } .mb-3 { margin-bottom: 3rem; }
.sw-feuille { background: var(--feuille); } .sw-paille { background: var(--paille); } .sw-cuivre { background: var(--cuivre); }
.on-dark .lead { color: var(--ivoire); }
@media (min-width: 900px) {
  .c-6-9 { grid-column: 6 / 10; } .c-6-10 { grid-column: 6 / 11; } .c-8-11 { grid-column: 8 / 12; } .c-1-9 { grid-column: 1 / 10; }
  .c-5-11 { grid-column: 5 / 12; } .c-5-8 { grid-column: 5 / 9; } .c-7-10 { grid-column: 7 / 11; }
  .c-3-6 { grid-column: 3 / 7; } .c-9-12 { grid-column: 9 / 13; } .c-2-5 { grid-column: 2 / 6; }
  .c-7-11 { grid-column: 7 / 12; } .c-3-7 { grid-column: 3 / 8; } .c-8-13 { grid-column: 8 / 13; }
}
.choice .cn, .choice .cd { display: block; }

/* dates (accueil, bandeau vert) */
.dates li { display: grid; grid-template-columns: minmax(9rem, 14rem) 1fr; gap: 1.5rem; padding: 1.7rem 0; border-top: 1px solid var(--ligne-sombre); align-items: baseline; }
.dates li:last-child { border-bottom: 1px solid var(--ligne-sombre); }
.dates-wrap { max-width: 60rem; margin-inline: auto; }
.dates .yr { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(1.9rem, 3.4vw, 3rem); line-height: 1; color: var(--or); }
.dates .yr sup { font-size: .5em; font-style: normal; }
.dates .tx { font-size: 1rem; color: rgba(255,255,255,.78); max-width: 30em; }
@media (max-width: 640px) { .dates li { grid-template-columns: 1fr; gap: .5rem; } }

/* mini-informations (bandeau réserver) */
.mini-infos { display: flex; flex-wrap: wrap; gap: 1.2rem 3rem; margin: 0; }
.mini-infos div { display: grid; gap: .3rem; }
.mini-infos dt { font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--encre-3); }
.on-dark .mini-infos dt { color: var(--or); }
.mini-infos dd { margin: 0; font-family: var(--serif); font-size: 1.3rem; line-height: 1.2; }

/* stations du parcours (page Visiter) */
.station { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gap); row-gap: 1.5rem; padding-block: clamp(2.5rem, 6vw, 5rem); border-top: 1px solid var(--ligne); align-items: start; }
.station .sn { grid-column: 1 / 2; font-family: var(--serif); font-size: 2.6rem; font-weight: 300; line-height: 1; color: var(--cuivre); }
.station .st { grid-column: 2 / 7; }
.station .st h3 { font-family: var(--serif); font-size: clamp(1.7rem, 2.8vw, 2.4rem); line-height: 1.1; margin-bottom: 1rem; }
.station .st p { color: var(--encre-2); max-width: 32em; }
.station .sf { grid-column: 8 / 13; }
.station .sf--s { grid-column: 9 / 12; }
.station:nth-child(even) .st { grid-column: 7 / 12; }
.station:nth-child(even) .sf { grid-column: 2 / 6; grid-row: 1; }
.station:nth-child(even) .sf--s { grid-column: 3 / 6; }
.station:nth-child(even) .sn { grid-row: 1; }
@media (max-width: 899px) { .station > * { grid-column: 1 / -1 !important; grid-row: auto !important; } .station .sf--s { width: 60%; } }

/* formules de visite (page Visiter) : des lignes, pas des colonnes */
.formules { border-top: 1px solid var(--ligne); }
.formules li { display: grid; grid-template-columns: minmax(10rem, 1fr) 2fr minmax(8rem, .8fr); gap: 1rem 2.5rem; padding: 1.8rem 0; border-bottom: 1px solid var(--ligne); align-items: baseline; }
.formules .fn { font-family: var(--serif); font-size: clamp(1.6rem, 2.4vw, 2.1rem); line-height: 1.1; }
.formules .fd { color: var(--encre-2); font-size: .95rem; max-width: 34em; }
.formules .fm { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--encre-3); text-align: right; line-height: 1.9; }
.formules .fm b { display: block; font-family: var(--serif); font-size: 1.5rem; letter-spacing: 0; text-transform: none; font-weight: 400; color: var(--encre); }
@media (max-width: 720px) { .formules li { grid-template-columns: 1fr; gap: .5rem; } .formules .fm { text-align: left; } .formules .fm b { display: inline; margin-right: .6rem; } }
@media (min-width: 900px) { .offset-d { margin-top: 5rem; } }

/* salles (exposition permanente) */
.rooms { border-top: 1px solid var(--ligne); }
.rooms li { display: grid; grid-template-columns: 3.5rem 1fr 1.4fr; gap: 1.5rem; padding: 1.3rem 0; border-bottom: 1px solid var(--ligne); align-items: baseline; }
.rooms .n { font-size: .7rem; letter-spacing: .16em; color: var(--encre-3); }
.rooms .r { font-family: var(--serif); font-size: 1.5rem; line-height: 1.15; }
.rooms .x { font-size: .9rem; color: var(--encre-2); }
@media (max-width: 720px) { .rooms li { grid-template-columns: 3rem 1fr; } .rooms .x { grid-column: 2; } }

/* ---------- 14. Mouvement ------------------------------------------------ */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out); transition-delay: var(--d, 0s); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal="fade"] { transform: none; }
[data-reveal="img"] { transform: none; }
[data-reveal="img"] img { transform: scale(1.06); transition: transform 1.8s var(--ease-out); transition-delay: var(--d, 0s); }
[data-reveal="img"].is-in img { transform: scale(1); }
[data-reveal="clip"] { transform: none; clip-path: inset(0 0 100% 0); transition: clip-path 1.4s var(--ease-out); }
[data-reveal="clip"].is-in { clip-path: inset(0 0 0 0); }
[data-reveal="clip"] img { transform: scale(1.06); transition: transform 2s var(--ease-out); }
[data-reveal="clip"].is-in img { transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; clip-path: none; }
  [data-reveal] img { transform: none; }
  .hero-slide img { transform: none; }
  .band img { transform: none !important; }
}

/* ---------- 15. Impression (billet) -------------------------------------- */
@media print {
  body::before, .site-header, .menu, .site-footer, .book-steps, .book-side, .book-nav, .confirm-actions, .hero-progress, .hero-status { display: none !important; }
  body { background: #fff; }
  .book { padding-top: 0; }
  .ticket { box-shadow: none; border: 1px solid #999; }
}
