/* ============================================================
   AUBERGE DE LA LUNE : nuit, argent, craie et or pâle
   Direction artistique : luxe noir naturel, phases de lune
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  color-scheme: dark;

  /* Palette OKLCH */
  --nuit:    oklch(0.17 0.035 268);   /* bleu nuit profond */
  --nuit-2:  oklch(0.21 0.035 268);   /* surface */
  --nuit-3:  oklch(0.25 0.04 270);    /* surface haute */
  --creme:   oklch(0.93 0.025 85);    /* crème chaude, texte */
  --argent:  oklch(0.76 0.02 255);    /* argent lunaire, texte secondaire */
  --lune:    oklch(0.86 0.08 90);     /* or pâle, accent */
  --lavande: oklch(0.75 0.06 300);    /* accent secondaire discret */
  --erreur:  oklch(0.79 0.12 25);
  --ring:    color-mix(in oklch, var(--lune) 65%, transparent);
  --filet:   1px solid color-mix(in oklch, var(--creme) 13%, transparent);

  /* Typo */
  --police-titres: "Fraunces", Georgia, "Times New Roman", serif;
  --police-texte: "Outfit", system-ui, -apple-system, sans-serif;
  --step--1: clamp(0.83rem, 0.79rem + 0.2vw, 0.94rem);
  --step-0:  clamp(1rem, 0.93rem + 0.35vw, 1.19rem);
  --step-1:  clamp(1.2rem, 1.08rem + 0.6vw, 1.5rem);
  --step-2:  clamp(1.45rem, 1.26rem + 0.95vw, 1.95rem);
  --step-3:  clamp(1.9rem, 1.48rem + 2.1vw, 2.9rem);
  --step-4:  clamp(2.7rem, 1.9rem + 4.2vw, 5.2rem);

  /* Rythme et matière */
  --rayon: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-1: 200ms;
  --dur-2: 450ms;
  --dur-3: 900ms;
}

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

html {
  overflow-x: clip;
  scroll-padding-top: 5.5rem;
  scrollbar-color: color-mix(in oklch, var(--creme) 22%, transparent) transparent;
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  background: var(--nuit);
  color: var(--creme);
  font-family: var(--police-texte);
  font-size: var(--step-0);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

/* Grain photographique : le velours de la nuit */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  pointer-events: none;
  opacity: .04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%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");
}

h1, h2, h3 {
  font-family: var(--police-titres);
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
ul { margin: 0; padding: 0; }
svg { display: block; }
img, svg { max-width: 100%; }

::selection {
  background: var(--lune);
  color: oklch(0.2 0.035 268);
}

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

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: color-mix(in oklch, var(--creme) 20%, transparent);
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
  background: color-mix(in oklch, var(--creme) 32%, transparent);
}

.conteneur {
  width: min(1120px, 100% - clamp(2.4rem, 8vw, 6rem));
  margin-inline: auto;
}

/* Lien d'évitement */
.acces-rapide {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 200;
  padding: .65rem 1.1rem;
  border-radius: 99px;
  background: var(--lune);
  color: oklch(0.2 0.035 268);
  font-weight: 500;
  text-decoration: none;
  transform: translateY(-220%);
  transition: transform var(--dur-1) var(--ease);
}
.acces-rapide:focus-visible { transform: none; }

/* ---------- Liens & boutons ---------- */
.lien {
  color: var(--argent);
  text-decoration: none;
  background: linear-gradient(currentColor, currentColor) no-repeat left 100% / 0% 1.5px;
  transition: background-size var(--dur-2) var(--ease), color var(--dur-1) var(--ease);
  padding-bottom: 2px;
}
.lien:hover, .lien:focus-visible {
  color: var(--creme);
  background-size: 100% 1.5px;
}

.btn {
  font: inherit;
  font-weight: 500;
  letter-spacing: .01em;
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  padding: .8rem 1.6rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  transition:
    transform var(--dur-1) var(--ease),
    box-shadow var(--dur-2) var(--ease),
    background var(--dur-1) var(--ease),
    color var(--dur-1) var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); transition-duration: 80ms; }

.btn-plein {
  background: var(--lune);
  color: oklch(0.2 0.035 268);
  box-shadow:
    inset 0 1px 0 color-mix(in oklch, white 35%, transparent),
    0 2px 18px color-mix(in oklch, var(--lune) 16%, transparent);
}
.btn-plein:hover {
  box-shadow:
    inset 0 1px 0 color-mix(in oklch, white 40%, transparent),
    0 4px 26px color-mix(in oklch, var(--lune) 30%, transparent),
    0 10px 60px color-mix(in oklch, var(--lune) 16%, transparent);
}

.btn-contour {
  background: transparent;
  color: var(--lune);
  box-shadow: inset 0 0 0 1px color-mix(in oklch, var(--lune) 45%, transparent);
}
.btn-contour:hover {
  background: color-mix(in oklch, var(--lune) 12%, transparent);
  box-shadow: inset 0 0 0 1px color-mix(in oklch, var(--lune) 70%, transparent);
}
.btn-contour[aria-pressed="true"] {
  background: var(--lune);
  color: oklch(0.2 0.035 268);
  box-shadow: inset 0 0 0 1px transparent;
}

/* ---------- En-tête ---------- */
.entete {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding-block: .85rem;
  transition:
    transform var(--dur-2) var(--ease),
    background var(--dur-2) var(--ease),
    box-shadow var(--dur-2) var(--ease);
}
.entete.est-cachee { transform: translateY(-100%); }
.entete.est-defilee {
  background: color-mix(in oklch, var(--nuit) 74%, transparent);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  backdrop-filter: blur(14px) saturate(150%);
  box-shadow: 0 1px 0 color-mix(in oklch, var(--creme) 9%, transparent);
}

.entete-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.marque {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--police-titres);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--creme);
  text-decoration: none;
  transition: color var(--dur-1) var(--ease);
}
.marque:hover { color: var(--lune); }
.marque-lune { width: 20px; height: 20px; color: var(--lune); flex: none; }

.nav-principale { display: none; gap: 1.6rem; }
.nav-principale .lien { font-size: .95rem; }

.btn-entete { padding: .55rem 1.2rem; font-size: .92rem; }

@media (min-width: 760px) {
  .nav-principale { display: flex; }
}

/* ---------- Hero : la lune sur l'Authie ---------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.scene {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

/* La scène fond dans la page */
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(transparent, var(--nuit));
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: 6.5rem;
  padding-bottom: clamp(1.6rem, 5vh, 3.5rem);
}

.hero-copie { margin-block: auto; padding-block: 2rem; }

.sur-titre {
  font-size: .8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--lune);
  margin-bottom: 1.1rem;
}

.hero h1 {
  font-size: var(--step-4);
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1.05;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--lune);
}

.hero-lead {
  margin-top: 1.4rem;
  max-width: 34rem;
  font-size: var(--step-1);
  font-weight: 300;
  line-height: 1.55;
  color: var(--argent);
}

/* Entrée orchestrée du hero */
@media (prefers-reduced-motion: no-preference) {
  .hero-copie > *, .hero .resa {
    opacity: 0;
    transform: translateY(22px);
    animation: entree var(--dur-3) var(--ease) both;
  }
  .hero-copie > *:nth-child(1) { animation-delay: .1s; }
  .hero-copie > *:nth-child(2) { animation-delay: .22s; }
  .hero-copie > *:nth-child(3) { animation-delay: .34s; }
  .hero .resa { animation-delay: .5s; }
}
@keyframes entree { to { opacity: 1; transform: none; } }

/* Scintillement très lent : les 0 % et 100 % héritent de l'opacité
   de base de chaque étoile, seule la mi-course descend */
.etoile { animation: scintille var(--tw, 8s) ease-in-out var(--td, 0s) infinite; }
@keyframes scintille { 50% { opacity: .12; } }

.ride { animation: ondule var(--tw, 8s) ease-in-out var(--td, 0s) infinite; }
@keyframes ondule { 50% { opacity: .05; } }

/* ---------- Bloc réservation ---------- */
.verre {
  background: color-mix(in oklch, var(--nuit-2) 58%, transparent);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  border: var(--filet);
  border-radius: var(--rayon);
  box-shadow:
    inset 0 1px 0 color-mix(in oklch, white 14%, transparent),
    0 18px 50px oklch(0 0 0 / .3);
}

.resa { padding: 1.3rem 1.4rem 1.25rem; }

.resa-entete {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: .5rem 1rem;
  margin-bottom: 1rem;
}

.resa-titre {
  font-family: var(--police-titres);
  font-size: 1.4rem;
  color: var(--creme);
}

.resa-chip { font-size: .85rem; color: var(--argent); }
.resa-chip strong { color: var(--lune); font-weight: 500; }
.chip-retirer {
  font: inherit;
  font-size: .8rem;
  background: none;
  border: 0;
  padding: 0;
  margin-left: .35rem;
  color: var(--argent);
  text-decoration: underline;
  cursor: pointer;
  transition: color var(--dur-1) var(--ease);
}
.chip-retirer:hover { color: var(--creme); }

.champs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
  align-items: end;
}
.champs .btn { grid-column: 1 / -1; min-height: 3rem; }

@media (min-width: 840px) {
  .champs { grid-template-columns: 1.1fr 1.1fr .9fr auto; }
  .champs .btn { grid-column: auto; padding-inline: 2rem; }
}

.champ label {
  display: block;
  font-size: .72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--argent);
  margin-bottom: .45rem;
}

.champ input,
.champ select {
  width: 100%;
  min-height: 3rem;
  font: inherit;
  font-size: 1rem;
  color: var(--creme);
  background: color-mix(in oklch, var(--creme) 7%, transparent);
  border: 1px solid color-mix(in oklch, var(--creme) 16%, transparent);
  border-radius: 12px;
  padding: .6rem .85rem;
  transition: border-color var(--dur-1) var(--ease), background var(--dur-1) var(--ease);
}
.champ input:hover,
.champ select:hover {
  border-color: color-mix(in oklch, var(--creme) 30%, transparent);
}
.champ input:focus-visible,
.champ select:focus-visible {
  border-color: color-mix(in oklch, var(--lune) 65%, transparent);
  outline-offset: 2px;
}

.champ select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.3rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 L6 6.5 L11 1.5' fill='none' stroke='%23c3c9dd' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .9rem center;
}

.resa-note {
  margin-top: .85rem;
  font-size: .8rem;
  color: color-mix(in oklch, var(--argent) 85%, transparent);
}

.form-err {
  margin-top: .7rem;
  font-size: .88rem;
  color: var(--erreur);
}

/* ---------- Sections ---------- */
.section { padding-block: clamp(4.5rem, 12vh, 7.5rem); }

.section .sur-titre,
.section h2,
.section-lead,
.phases { text-align: center; }

.section h2 {
  font-size: var(--step-3);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.section-lead {
  max-width: 40rem;
  margin: 1.2rem auto 0;
  color: var(--argent);
  font-weight: 300;
}

/* Séparateur : les phases de la lune */
.phases {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.15rem;
  margin-bottom: 2.2rem;
  color: color-mix(in oklch, var(--lune) 72%, transparent);
}
.phases svg { width: 15px; height: 15px; }
.phases svg:nth-child(3) { width: 19px; height: 19px; }

/* Puces en croissant de lune */
.lune-liste { list-style: none; }
.lune-liste li {
  position: relative;
  padding-left: 2rem;
  margin-top: 1.05rem;
  color: var(--argent);
  font-weight: 300;
  line-height: 1.65;
}
.lune-liste li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .28em;
  width: 1.02em;
  height: 1.02em;
  background: var(--lune);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M12.6 3.4 A7 7 0 1 0 12.6 16.6 A8.8 8.8 0 0 1 12.6 3.4 Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M12.6 3.4 A7 7 0 1 0 12.6 16.6 A8.8 8.8 0 0 1 12.6 3.4 Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.lune-liste a { font-weight: 400; }

/* ---------- L'auberge ---------- */
.auberge-grille {
  margin-top: 3rem;
  display: grid;
  gap: 2.6rem;
  text-align: left;
}
.auberge-texte p {
  color: color-mix(in oklch, var(--creme) 82%, var(--argent));
  font-weight: 300;
  line-height: 1.8;
}
.auberge-texte p + p { margin-top: 1.2rem; }

@media (min-width: 900px) {
  .auberge-grille { grid-template-columns: 1.1fr .9fr; gap: 4rem; }
}

/* ---------- Les chambres ---------- */
.chambres-grille {
  margin-top: 3.2rem;
  display: grid;
  gap: 1.6rem;
}
@media (min-width: 940px) {
  .chambres-grille { grid-template-columns: repeat(3, 1fr); }
}

.chambre {
  display: flex;
  flex-direction: column;
  background: var(--nuit-2);
  border: var(--filet);
  border-radius: 20px;
  overflow: clip;
  transition:
    transform var(--dur-2) var(--ease),
    box-shadow var(--dur-2) var(--ease),
    border-color var(--dur-2) var(--ease);
}
.chambre:hover {
  transform: translateY(-5px);
  border-color: color-mix(in oklch, var(--lune) 30%, transparent);
  box-shadow: 0 28px 60px -32px oklch(0 0 0 / .8);
}

.chambre-scene svg {
  width: 100%;
  height: auto;
  transform-origin: 50% 100%;
  transition: transform 1.1s var(--ease);
}
.chambre:hover .chambre-scene svg { transform: scale(1.045); }

.chambre-corps {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding: 1.5rem 1.5rem 1.7rem;
  text-align: left;
}

.chambre-entete {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.chambre-entete h3 {
  font-size: var(--step-2);
  font-weight: 500;
}
.phase-icone svg { width: 22px; height: 22px; color: var(--lune); }

.chambre-meta {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  color: var(--argent);
  font-size: var(--step--1);
}
.chambre-meta strong {
  color: var(--creme);
  font-weight: 500;
  font-size: 1.15em;
}
.chambre-meta .point { opacity: .5; }

.chambre-desc {
  color: var(--argent);
  font-weight: 300;
  line-height: 1.65;
}

.chambre .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* ---------- Livre d'or ---------- */
.avis-grille {
  margin-top: 3.2rem;
  display: grid;
  gap: 1.6rem;
}
@media (min-width: 940px) {
  .avis-grille { grid-template-columns: repeat(3, 1fr); }
}

.avis-carte {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.8rem;
  border: var(--filet);
  border-radius: 20px;
  background: color-mix(in oklch, var(--nuit-2) 45%, transparent);
  text-align: left;
  transition: border-color var(--dur-2) var(--ease), transform var(--dur-2) var(--ease);
}
.avis-carte:hover {
  border-color: color-mix(in oklch, var(--lune) 28%, transparent);
  transform: translateY(-3px);
}

.avis-note { display: flex; gap: .35rem; color: var(--lune); }
.avis-note svg { width: 13px; height: 13px; }

.avis-carte blockquote { margin: 0; }
.avis-carte blockquote p {
  font-family: var(--police-titres);
  font-size: var(--step-1);
  font-weight: 300;
  line-height: 1.45;
  color: var(--creme);
}

.avis-carte figcaption {
  margin-top: auto;
  font-size: var(--step--1);
  color: var(--creme);
}
.avis-carte figcaption span {
  display: block;
  margin-top: .15rem;
  color: var(--argent);
  opacity: .85;
}

/* ---------- Venir ---------- */
.acces-grille {
  margin-top: 3rem;
  display: grid;
  gap: 2.6rem;
  align-items: center;
  text-align: left;
}
@media (min-width: 900px) {
  .acces-grille { grid-template-columns: .9fr 1.1fr; gap: 4rem; }
}

.acces-carte {
  margin: 0;
  padding: 1.6rem 1.6rem 1.2rem;
  border: var(--filet);
  border-radius: 20px;
  background: color-mix(in oklch, var(--nuit-2) 45%, transparent);
}
.carte { width: 100%; height: auto; }
.carte text {
  font-family: var(--police-texte);
  font-size: 13px;
  font-weight: 500;
  fill: var(--argent);
}
.carte .carte-ici { fill: var(--creme); }
.acces-carte figcaption {
  margin-top: .9rem;
  text-align: center;
  font-family: var(--police-titres);
  font-style: italic;
  font-size: .95rem;
  color: var(--argent);
}

/* ---------- Pied de page ---------- */
.pied {
  margin-top: 1.5rem;
  padding-block: 3rem 2.4rem;
  border-top: var(--filet);
}
.pied-haut {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem 2rem;
}
.marque-pied {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--police-titres);
  font-size: 1.15rem;
  font-weight: 500;
}
.pied-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.6rem;
}
.pied-nav .lien { font-size: .92rem; }

.filet {
  border: 0;
  height: 1px;
  margin-block: 1.7rem;
  background: linear-gradient(90deg,
    transparent,
    color-mix(in oklch, var(--creme) 22%, transparent),
    transparent);
}

.pied-demo { font-size: var(--step--1); color: var(--argent); }
.pied-demo a {
  color: var(--lune);
  text-decoration: none;
  background: linear-gradient(currentColor, currentColor) no-repeat left 100% / 100% 1px;
  padding-bottom: 1px;
  transition: color var(--dur-1) var(--ease);
}
.pied-demo a:hover { color: var(--creme); }

.pied-copy {
  margin-top: .55rem;
  font-size: .8rem;
  color: color-mix(in oklch, var(--argent) 70%, transparent);
}

/* ---------- Barre de réservation compacte ---------- */
.resa-barre {
  position: fixed;
  inset: auto 0 0;
  z-index: 60;
  padding-block: .7rem;
  background: color-mix(in oklch, var(--nuit) 84%, transparent);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  backdrop-filter: blur(14px) saturate(150%);
  border-top: 1px solid color-mix(in oklch, var(--creme) 11%, transparent);
  transform: translateY(105%);
  transition: transform var(--dur-2) var(--ease);
}
body.barre-visible .resa-barre { transform: none; }
body.barre-visible .pied { padding-bottom: 9.5rem; }

.resa-barre .resa-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem .6rem;
  align-items: end;
}
.resa-barre .champ label {
  font-size: .62rem;
  margin-bottom: .3rem;
}
.resa-barre .champ input,
.resa-barre .champ select {
  min-height: 2.7rem;
  padding: .45rem .7rem;
}
.resa-barre .btn { min-height: 2.7rem; padding-block: .5rem; }
.resa-barre .form-err { grid-column: 1 / -1; margin-top: 0; font-size: .82rem; }

@media (min-width: 760px) {
  .resa-barre .resa-form {
    grid-template-columns: 1fr 1fr auto auto;
    gap: .8rem;
  }
  .resa-barre .champ-voyageurs select { width: 5.4rem; }
  .resa-barre .btn { padding-inline: 1.8rem; }
}

/* ---------- Dialogue de confirmation ---------- */
.dialogue {
  margin: auto;
  width: min(92vw, 27rem);
  border: 1px solid color-mix(in oklch, var(--creme) 15%, transparent);
  border-radius: 22px;
  padding: 2.1rem 1.9rem 1.9rem;
  background: linear-gradient(180deg, var(--nuit-3), var(--nuit-2));
  color: var(--creme);
  text-align: center;
  box-shadow: 0 40px 120px oklch(0 0 0 / .55);
}
.dialogue::backdrop {
  background: oklch(0.05 0.02 270 / .72);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
@media (prefers-reduced-motion: no-preference) {
  .dialogue[open] { animation: dialogue-in var(--dur-2) var(--ease); }
}
@keyframes dialogue-in {
  from { opacity: 0; transform: translateY(16px) scale(.98); }
}

.dialogue-lune svg { width: 68px; height: 68px; margin-inline: auto; }

.dialogue h2 {
  font-size: 1.65rem;
  margin: .9rem 0 1.3rem;
}

.dialogue-recap {
  margin: 0 0 1.3rem;
  display: grid;
  gap: .6rem;
  text-align: left;
}
.dialogue-recap div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid color-mix(in oklch, var(--creme) 9%, transparent);
}
.dialogue-recap dt {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--argent);
  flex: none;
}
.dialogue-recap dd {
  margin: 0;
  font-weight: 500;
  text-align: right;
}

.dialogue-demo {
  font-family: var(--police-titres);
  font-style: italic;
  font-size: .98rem;
  line-height: 1.55;
  color: var(--argent);
  margin-bottom: 1.5rem;
}

.dialogue .btn { width: 100%; }

/* ---------- Reveals au scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .7s var(--ease),
    transform .7s var(--ease);
  transition-delay: calc(var(--i, 0) * 90ms);
}
[data-reveal].visible { opacity: 1; transform: none; }

[data-reveal-group] > * {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .7s var(--ease),
    transform .7s var(--ease);
  transition-delay: calc(var(--i, 0) * 90ms);
}
[data-reveal-group].visible > * { opacity: 1; transform: none; }

/* ---------- Reduced motion : tout reste lisible, rien ne bouge ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .etoile, .ride { animation: none !important; }
  [data-reveal], [data-reveal-group] > * {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-copie > *, .hero .resa {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}
