/* ==========================================================================
   Coaching Parkour Lyon — feuille de style
   Direction visuelle : Sapin & blanc cassé
   Vous pouvez changer toutes les couleurs dans le bloc ":root" ci-dessous.
   ========================================================================== */

/* --- Polices auto-hébergées (aucun appel à Google, aucun traceur) --------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url('../fonts/manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url('../fonts/manrope-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --- Couleurs et réglages globaux ---------------------------------------- */
:root {
  --vert-900: #0F2018;
  --vert-800: #152B21;
  --vert-600: #1C5340;
  --vert-500: #23664F;
  --vert-100: #DDEAE3;
  --sauge:    #8FAD9C;
  --gris-600: #566158;
  --creme:    #FBFAF7;
  --creme-2:  #F2F1EC;
  --blanc:    #FFFFFF;
  --trait:    #E6E4DD;
  --trait-2:  #CCCABF;

  --titre: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --texte: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --largeur: 1120px;
  --gouttiere: 1.5rem;
  --arrondi: 4px;
  --arrondi-bloc: 6px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--creme);
  color: var(--vert-800);
  font-family: var(--texte);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--titre);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.12;
  margin: 0 0 .6em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.05rem, 1.25rem + 3.5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 1.15rem + 1.9vw, 2.3rem); }
h3 { font-size: 1.3rem; letter-spacing: -.025em; }
p  { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--vert-600); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--vert-500); }

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

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

/* --- Éléments réutilisables ---------------------------------------------- */
.conteneur {
  width: 100%;
  max-width: var(--largeur);
  margin-inline: auto;
  padding-inline: var(--gouttiere);
}

.evitement {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--vert-600);
  color: var(--blanc);
  padding: .75rem 1.25rem;
  z-index: 100;
  border-radius: 0 0 var(--arrondi) 0;
}
.evitement:focus { left: 0; color: var(--blanc); }

.section { padding-block: clamp(3.5rem, 2rem + 6vw, 6rem); }
.section--alt { background: var(--creme-2); }
.section--bord { border-top: 1px solid var(--trait); }

.surtitre {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--vert-600);
  margin: 0 0 1.1rem;
}
.surtitre::after {
  content: "";
  flex: 0 0 48px;
  height: 1px;
  background: var(--sauge);
}

.chapeau {
  font-size: 1.0625rem;
  color: var(--gris-600);
  max-width: 62ch;
  margin-bottom: 2.5rem;
}

.bouton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--texte);
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1.2;
  padding: .95rem 1.4rem;
  border-radius: var(--arrondi);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.bouton--plein { background: var(--vert-600); color: var(--blanc); }
.bouton--plein:hover { background: var(--vert-500); color: var(--blanc); }
.bouton--ligne { background: transparent; color: var(--vert-800); border-color: var(--trait-2); }
.bouton--ligne:hover { background: var(--blanc); border-color: var(--vert-600); color: var(--vert-600); }
.bouton--clair { background: var(--blanc); color: var(--vert-800); }
.bouton--clair:hover { background: var(--vert-100); color: var(--vert-800); }
.bouton--large { width: 100%; }

/* --- En-tête -------------------------------------------------------------- */
.entete {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--creme) 92%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--trait);
}
.entete__barre {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}
.marque {
  font-family: var(--titre);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -.02em;
  color: var(--vert-800);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.marque:hover { color: var(--vert-600); }
.marque__pastille {
  width: 30px; height: 30px;
  flex: 0 0 30px;
  border-radius: var(--arrondi);
  background: var(--vert-600);
  color: var(--blanc);
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav__liste {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
}
.nav__liste a:not(.bouton) {
  font-size: .9375rem;
  color: var(--gris-600);
  text-decoration: none;
}
.nav__liste a:not(.bouton):hover { color: var(--vert-600); }
.nav__liste .bouton { padding: .7rem 1.2rem; }

.burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--trait-2);
  border-radius: var(--arrondi);
  cursor: pointer;
  color: var(--vert-800);
}
.burger svg { width: 20px; height: 20px; }
.burger__fermer { display: none; }
.burger[aria-expanded="true"] .burger__ouvrir { display: none; }
.burger[aria-expanded="true"] .burger__fermer { display: block; }

@media (max-width: 860px) {
  .burger { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    background: var(--creme);
    border-bottom: 1px solid var(--trait);
    padding: 1rem var(--gouttiere) 1.5rem;
  }
  .nav[data-ouvert="true"] { display: block; }
  .nav__liste { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__liste li { border-bottom: 1px solid var(--trait); }
  .nav__liste li:last-child { border: 0; padding-top: 1rem; }
  .nav__liste a:not(.bouton) { display: block; padding: .9rem 0; font-size: 1rem; color: var(--vert-800); }
  .nav__liste .bouton { display: flex; width: 100%; padding: .95rem 1.4rem; }
}

/* --- Accroche ------------------------------------------------------------- */
.accroche { padding-block: clamp(2.5rem, 1.5rem + 5vw, 4.5rem) clamp(3rem, 2rem + 5vw, 5.5rem); }
.accroche__grille {
  display: grid;
  gap: clamp(2rem, 1rem + 4vw, 3.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .accroche__grille { grid-template-columns: 1.05fr .95fr; }
}
.accroche h1 { margin-bottom: .55em; }
.accroche h1 .accent { color: var(--vert-600); }
.accroche__texte {
  font-size: 1.0625rem;
  color: var(--gris-600);
  max-width: 46ch;
  margin-bottom: 1.9rem;
}
.accroche__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 2rem;
}
.gages {
  display: grid;
  gap: .6rem;
  margin: 0;
  padding: 1.6rem 0 0;
  border-top: 1px solid var(--trait);
  list-style: none;
  font-size: .9375rem;
  line-height: 1.5;
  color: var(--gris-600);
}
.gages li { position: relative; padding-left: 1.75rem; }
.gages li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .3em;
  width: 1.05rem;
  height: 1.05rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%231C5340' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 10.6 8 14.6 16 5.6'/%3E%3C/svg%3E") no-repeat center / contain;
}
.gages b { color: var(--vert-800); font-weight: 600; }

.visuel {
  border-radius: var(--arrondi-bloc);
  overflow: hidden;
  background: var(--creme-2);
}
.visuel img { width: 100%; height: auto; object-fit: cover; }
.visuel--portrait img { aspect-ratio: 4 / 5; }
.visuel--paysage img { aspect-ratio: 4 / 3; }

/* --- Prestations ---------------------------------------------------------- */
.grille-offres {
  display: grid;
  gap: 1.15rem;
  margin-top: .6rem;
  grid-template-columns: 1fr;
}
@media (min-width: 620px) { .grille-offres { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px) { .grille-offres { grid-template-columns: repeat(3, 1fr); } }

.groupe-offres { margin-bottom: 2.75rem; }
.groupe-offres:last-of-type { margin-bottom: 0; }
.groupe-offres > h3 {
  font-size: 1.0625rem;
  font-family: var(--texte);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gris-600);
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: 1.2rem;
}
.groupe-offres > h3::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--trait);
}

.offre {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--blanc);
  border: 1px solid var(--trait);
  border-radius: var(--arrondi-bloc);
  padding: 1.6rem 1.4rem;
}
.offre--phare { border-color: var(--vert-600); }
.offre__etiquette {
  position: absolute;
  top: 0;
  left: 1.4rem;
  transform: translateY(-50%);
  background: var(--vert-600);
  color: var(--blanc);
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: .3rem .65rem;
  border-radius: 3px;
  white-space: nowrap;
}
.offre h3, .offre h4 {
  font-family: var(--titre);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -.025em;
  line-height: 1.2;
  color: var(--vert-800);
  margin: 0 0 .2rem;
}
.offre__meta { font-size: .8125rem; color: var(--gris-600); margin-bottom: 1.1rem; }
.offre__prix {
  font-family: var(--titre);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--vert-800);
}
.offre__prix span {
  font-family: var(--texte);
  font-size: .8125rem;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--gris-600);
}
.offre__texte {
  font-size: .9375rem;
  line-height: 1.65;
  color: var(--gris-600);
  margin: 1rem 0 1.4rem;
}
.offre__liste {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
  font-size: .875rem;
  color: var(--gris-600);
}
.offre__liste li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: .4rem;
}
.offre > .bouton { margin-top: auto; }
.offre__liste li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sauge);
}
.offre__formule {
  font-size: .8125rem;
  line-height: 1.55;
  color: var(--vert-600);
  background: var(--vert-100);
  border-radius: 3px;
  padding: .55rem .7rem;
  margin: 0 0 1.3rem;
}
.offre__formule b { font-weight: 600; }

.devis {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  background: var(--blanc);
  border: 1px solid var(--trait);
  border-left: 3px solid var(--vert-600);
  border-radius: 0 var(--arrondi-bloc) var(--arrondi-bloc) 0;
  padding: 1.75rem 1.6rem;
  margin-top: 2.5rem;
}
@media (min-width: 820px) { .devis { grid-template-columns: 1fr auto; gap: 2.5rem; } }
.devis h3 { font-size: 1.3rem; margin-bottom: .35rem; }
.devis p { font-size: .9375rem; color: var(--gris-600); margin: 0; max-width: 60ch; }
.devis .bouton { white-space: nowrap; }

.note-tarifs {
  margin-top: 1.6rem;
  font-size: .875rem;
  color: var(--gris-600);
}

/* Les cartes partagent les mêmes lignes : titres, prix, descriptions, encadrés
   de packs et boutons s'alignent horizontalement d'une carte à l'autre.
   Cette règle doit rester APRÈS la définition de « .offre » pour la remplacer.
   Les navigateurs trop anciens ignorent « subgrid » et retombent sur
   l'empilement normal — rien ne casse. */
@media (min-width: 620px) {
  .grille-offres { grid-template-rows: repeat(6, auto); }
  .offre {
    display: grid;
    grid-row: span 6;
    grid-template-rows: subgrid;
  }
  .offre > h4              { grid-row: 1; align-self: start; }
  .offre > .offre__meta    { grid-row: 2; align-self: start; }
  .offre > .offre__prix    { grid-row: 3; align-self: start; }
  .offre > .offre__texte   { grid-row: 4; align-self: start; }
  .offre > .offre__formule { grid-row: 5; align-self: start; }
  .offre > .bouton         { grid-row: 6; align-self: end; margin-top: 0; }
}

/* --- Colonnes de contenu -------------------------------------------------- */
.duo {
  display: grid;
  gap: clamp(2rem, 1rem + 4vw, 3.5rem);
  align-items: start;
}
@media (min-width: 900px) { .duo { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .duo--portrait { grid-template-columns: .8fr 1.2fr; } }

.cartes {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .cartes--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .cartes--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 640px) { .cartes--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cartes--4 { grid-template-columns: repeat(4, 1fr); } }

.carte {
  background: var(--blanc);
  border: 1px solid var(--trait);
  border-radius: var(--arrondi-bloc);
  padding: 1.5rem 1.4rem;
}
.section--alt .carte { background: var(--blanc); }
.carte h3 { font-size: 1.125rem; margin-bottom: .45rem; }
.carte p { font-size: .9375rem; color: var(--gris-600); margin: 0; }

.etapes { counter-reset: etape; list-style: none; margin: 0; padding: 0; }
.etapes li {
  counter-increment: etape;
  position: relative;
  padding-left: 3.25rem;
  margin-bottom: 1.75rem;
}
.etapes li:last-child { margin-bottom: 0; }
.etapes li::before {
  content: counter(etape, decimal-leading-zero);
  position: absolute;
  left: 0; top: -.1rem;
  font-family: var(--titre);
  font-weight: 700;
  font-size: .8125rem;
  letter-spacing: 0;
  color: var(--vert-600);
  background: var(--vert-100);
  width: 2.25rem; height: 2.25rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--arrondi);
}
.etapes h3 { font-size: 1.0625rem; margin-bottom: .3rem; }
.etapes p { font-size: .9375rem; color: var(--gris-600); margin: 0; }

/* --- Lieux ---------------------------------------------------------------- */
.lieux { list-style: none; margin: 0; padding: 0; }
.lieux li {
  display: grid;
  grid-template-columns: 6.75rem 1fr;
  gap: .25rem 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--trait);
}
.lieux li:first-child { border-top: 1px solid var(--trait); }
.lieux__arr {
  justify-self: start;
  text-align: center;
  font-family: var(--titre);
  font-weight: 700;
  font-size: .8125rem;
  color: var(--vert-600);
  background: var(--vert-100);
  border-radius: 3px;
  padding: .25rem .55rem;
  align-self: start;
  white-space: nowrap;
}
.lieux h3 { font-size: 1.0625rem; margin: 0 0 .15rem; }
.lieux p { font-size: .9375rem; color: var(--gris-600); margin: 0; }

/* --- Témoignages ---------------------------------------------------------- */
.temoignage {
  background: var(--blanc);
  border: 1px solid var(--trait);
  border-radius: var(--arrondi-bloc);
  padding: 1.6rem 1.5rem;
}
.temoignage blockquote { margin: 0 0 1rem; font-size: 1rem; line-height: 1.65; }
.temoignage figcaption { font-size: .8125rem; color: var(--gris-600); }
.temoignage figcaption b { color: var(--vert-800); font-weight: 600; }

/* --- FAQ ------------------------------------------------------------------ */
.faq { max-width: 46rem; }
.faq details {
  border-bottom: 1px solid var(--trait);
}
.faq details:first-of-type { border-top: 1px solid var(--trait); }
.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
  font-family: var(--titre);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -.02em;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: 0 0 12px;
  width: 12px; height: 12px;
  margin-top: .45rem;
  border-right: 2px solid var(--vert-600);
  border-bottom: 2px solid var(--vert-600);
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: .7rem; }
.faq summary:hover { color: var(--vert-600); }
.faq__reponse { padding: 0 0 1.4rem; font-size: .9375rem; color: var(--gris-600); max-width: 60ch; }
.faq__reponse p { margin-bottom: .8em; }

/* --- Bandeau de rappel ---------------------------------------------------- */
.rappel {
  background: var(--vert-600);
  color: var(--blanc);
}
.rappel h2 { color: var(--blanc); }
.rappel p { color: #D3E4DC; max-width: 52ch; }
.rappel .surtitre { color: #A9C9BA; }
.rappel .surtitre::after { background: #52806E; }
.rappel__grille { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 900px) { .rappel__grille { grid-template-columns: 1.2fr .8fr; } }
.rappel__actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.rappel a:not(.bouton) { color: var(--blanc); }

/* --- Contact -------------------------------------------------------------- */
.contact__liens { list-style: none; margin: 0; padding: 0; }
.contact__liens li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--trait);
  display: flex;
  flex-wrap: wrap;
  gap: .2rem 1rem;
  align-items: baseline;
}
.contact__liens li:first-child { border-top: 1px solid var(--trait); }
.contact__liens dt, .contact__cle {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gris-600);
  min-width: 7rem;
}

/* --- Formulaire de demande ------------------------------------------------ */
.form { display: grid; gap: 1.1rem; }
@media (min-width: 620px) { .form { grid-template-columns: 1fr 1fr; } }
.champ { display: flex; flex-direction: column; gap: .4rem; }
.champ--large { grid-column: 1 / -1; }

.champ label {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--vert-800);
}
.champ label .option { font-weight: 400; color: var(--gris-600); letter-spacing: 0; }
.champ .aide { font-size: .8125rem; color: var(--gris-600); }

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form select,
.form textarea {
  font-family: var(--texte);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--vert-800);
  background: var(--blanc);
  border: 1px solid var(--trait-2);
  border-radius: var(--arrondi);
  padding: .8rem .9rem;
  width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form textarea { min-height: 7.5rem; resize: vertical; }
.form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23566158' stroke-width='1.6'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .9rem center;
  background-size: 12px 8px;
  padding-right: 2.4rem;
}
.form input:hover, .form select:hover, .form textarea:hover { border-color: var(--gris-600); }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--vert-600);
  box-shadow: 0 0 0 3px var(--vert-100);
}
.form input:user-invalid, .form textarea:user-invalid { border-color: #A6402B; }

.case {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .875rem;
  line-height: 1.6;
  color: var(--gris-600);
}
.case input[type="checkbox"] {
  flex: 0 0 auto;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: .18rem;
  accent-color: var(--vert-600);
}
.form__envoi { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.form__note { font-size: .8125rem; color: var(--gris-600); margin: 0; }
.form__pot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.reserver__grille { display: grid; gap: clamp(2rem, 1rem + 4vw, 3.5rem); align-items: start; }
@media (min-width: 980px) { .reserver__grille { grid-template-columns: .85fr 1.15fr; } }
.reserver__infos .contact__liens li:first-child { border-top: 1px solid var(--trait); }
.etapes--fines li { padding-left: 2.6rem; margin-bottom: 1.1rem; }
.etapes--fines li::before { width: 1.8rem; height: 1.8rem; font-size: .75rem; }
.etapes--fines h3 { font-size: .9375rem; margin-bottom: .1rem; }
.etapes--fines p { font-size: .875rem; }

/* --- Pied de page --------------------------------------------------------- */
.pied {
  background: var(--vert-900);
  color: #B9C6BE;
  padding-block: 3.5rem 2.5rem;
  font-size: .875rem;
}
.pied a { color: #DCE6E0; }
.pied a:hover { color: var(--blanc); }
.pied__grille {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 720px) { .pied__grille { grid-template-columns: 1.4fr 1fr 1fr; } }
.pied__marque {
  font-family: var(--titre);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -.02em;
  color: var(--blanc);
  margin-bottom: .6rem;
}
.pied h2 {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sauge);
  font-family: var(--texte);
  margin-bottom: .9rem;
}
.pied ul { list-style: none; margin: 0; padding: 0; }
.pied li { margin-bottom: .5rem; }
.pied__bas {
  border-top: 1px solid #23392F;
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  justify-content: space-between;
  font-size: .8125rem;
}

/* --- Pages de texte (mentions, confidentialité, 404) ---------------------- */
.page-texte { max-width: 46rem; }
.page-texte h2 { font-size: 1.5rem; margin-top: 2.5rem; }
.page-texte h3 { font-size: 1.125rem; margin-top: 1.75rem; }
.page-texte ul { padding-left: 1.2rem; color: var(--gris-600); }
.page-texte li { margin-bottom: .45rem; }
.page-texte dl { margin: 0 0 1.5rem; }
.page-texte dt {
  font-size: .75rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gris-600); margin-top: 1rem;
}
.page-texte dd { margin: .15rem 0 0; }
.page-texte .maj { font-size: .875rem; color: var(--gris-600); }

.erreur { text-align: center; padding-block: clamp(4rem, 3rem + 6vw, 7rem); }
.erreur__code {
  font-family: var(--titre);
  font-weight: 700;
  font-size: clamp(3.5rem, 2rem + 8vw, 6rem);
  letter-spacing: -.05em;
  line-height: 1;
  color: var(--vert-100);
  margin-bottom: .2em;
}
.erreur .accroche__actions { justify-content: center; }
.erreur p { margin-inline: auto; }

/* --- Retouches ponctuelles ------------------------------------------------ */
.contact__liens--espace { margin-top: 2rem; }
.chapeau--etroit { max-width: 46ch; }
.surtitre--centre { justify-content: center; }
.pied__bas--simple { border-top: 0; padding-top: 0; }

/* --- Utilitaires ---------------------------------------------------------- */
.visuellement-cache {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
[hidden] { display: none !important; }
