/* L'atelier des muses — Hay Riad, Rabat
   Kit designer de la cliente : 5 couleurs, Playfair Display + Lato, motif de courbes.
   Aucune autre teinte, aucune autre police.

   Geste signature : le logo oppose un romain léger ("L'atelier des") à un gras très
   contrasté ("muses."). Chaque titre du site rejoue ce contraste avec un mot en italique,
   dans la même couleur, jamais en couleur d'accent. */

:root {
  --ivoire: #f9f5ef;
  --beige: #eadacd;
  --sable: #d4b9a7;
  --taupe: #a88773;
  --brun: #2e2a26;

  --rule: rgba(46, 42, 38, .14);
  --rule-soft: rgba(46, 42, 38, .08);
  --texte: #2e2a26;
  --texte-doux: rgba(46, 42, 38, .66);

  --radius: 2px;
  --page: 1240px;
  --gutter: clamp(20px, 5vw, 60px);
  --section: clamp(64px, 7.4vw, 108px);

  --display: "Playfair Display", Georgia, serif;
  --body: "Lato", "Helvetica Neue", Arial, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivoire);
  color: var(--texte);
  font-family: var(--body);
  font-size: 16.5px;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.016em;
  margin: 0;
}
h1 em, h2 em, h3 em { font-style: italic; font-weight: 500; }

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--sable); color: var(--brun); }
:focus-visible { outline: 2px solid var(--taupe); outline-offset: 3px; }

.wrap { width: 100%; max-width: var(--page); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--large { max-width: 1440px; }
.sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
      clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------------------------------------------------------------- éléments */

.eyebrow {
  font-size: 10.5px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 700;
  margin: 0 0 16px;
}

.lede { font-size: clamp(17px, 1.7vw, 19.5px); line-height: 1.62; color: var(--texte-doux); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 32px;
  border: 1px solid var(--brun);
  border-radius: 999px;
  background: var(--brun);
  color: var(--ivoire);
  font-family: var(--body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { background: var(--taupe); border-color: var(--taupe); color: var(--ivoire); }
.btn--ghost { background: transparent; color: var(--brun); }
.btn--ghost:hover { background: var(--brun); border-color: var(--brun); color: var(--ivoire); }
.btn--light { background: var(--ivoire); border-color: var(--ivoire); color: var(--brun); }
.btn--light:hover { background: var(--sable); border-color: var(--sable); color: var(--brun); }
.btn--outline-light { background: transparent; border-color: rgba(249, 245, 239, .55); color: var(--ivoire); }
.btn--outline-light:hover { background: var(--ivoire); border-color: var(--ivoire); color: var(--brun); }
.btn[hidden], [hidden] { display: none !important; }

/* Le motif de courbes du kit, en séparateur de sections */
.curves { display: block; width: 100%; height: clamp(40px, 5vw, 78px); }
.curves path { fill: none; stroke: var(--sable); stroke-width: 1.1; opacity: .65; }
.curves path.fill { fill: var(--beige); stroke: none; opacity: .4; }

/* ------------------------------------------------------------ navigation */

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px var(--gutter);
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(249, 245, 239, .94), rgba(249, 245, 239, 0));
  pointer-events: none;
  transition: opacity .3s ease;
}
.nav.is-stuck { background: var(--ivoire); box-shadow: 0 1px 0 var(--rule-soft); padding-block: 11px; }
.nav.is-stuck::before { opacity: 0; }

.nav__logo { position: relative; z-index: 3; display: inline-flex; justify-self: start; }
.nav__logo img { width: clamp(128px, 13vw, 164px); height: auto; transition: width .3s ease; }
.nav.is-stuck .nav__logo img { width: clamp(114px, 11vw, 140px); }

.nav__links { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 32px); justify-self: center; }
.nav__links a {
  position: relative;
  font-family: var(--display);
  font-size: 15.5px;
  text-decoration: none;
  color: var(--brun);
  padding: 6px 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--taupe);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }
.nav__links a.active { color: var(--taupe); }

.nav__cta { justify-self: end; position: relative; z-index: 3; display: flex; align-items: center; }
.nav__cta .btn { min-height: 44px; padding: 0 24px; font-size: 10.5px; }
.nav__links .btn { display: none; }

.nav__burger {
  display: none;
  position: relative;
  z-index: 3;
  width: 46px; height: 46px;
  padding: 0;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: rgba(249, 245, 239, .7);
  cursor: pointer;
}
.nav__burger span {
  position: absolute;
  left: 13px;
  width: 20px; height: 1.4px;
  background: var(--brun);
  transition: transform .28s ease, opacity .2s ease;
}
.nav__burger span:nth-child(1) { top: 18px; }
.nav__burger span:nth-child(2) { top: 23px; }
.nav__burger span:nth-child(3) { top: 28px; }

/* ------------------------------------------------------------------- hero */

.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  animation: kenburns 30s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to   { transform: scale(1.1) translate3d(-1.4%, -1%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__media img { animation: none; }
  html { scroll-behavior: auto; }
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(46, 42, 38, .78) 0%, rgba(46, 42, 38, .42) 30%, rgba(46, 42, 38, .06) 62%),
    linear-gradient(to right, rgba(46, 42, 38, .42) 0%, rgba(46, 42, 38, 0) 54%);
}

.hero__inner { position: relative; width: 100%; padding-block: clamp(54px, 9vw, 104px); }
.hero__eyebrow { color: rgba(249, 245, 239, .74); margin-bottom: 20px; }
.hero h1 {
  color: var(--ivoire);
  font-size: clamp(40px, 6.6vw, 84px);
  max-width: 14ch;
  margin-bottom: 24px;
}
.hero__sub { color: rgba(249, 245, 239, .86); font-size: clamp(16px, 1.7vw, 18.5px); max-width: 46ch; margin-bottom: 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ------------------------------------------------------------- bande faits */

.faits { background: var(--brun); color: var(--ivoire); }
.faits .wrap { padding-inline: 0; }
.faits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(249, 245, 239, .16);
}
.faits__cell { background: var(--brun); padding: clamp(22px, 2.6vw, 30px) clamp(18px, 2.4vw, 30px); }
.faits__cell dt {
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--sable); font-weight: 700; margin-bottom: 8px;
}
.faits__cell dd { margin: 0; font-family: var(--display); font-size: clamp(18px, 1.9vw, 22px); line-height: 1.24; }
.faits__cell dd span {
  display: block;
  margin-top: 7px;
  font-family: var(--body);
  font-size: 13.5px;
  color: rgba(249, 245, 239, .62);
  line-height: 1.52;
}

/* ----------------------------------------------------------------- section */

.section { padding-block: var(--section); }
.section--beige { background: var(--beige); }
.section--brun { background: var(--brun); color: var(--ivoire); }
.section--brun .eyebrow { color: var(--sable); }
.section--brun .lede { color: rgba(249, 245, 239, .74); }
.section--tight { padding-block: clamp(44px, 5vw, 72px); }

.section__head { max-width: 60ch; margin-bottom: clamp(34px, 4.4vw, 56px); }
.section__head h2 { font-size: clamp(30px, 4vw, 48px); margin-bottom: 16px; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .orn { margin-inline: auto; }

/* petit ornement du kit, une courbe, au-dessus du titre */
.orn { display: block; width: 46px; height: 12px; margin-bottom: 16px; }
.orn path { fill: none; stroke: var(--taupe); stroke-width: 1.2; }
.section--brun .orn path { stroke: var(--sable); }

/* ------------------------------------------------------------- split lieu */

.split { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(30px, 4.6vw, 68px); align-items: center; }
.split--flip .split__media { order: 2; }
.split__media img { width: 100%; border-radius: var(--radius); }
.split__body h2 { font-size: clamp(28px, 3.6vw, 44px); margin-bottom: 18px; }

.pointlist { list-style: none; margin: 24px 0 0; padding: 0; border-top: 1px solid var(--rule); }
.pointlist li { display: grid; grid-template-columns: 34% 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--rule); }
.pointlist strong { font-family: var(--display); font-weight: 500; font-size: 16.5px; }
.pointlist span { color: var(--texte-doux); font-size: 15px; }
.section--brun .pointlist, .section--brun .pointlist li { border-color: rgba(249, 245, 239, .18); }
.section--brun .pointlist span { color: rgba(249, 245, 239, .7); }

/* ----------------------------------------------------- index des métiers */

.metiers { border-top: 1px solid var(--rule); }
.section--beige .metiers { border-color: rgba(46, 42, 38, .18); }

.metier {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 2.2vw, 28px);
  padding: clamp(18px, 2.2vw, 26px) 4px;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
  transition: padding-left .3s ease;
}
.section--beige .metier { border-color: rgba(46, 42, 38, .18); }
.metier:hover { padding-left: 16px; }

.metier__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: 999px;
  background: var(--beige);
  flex: 0 0 auto;
}
.section--beige .metier__ico { background: var(--ivoire); }
.metier__ico svg { width: 25px; height: 25px; display: block; }
.metier__ico svg * { fill: none; stroke: var(--taupe); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }

.metier__nom { font-family: var(--display); font-size: clamp(20px, 2.2vw, 26px); line-height: 1.18; }
.metier__note { display: block; font-family: var(--body); font-size: 14.5px; color: var(--texte-doux); margin-top: 6px; line-height: 1.52; max-width: 62ch; }
.metier__voir {
  font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 700; color: var(--taupe); white-space: nowrap;
  display: inline-flex; align-items: center; gap: 8px;
}
.metier__voir i { font-style: normal; transition: transform .3s ease; }
.metier:hover .metier__voir i { transform: translateX(6px); }

/* --------------------------------------------------- bande photo, pleine hauteur

   Leurs photos sont des portraits d'environ 900 px de large : étirées dans une bande
   panoramique elles devenaient floues. La photo garde donc son ratio et occupe une
   colonne entière qui file jusqu'au bord de la page. */

.bandphoto { background: var(--brun); color: var(--ivoire); overflow: hidden; }
.bandphoto__inner {
  max-width: 1500px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr minmax(320px, .78fr);
  align-items: stretch;
  gap: clamp(28px, 5vw, 76px);
}
.bandphoto__texte { padding: clamp(52px, 6.6vw, 96px) 0 clamp(52px, 6.6vw, 96px) var(--gutter); align-self: center; max-width: 54ch; }
.bandphoto__media { position: relative; min-height: clamp(340px, 42vw, 540px); }
.bandphoto__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }
.bandphoto h2 { font-size: clamp(28px, 3.6vw, 44px); margin-bottom: 16px; color: var(--ivoire); }
.bandphoto p { color: rgba(249, 245, 239, .78); margin-bottom: 26px; }
.bandphoto .eyebrow { color: var(--sable); }
.bandphoto .orn path { stroke: var(--sable); }

/* ----------------------------------------------------------- bloc hammam */

.formules { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(249, 245, 239, .18); border-block: 1px solid rgba(249, 245, 239, .18); }
.formules li { background: var(--brun); padding: clamp(24px, 3vw, 34px) clamp(20px, 2.4vw, 28px); display: flex; flex-direction: column; }
.formules__nom { font-family: var(--display); font-size: clamp(20px, 2.2vw, 26px); line-height: 1.2; margin-bottom: 4px; }
.formules__duree { font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--sable); font-weight: 700; margin-bottom: 14px; }
.formules__detail { margin: 0 0 22px; font-size: 14.5px; line-height: 1.6; color: rgba(249, 245, 239, .7); }
.formules__prix { margin-top: auto; font-family: var(--display); font-size: clamp(24px, 2.6vw, 30px); color: var(--sable); }

/* ------------------------------------------------------------------- avis */

.avis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule-soft); border: 1px solid var(--rule-soft); }
.avis blockquote {
  margin: 0;
  padding: clamp(24px, 2.8vw, 34px);
  background: var(--ivoire);
  display: flex;
  flex-direction: column;
}
.avis blockquote::before {
  content: "”";
  font-family: var(--display);
  font-size: 44px;
  line-height: .6;
  color: var(--sable);
  margin-bottom: 14px;
}
.avis p { font-family: var(--display); font-size: clamp(16px, 1.6vw, 18px); line-height: 1.5; font-style: italic; }
.avis cite {
  margin-top: auto;
  padding-top: 18px;
  font-style: normal;
  font-size: 10.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 700;
}

/* --------------------------------------------------------------- galerie */

.mosaique { columns: 3; column-gap: 12px; }
.mosaique--4 { columns: 4; }
.mosaique figure { break-inside: avoid; margin: 0 0 12px; border-radius: var(--radius); overflow: hidden; background: var(--beige); position: relative; }
.mosaique img { width: 100%; transition: transform .7s cubic-bezier(.2, .7, .3, 1); }
.mosaique figure:hover img { transform: scale(1.045); }

.mosaique a { display: block; position: relative; text-decoration: none; }
.mosaique a::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(46, 42, 38, .55), rgba(46, 42, 38, 0) 46%);
  opacity: 0; transition: opacity .35s ease;
}
.mosaique a::after {
  content: "Voir sur Instagram";
  position: absolute; z-index: 2; left: 16px; bottom: 14px;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase; font-weight: 700;
  color: var(--ivoire); opacity: 0; transform: translateY(6px);
  transition: opacity .35s ease, transform .35s ease;
}
.mosaique a:hover::before, .mosaique a:focus-visible::before { opacity: 1; }
.mosaique a:hover::after, .mosaique a:focus-visible::after { opacity: 1; transform: none; }

/* -------------------------------------------------- tête de page interne */

.tete {
  background: var(--beige);
  padding-block: calc(clamp(72px, 8vw, 100px) + clamp(28px, 3.6vw, 48px)) clamp(34px, 4.4vw, 58px);
}
.tete h1 { font-size: clamp(33px, 5vw, 60px); margin-bottom: 14px; max-width: 18ch; }
.tete .lede { max-width: 56ch; }

.sommaire { display: flex; flex-wrap: wrap; gap: 8px; }
.sommaire a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 13.5px;
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.sommaire a:hover { background: var(--brun); border-color: var(--brun); color: var(--ivoire); }

/* --------------------------------------------------------------- tarifs */

.groupe__tete { display: flex; align-items: center; gap: 18px; margin-bottom: 10px; }
.groupe__tete h2 { font-size: clamp(26px, 3.2vw, 38px); }
.section--beige .groupe__tete .metier__ico { background: var(--ivoire); }
.groupe__note { color: var(--texte-doux); font-size: 15.5px; margin: 0 0 24px; max-width: 62ch; }
.groupe__sous {
  font-size: 10.5px; letter-spacing: .28em; text-transform: uppercase;
  font-weight: 700; color: var(--taupe); margin: 32px 0 6px;
}

.tarifs { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: clamp(30px, 4vw, 60px); }
.tarifs li {
  break-inside: avoid;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 6px 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule-soft);
}
.section--beige .tarifs li { border-color: rgba(46, 42, 38, .14); }
.tarifs__nom { font-size: 16px; }
.tarifs__prix { font-family: var(--display); font-size: 17px; white-space: nowrap; }
.tarifs__from { font-family: var(--body); font-size: 12px; color: var(--texte-doux); letter-spacing: .04em; }
.tarifs__detail { grid-column: 1 / -1; margin: 4px 0 0; font-size: 13.5px; line-height: 1.55; color: var(--texte-doux); }
.tarifs--une { columns: 1; }

.groupe__action { margin-top: 28px; }
.note-ast { font-size: 13.5px; color: var(--texte-doux); font-style: italic; margin-top: 18px; }

/* -------------------------------------------------------------- contact */

.coord { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule-soft); border: 1px solid var(--rule-soft); }
.coord__bloc { background: var(--ivoire); padding: clamp(24px, 3vw, 34px); }
.coord__bloc h3 { font-size: 10.5px; letter-spacing: .28em; text-transform: uppercase; font-family: var(--body); font-weight: 700; color: var(--taupe); margin-bottom: 12px; }
.coord__bloc p, .coord__bloc a { font-family: var(--display); font-size: clamp(18px, 1.9vw, 21px); line-height: 1.42; text-decoration: none; margin: 0; }
.coord__bloc a:hover { color: var(--taupe); }

.horaires-grille { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(30px, 5vw, 70px); }
.horaires { list-style: none; margin: 0; padding: 0; }
.horaires li { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--rule); font-size: 15.5px; }
.horaires li span:first-child { color: var(--texte-doux); }
.horaires li.ferme span:last-child { color: var(--taupe); }

.carte-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--rule); }
.carte-map iframe { display: block; width: 100%; height: 400px; border: 0; }

/* ------------------------------------------------------------ bande CTA */

.bande { background: var(--brun); color: var(--ivoire); text-align: center; }
.bande h2 { font-size: clamp(28px, 3.8vw, 46px); margin-bottom: 16px; }
.bande p { color: rgba(249, 245, 239, .74); max-width: 52ch; margin-inline: auto; margin-bottom: 28px; }
.bande__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.bande .orn { margin-inline: auto; }

/* --------------------------------------------------------------- footer */

.footer { background: var(--brun); color: rgba(249, 245, 239, .72); padding-block: clamp(48px, 5.6vw, 74px) 28px; border-top: 1px solid rgba(249, 245, 239, .12); }
.footer__top { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: clamp(28px, 4vw, 56px); padding-bottom: 38px; border-bottom: 1px solid rgba(249, 245, 239, .16); }
.footer__marque img { width: clamp(172px, 19vw, 216px); }
.footer__marque p { margin-top: 18px; font-size: 14.5px; max-width: 34ch; line-height: 1.6; }
.footer h4 { font-family: var(--body); font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--sable); font-weight: 700; margin-bottom: 15px; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 9px; font-size: 14.5px; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--ivoire); }
.footer__bas { display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between; align-items: center; padding-top: 22px; font-size: 11.5px; }
.footer__credit {
  text-transform: uppercase;
  letter-spacing: .2em;
  text-decoration: none;
  font-size: 10px;
  color: rgba(249, 245, 239, .54);
}
.footer__credit:hover { color: var(--sable); }

/* --------------------------------------------- modale de réservation .rsv */

.rsv {
  position: fixed; inset: 0; z-index: 140;
  display: flex; align-items: flex-start; justify-content: center;
  padding: 24px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.rsv[hidden] { display: none !important; }
.rsv__backdrop { position: fixed; inset: 0; background: rgba(46, 42, 38, .64); backdrop-filter: blur(3px); }

.rsv__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  grid-template-rows: minmax(0, 1fr);
  width: min(960px, calc(100vw - 40px));
  margin: auto;
  max-height: calc(100vh - 48px);
  max-height: calc(100dvh - 48px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ivoire);
  box-shadow: 0 30px 80px rgba(46, 42, 38, .34);
}

.rsv__aside {
  min-height: 0;
  overflow-y: auto;
  padding: clamp(26px, 3vw, 38px);
  background: var(--brun);
  color: var(--ivoire);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rsv__aside img { width: 146px; margin-bottom: 2px; }
.rsv__aside h2 { font-size: clamp(23px, 2.4vw, 29px); color: var(--ivoire); }
.rsv__aside p { font-size: 14px; color: rgba(249, 245, 239, .7); line-height: 1.6; }
.rsv__steps { display: flex; gap: 8px; margin-top: auto; }
.rsv__steps i { display: block; width: 32px; height: 2px; background: rgba(249, 245, 239, .26); }
.rsv__steps i.on { background: var(--sable); }

.rsv__body { display: flex; flex-direction: column; overflow-y: auto; min-height: 0; -webkit-overflow-scrolling: touch; }
.rsv__body > * { flex-shrink: 0; }

.rsv__close {
  position: absolute; top: 14px; right: 14px; z-index: 4;
  width: 40px; height: 40px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--ivoire);
  color: var(--brun);
  font-size: 18px; line-height: 1;
  cursor: pointer;
}
.rsv__close:hover { background: var(--beige); }

.rsv__step { padding: clamp(22px, 2.8vw, 34px); }
.rsv__step > h3 { font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; font-family: var(--body); font-weight: 700; color: var(--taupe); margin-bottom: 8px; }
.rsv__hint { font-size: 14px; color: var(--texte-doux); margin-bottom: 18px; }

.rsv__packs { display: grid; gap: 7px; max-height: 320px; overflow-y: auto; padding-right: 4px; }
.rsv__groupe {
  margin: 14px 0 2px;
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--taupe);
}
.rsv__groupe:first-child { margin-top: 0; }
.rsv__packs::-webkit-scrollbar { width: 6px; }
.rsv__packs::-webkit-scrollbar-thumb { background: var(--sable); border-radius: 999px; }

.rsv__pack {
  display: grid;
  grid-template-columns: 20px 1fr auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: transparent;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.rsv__pack:hover { border-color: var(--taupe); }
.rsv__pack[aria-pressed="true"] { border-color: var(--brun); background: var(--beige); }
.rsv__tick {
  width: 19px; height: 19px;
  border: 1px solid var(--rule);
  border-radius: 3px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; line-height: 1; color: transparent;
  background: var(--ivoire);
}
.rsv__pack[aria-pressed="true"] .rsv__tick { background: var(--brun); border-color: var(--brun); color: var(--ivoire); }
.rsv__pack b { font-weight: 400; font-size: 15px; }
.rsv__pack small { display: block; color: var(--texte-doux); font-size: 12.5px; margin-top: 2px; line-height: 1.45; }
.rsv__pack i { font-style: normal; font-family: var(--display); font-size: 15.5px; white-space: nowrap; }

.rsv__compte { margin: 15px 0 0; font-size: 13px; color: var(--texte-doux); }

.rsv__field { margin-bottom: 16px; }
.rsv__field label { display: block; font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--taupe); font-weight: 700; margin-bottom: 8px; }
.rsv__field input[type="date"] {
  -webkit-appearance: none; appearance: none;
  width: 100%;
  min-height: 48px;
  line-height: 1.3;
  padding: 0 14px;
  font-family: var(--body);
  font-size: 16px;
  color: var(--texte);
  background: var(--beige);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}
.rsv__field input[type="date"]::-webkit-date-and-time-value { text-align: left; margin: 0; }
.rsv__field input[type="date"]::-webkit-calendar-picker-indicator { opacity: .55; cursor: pointer; }

.rsv__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.rsv__chip {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: transparent;
  font: inherit;
  font-size: 14.5px;
  color: inherit;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.rsv__chip:hover { border-color: var(--taupe); }
.rsv__chip[aria-pressed="true"] { background: var(--brun); border-color: var(--brun); color: var(--ivoire); }

.rsv__recap { margin-top: 18px; padding: 16px 18px; background: var(--beige); border-radius: var(--radius); }
.rsv__recap dl { display: grid; grid-template-columns: auto 1fr; gap: 7px 18px; margin: 0; font-size: 14px; }
.rsv__recap dt { color: var(--texte-doux); }
.rsv__recap dd { margin: 0; }
.rsv__recap ul { list-style: none; margin: 0; padding: 0; }

.rsv__total { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; padding: 16px 0 0; margin-top: 16px; border-top: 1px solid var(--rule); }
.rsv__total span { font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--taupe); font-weight: 700; }
.rsv__total strong { font-family: var(--display); font-weight: 400; font-size: clamp(21px, 2.3vw, 26px); }

.rsv__actions { display: flex; flex-wrap: wrap; gap: 10px; padding: 0 clamp(22px, 2.8vw, 34px) clamp(22px, 2.8vw, 34px); }
.rsv__actions .btn { flex: 1 1 200px; min-width: 0; }
.rsv__note { padding: 0 clamp(22px, 2.8vw, 34px) clamp(22px, 2.8vw, 34px); font-size: 12.5px; color: var(--texte-doux); line-height: 1.55; }

@media (max-width: 1020px) {
  .rsv__card { grid-template-columns: 1fr; grid-template-rows: auto minmax(0, 1fr);
               max-height: calc(100vh - 32px); max-height: calc(100dvh - 32px); }
  .rsv__aside { gap: 12px; }
  .rsv__aside p { display: none; }
  .rsv__aside img { width: 118px; }
}
@media (max-width: 680px) {
  .rsv { padding: 0; }
  .rsv__card { grid-template-columns: 1fr; grid-template-rows: auto minmax(0, 1fr);
               width: 100vw; margin: 0;
               height: 100vh; max-height: 100vh;
               height: 100dvh; max-height: 100dvh;
               border-radius: 0; }
  .rsv__packs { max-height: none; }
}

/* ------------------------------------------------------------ responsive */

@media (max-width: 1040px) {
  .split { grid-template-columns: 1fr; }
  .bandphoto__inner { grid-template-columns: 1fr; gap: 0; }
  .bandphoto__texte { padding: clamp(44px, 7vw, 64px) var(--gutter); max-width: none; }
  .bandphoto__media { min-height: clamp(300px, 62vw, 460px); order: -1; }
  .split--flip .split__media { order: 0; }
  .avis { grid-template-columns: repeat(2, 1fr); }
  .mosaique, .mosaique--4 { columns: 2; }
  .faits__grid { grid-template-columns: repeat(2, 1fr); }
  .formules { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__marque { grid-column: 1 / -1; }
  .tarifs { columns: 1; }
  .coord { grid-template-columns: 1fr; }
  .horaires-grille { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav { grid-template-columns: auto 1fr; padding-block: 12px; }
  .nav__cta { display: none; }
  .nav__burger { display: block; justify-self: end; }

  .nav__links {
    position: fixed;
    inset: 0;
    z-index: 2;
    /* Le menu reste un enfant de la grille du header : sans ce stretch il hérite du
       justify-self:center du bureau et se réduit à la largeur de son contenu. */
    justify-self: stretch;
    align-self: stretch;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--ivoire);
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform .38s cubic-bezier(.4, 0, .2, 1), visibility 0s .38s;
  }
  .nav__links.nav-open { transform: translateY(0); visibility: visible; transition-delay: 0s; }
  .nav__links a { font-size: 27px; padding: 13px 0; }
  .nav__links .btn { display: inline-flex; margin-top: 22px; }

  /* Un backdrop-filter sur le header ferait de lui le bloc conteneur du menu
     fixed, qui se replierait sur la bande du header. */
  .nav.menu-open { background: transparent; box-shadow: none; }
  .nav.menu-open::before { opacity: 0; }
  .nav.menu-open .nav__burger span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .nav.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
  .nav.menu-open .nav__burger span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
}

@media (max-width: 620px) {
  .faits__grid { grid-template-columns: 1fr; }
  .avis { grid-template-columns: 1fr; }
  .mosaique, .mosaique--4 { columns: 1; }
  .footer__top { grid-template-columns: 1fr; }
  .metier { grid-template-columns: 44px minmax(0, 1fr); gap: 14px; padding: 16px 2px; }
  .metier__ico { width: 44px; height: 44px; }
  .metier__ico svg { width: 21px; height: 21px; }
  .metier__voir { grid-column: 2; margin-top: 10px; }
  .hero { min-height: 92svh; }
  .pointlist li { grid-template-columns: 1fr; gap: 3px; }
}
