@import url("../fonts/fonts.css");

/* =========================================================================
   Le Chalet du bien-être — feuille de style unique
   Palette dérivée du logo : crème, vert forêt, vieux rose, bois.
   ========================================================================= */

:root {
  /* Fonds */
  --creme: #faf6ef;
  --creme-fonce: #f1e9db;
  --carte: #fffcf7;

  /* Textes */
  --encre: #2e3a2c;
  --encre-doux: #55604f;

  /* Vert forêt */
  --foret: #4a6145;
  --foret-sombre: #3a4c35;
  --foret-clair: #6e8467;

  /* Vieux rose — décoratif ; --rose-texte est la seule variante lisible en
     texte : elle tient le rapport de contraste AA (4,5) sur les trois fonds
     clairs du site (crème, crème foncé, voile rose). */
  --rose: #c08a8a;
  --rose-texte: #925555;
  --rose-clair: #e4cfcf;
  --rose-voile: #f3e7e7;
  /* Accent rosé pour les petits textes posés sur une photo : les voiles ayant
     été allégés, --rose-clair n'y tient plus le contraste AA. */
  --rose-sur-photo: #faf3f3;

  /* Bois et or, par touches */
  --bois: #a9784f;
  --or: #b8901f;

  /* Typographie */
  --titre: "Cormorant Garamond", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --texte: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;

  /* Rythme */
  --lisible: 68ch;
  --large: 1180px;
  --marge: clamp(1.25rem, 5vw, 2.5rem);
  --section: clamp(3.5rem, 8vw, 6rem);

  /* Habillage */
  --arrondi: 4px;
  --arrondi-carte: 10px;
  --ombre: 0 1px 2px rgba(46, 58, 44, 0.04), 0 8px 24px rgba(46, 58, 44, 0.07);
  --ombre-forte: 0 2px 4px rgba(46, 58, 44, 0.06), 0 18px 44px rgba(46, 58, 44, 0.13);
  --transition: 200ms ease;
}

/* --- Réinitialisation ---------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--creme);
  color: var(--encre);
  font-family: var(--texte);
  font-size: clamp(1rem, 0.97rem + 0.15vw, 1.075rem);
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--foret);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--rose-texte);
}

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

/* --- Titres -------------------------------------------------------------- */

h1,
h2,
h3,
h4 {
  font-family: var(--titre);
  font-weight: 600;
  color: var(--foret);
  /* Cormorant Garamond porte ses accents haut au-dessus des capitales :
     en dessous de 1.22 les É et les Ê se font rogner par la ligne du dessus. */
  line-height: 1.24;
  /* Chiffres alignés : les chiffres bas-de-casse de cette police font
     ressembler le zéro à un « o », illisible dans un prix ou un horaire. */
  font-variant-numeric: lining-nums;
  margin: 0 0 0.6em;
  letter-spacing: 0.005em;
}

h1 {
  font-size: clamp(2.4rem, 1.7rem + 3.2vw, 4rem);
}

h2 {
  font-size: clamp(1.9rem, 1.5rem + 1.9vw, 2.9rem);
}

h3 {
  font-size: clamp(1.35rem, 1.2rem + 0.75vw, 1.7rem);
}

h4 {
  font-size: 1.2rem;
  font-family: var(--texte);
  font-weight: 700;
  letter-spacing: 0.01em;
}

p {
  margin: 0 0 1.15em;
}

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

strong {
  font-weight: 700;
  color: var(--encre);
}

/* Surtitre en petites capitales au-dessus des h2 */
.surtitre {
  display: block;
  font-family: var(--texte);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--rose-texte);
  margin-bottom: 1rem;
}

.chapeau {
  font-size: clamp(1.1rem, 1.04rem + 0.3vw, 1.28rem);
  line-height: 1.65;
  color: var(--encre-doux);
}

/* Filet décoratif sous un titre de section */
.filet {
  width: 64px;
  height: 2px;
  background: var(--rose);
  border: 0;
  margin: 1.6rem 0 2rem;
}

.centre .filet {
  margin-inline: auto;
}

.centre {
  text-align: center;
}

/* --- Structure ----------------------------------------------------------- */

.contenu {
  width: min(100% - 2 * var(--marge), var(--large));
  margin-inline: auto;
}

.contenu--etroit {
  width: min(100% - 2 * var(--marge), 760px);
  margin-inline: auto;
}

.texte {
  max-width: var(--lisible);
}

.centre .texte {
  margin-inline: auto;
}

.section {
  padding-block: var(--section);
}

.section--fonce {
  background: var(--creme-fonce);
}

.section--foret {
  background: var(--foret-sombre);
  color: var(--creme);
}

.section--foret h2,
.section--foret h3 {
  color: var(--creme);
}

.section--foret .surtitre {
  color: var(--rose-clair);
}

.section--foret .chapeau {
  color: #d7d2c4;
}

/* Les boutons gardent leurs propres couleurs : sans l'exclusion, cette règle
   les emporterait par spécificité et rendrait leur texte illisible. */
.section--foret a:not(.bouton) {
  color: var(--rose-clair);
}

.section--compacte {
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}

/* Lien d'évitement */
.evitement {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--foret-sombre);
  color: var(--creme);
  padding: 0.85rem 1.4rem;
  z-index: 200;
}

.evitement:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* --- En-tête ------------------------------------------------------------- */

.entete {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 239, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(74, 97, 69, 0.14);
}

.entete__barre {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4.75rem;
  padding-block: 0.5rem;
}

.marque {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--foret);
  margin-right: auto;
  /* min-width: 0 est indispensable : sans lui, le nom impose sa largeur
     minimale à l'en-tête et fait déborder la page sur les petits écrans. */
  min-width: 0;
}

.marque img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex-shrink: 0;
}

.marque__nom {
  font-family: var(--titre);
  font-size: clamp(1.05rem, 0.85rem + 0.85vw, 1.32rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
  display: block;
}

.marque__lieu {
  display: block;
  font-family: var(--texte);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--rose-texte);
  margin-top: 0.15rem;
}

@media (max-width: 26rem) {
  .marque__lieu {
    display: none;
  }

  .marque img {
    width: 38px;
    height: 38px;
  }
}

.nav ul {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 1.8vw, 1.7rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Le bouton « Réserver » vit dans la même liste que les liens de navigation.
   Sans l'exclusion, ces règles l'emportent sur .bouton par spécificité et
   repeignent son texte en vert sombre sur fond vert. */
.nav a:not(.bouton) {
  display: block;
  padding: 0.35rem 0;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--encre);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.nav a:not(.bouton):hover {
  color: var(--foret);
  border-bottom-color: var(--rose);
}

.nav a:not(.bouton)[aria-current="page"] {
  color: var(--foret);
  border-bottom-color: var(--foret);
}

/* Page réservation : le bouton d'en-tête marque la page courante par une
   teinte plus soutenue, pas par un changement de couleur de texte. */
.nav .bouton[aria-current="page"] {
  background: var(--foret-sombre);
  border-color: var(--foret-sombre);
}

.entete .bouton {
  padding: 0.6rem 1.15rem;
  font-size: 0.88rem;
}

/* Bouton hamburger */
.bascule {
  display: none;
  align-items: center;
  gap: 0.55rem;
  background: none;
  border: 1px solid rgba(74, 97, 69, 0.3);
  border-radius: var(--arrondi);
  color: var(--foret);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
}

.bascule__traits {
  position: relative;
  width: 18px;
  height: 2px;
  background: currentColor;
  display: block;
}

.bascule__traits::before,
.bascule__traits::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform var(--transition);
}

.bascule__traits::before {
  top: -6px;
}

.bascule__traits::after {
  top: 6px;
}

.bascule[aria-expanded="true"] .bascule__traits {
  background: transparent;
}

.bascule[aria-expanded="true"] .bascule__traits::before {
  transform: translateY(6px) rotate(45deg);
}

.bascule[aria-expanded="true"] .bascule__traits::after {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 60rem) {
  .bascule {
    display: inline-flex;
  }

  .entete .bouton--entete {
    display: none;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--creme);
    border-bottom: 1px solid rgba(74, 97, 69, 0.16);
    box-shadow: var(--ombre);
    padding: 0.5rem var(--marge) 1.5rem;
    display: none;
  }

  .nav[data-ouvert="true"] {
    display: block;
  }

  .nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav li + li {
    border-top: 1px solid rgba(74, 97, 69, 0.12);
  }

  .nav a {
    padding: 0.85rem 0;
    font-size: 1.02rem;
    border-bottom: 0;
    border-left: 3px solid transparent;
    padding-left: 0.75rem;
  }

  .nav a:hover,
  .nav a[aria-current="page"] {
    border-bottom: 0;
    border-left-color: var(--rose);
    background: var(--creme-fonce);
  }

  .nav .bouton {
    margin-top: 1rem;
    text-align: center;
    padding-left: 1.15rem;
    border-left: 0;
  }
}

/* Sans JavaScript, le menu reste déplié plutôt que d'être inaccessible */
.sans-js .bascule {
  display: none;
}

.sans-js .nav {
  display: block;
  position: static;
  box-shadow: none;
  border: 0;
  padding: 0;
}

/* --- Boutons ------------------------------------------------------------- */

.bouton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  background: var(--foret);
  color: var(--creme);
  font-family: var(--texte);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 2px solid var(--foret);
  border-radius: var(--arrondi);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition),
    transform var(--transition), color var(--transition);
}

.bouton:hover {
  background: var(--foret-sombre);
  border-color: var(--foret-sombre);
  color: var(--creme);
  transform: translateY(-1px);
}

.bouton--secondaire {
  background: transparent;
  color: var(--foret);
}

.bouton--secondaire:hover {
  background: var(--foret);
  color: var(--creme);
}

.bouton--clair {
  background: var(--creme);
  color: var(--foret-sombre);
  border-color: var(--creme);
}

.bouton--clair:hover {
  background: var(--rose-clair);
  border-color: var(--rose-clair);
  color: var(--foret-sombre);
}

.bouton--contour-clair {
  background: transparent;
  color: var(--creme);
  border-color: rgba(250, 246, 239, 0.6);
}

.bouton--contour-clair:hover {
  background: var(--creme);
  color: var(--foret-sombre);
  border-color: var(--creme);
}

.boutons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.centre .boutons {
  justify-content: center;
}

/* --- Bandeau d'accueil --------------------------------------------------- */

.heros {
  position: relative;
  min-height: min(84vh, 720px);
  display: flex;
  align-items: center;
  isolation: isolate;
  padding-block: clamp(4rem, 10vw, 7rem);
  color: var(--creme);
}

.heros__fond {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.heros__fond img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

.heros::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    100deg,
    rgba(35, 46, 33, 0.64) 0%,
    rgba(35, 46, 33, 0.5) 45%,
    rgba(35, 46, 33, 0.24) 100%
  );
}

.heros h1 {
  color: var(--creme);
  max-width: 15ch;
  margin-bottom: 0.35em;
}

/* Deux lignes imposées : « Une parenthèse de calme, » puis « en lisière de
   forêt ». En dessous de 40rem, le titre reprend son découpage naturel. */
@media (min-width: 40rem) {
  .heros h1 {
    max-width: none;
  }

  .heros h1 span {
    display: block;
  }
}

.heros__accroche {
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.35rem);
  line-height: 1.6;
  color: var(--creme);
  max-width: 46ch;
}

.heros__lieu {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-sur-photo);
  margin-bottom: 1.5rem;
}

/* Bandeau d'en-tête des pages intérieures */
.entete-page {
  position: relative;
  isolation: isolate;
  padding-block: clamp(3.5rem, 8vw, 6rem);
  color: var(--creme);
  text-align: center;
}

.entete-page__fond {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.entete-page__fond img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.entete-page::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(35, 46, 33, 0.6);
}

.entete-page h1 {
  color: var(--creme);
  margin-bottom: 0.4em;
}

.entete-page .chapeau {
  color: var(--creme);
  max-width: 58ch;
  margin-inline: auto;
}

.entete-page .surtitre {
  color: var(--rose-sur-photo);
}

/* --- Bandeau de réassurance ---------------------------------------------- */

.reassurance {
  background: var(--creme-fonce);
  border-bottom: 1px solid rgba(74, 97, 69, 0.1);
}

.reassurance ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.5rem 2rem;
  list-style: none;
  margin: 0;
  padding: 2rem 0;
}

.reassurance li {
  text-align: center;
}

.reassurance b {
  display: block;
  font-family: var(--titre);
  font-size: 1.45rem;
  font-weight: 600;
  font-variant-numeric: lining-nums;
  color: var(--foret);
  line-height: 1.25;
}

.reassurance span {
  display: block;
  font-size: 0.88rem;
  color: var(--encre-doux);
  margin-top: 0.2rem;
}

/* --- Grilles et cartes --------------------------------------------------- */

.grille-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(1.5rem, 3vw, 2.75rem);
}

.grille-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

.carte {
  background: var(--carte);
  border: 1px solid rgba(74, 97, 69, 0.14);
  border-radius: var(--arrondi-carte);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.carte:hover {
  transform: translateY(-3px);
  box-shadow: var(--ombre);
}

.carte__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--creme-fonce);
}

.carte__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.carte:hover .carte__image img {
  transform: scale(1.035);
}

.carte__corps {
  padding: clamp(1.4rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.carte__corps h3 {
  margin-bottom: 0.35em;
}

.carte__meta {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose-texte);
  margin-bottom: 0.9rem;
}

.carte__corps p {
  color: var(--encre-doux);
}

.carte__lien {
  margin-top: auto;
  padding-top: 1.4rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--foret);
}

.carte__lien::after {
  content: " →";
  transition: margin var(--transition);
  display: inline-block;
}

.carte__lien:hover::after {
  margin-left: 0.25rem;
}

/* Carte simple sans image */
.carte-texte {
  background: var(--carte);
  border: 1px solid rgba(74, 97, 69, 0.14);
  border-left: 3px solid var(--rose);
  border-radius: var(--arrondi);
  padding: clamp(1.4rem, 3vw, 1.9rem);
}

.carte-texte h3 {
  font-family: var(--texte);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--encre);
  margin-bottom: 0.5em;
}

.carte-texte p {
  color: var(--encre-doux);
  font-size: 0.98rem;
  margin-bottom: 0;
}

/* --- Blocs texte + image en vis-à-vis ------------------------------------ */

.duo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.duo--inverse > *:first-child {
  order: 2;
}

@media (max-width: 47rem) {
  .duo--inverse > *:first-child {
    order: 0;
  }
}

.duo__image {
  border-radius: var(--arrondi-carte);
  overflow: hidden;
  box-shadow: var(--ombre);
}

.duo__image--portrait {
  max-width: 420px;
}

/* Bandeau photo pleine largeur */
.bandeau {
  position: relative;
  isolation: isolate;
  min-height: clamp(260px, 40vh, 420px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--creme);
  padding-block: clamp(3rem, 7vw, 5rem);
}

.bandeau__fond {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.bandeau__fond img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bandeau::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(35, 46, 33, 0.58);
}

.bandeau blockquote {
  margin: 0 auto;
  font-family: var(--titre);
  font-size: clamp(1.6rem, 1.2rem + 2vw, 2.5rem);
  line-height: 1.38;
  color: var(--creme);
  max-width: 26ch;
}

.bandeau cite {
  display: block;
  font-family: var(--texte);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-sur-photo);
  margin-top: 1.6rem;
}

/* --- Étapes numérotées --------------------------------------------------- */

.etapes {
  list-style: none;
  counter-reset: etape;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

.etapes li {
  counter-increment: etape;
  position: relative;
  padding-left: 4.25rem;
  min-height: 3rem;
}

.etapes li::before {
  content: counter(etape, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: -0.25rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rose);
  border-radius: 50%;
  font-family: var(--titre);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--rose-texte);
  background: var(--creme);
}

.section--foret .etapes li::before {
  background: transparent;
  color: var(--rose-clair);
  border-color: rgba(228, 207, 207, 0.5);
}

.etapes h3 {
  font-family: var(--texte);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--encre);
  margin-bottom: 0.25em;
}

.section--foret .etapes h3 {
  color: var(--creme);
}

.etapes p {
  color: var(--encre-doux);
  font-size: 0.98rem;
  margin: 0;
}

.section--foret .etapes p {
  color: #cfcabc;
}

/* --- Listes à puces maison ----------------------------------------------- */

.liste {
  list-style: none;
  margin: 0 0 1.15em;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.liste li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--encre-doux);
}

.liste li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rose);
}

.section--foret .liste li {
  color: #d7d2c4;
}

/* --- Encadrés ------------------------------------------------------------ */

.encadre {
  background: var(--rose-voile);
  border: 1px solid var(--rose-clair);
  border-radius: var(--arrondi-carte);
  padding: clamp(1.4rem, 3vw, 2rem);
}

.encadre h3 {
  font-family: var(--texte);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--rose-texte);
  letter-spacing: 0.02em;
  margin-bottom: 0.6em;
}

.encadre p,
.encadre li {
  color: #5f4a4a;
  font-size: 0.97rem;
}

.encadre .liste li::before {
  background: var(--rose-texte);
}

.encadre--calme {
  background: var(--creme-fonce);
  border-color: rgba(74, 97, 69, 0.18);
}

.encadre--calme h3 {
  color: var(--foret);
}

.encadre--calme p,
.encadre--calme li {
  color: var(--encre-doux);
}

.encadre--calme .liste li::before {
  background: var(--foret-clair);
}

/* --- Tarifs -------------------------------------------------------------- */

.tarif {
  background: var(--carte);
  border: 1px solid rgba(74, 97, 69, 0.16);
  border-radius: var(--arrondi-carte);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  text-align: center;
  box-shadow: var(--ombre);
}

.tarif__prix {
  font-family: var(--titre);
  font-size: clamp(3.2rem, 2.4rem + 3.5vw, 4.75rem);
  font-weight: 600;
  font-variant-numeric: lining-nums;
  color: var(--foret);
  line-height: 1.05;
  display: block;
}

.tarif__duree {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-texte);
  margin-top: 0.8rem;
}

.tarif__detail {
  color: var(--encre-doux);
  font-size: 0.97rem;
  margin-top: 1.2rem;
  max-width: 46ch;
  margin-inline: auto;
}

.tableau-tarifs {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.98rem;
}

.tableau-tarifs caption {
  text-align: left;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-texte);
  padding-bottom: 0.9rem;
}

.tableau-tarifs th,
.tableau-tarifs td {
  text-align: left;
  padding: 0.95rem 1rem;
  border-bottom: 1px solid rgba(74, 97, 69, 0.16);
}

.tableau-tarifs thead th {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--foret);
  border-bottom-width: 2px;
}

.tableau-tarifs tbody th {
  font-weight: 700;
  color: var(--encre);
}

.tableau-tarifs td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--foret);
  white-space: nowrap;
}

.defilant {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* --- Témoignages --------------------------------------------------------- */

.temoignage {
  background: var(--carte);
  border: 1px solid rgba(74, 97, 69, 0.14);
  border-radius: var(--arrondi-carte);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
}

.temoignage blockquote {
  margin: 0 0 1.2rem;
  font-family: var(--titre);
  font-size: 1.22rem;
  line-height: 1.5;
  color: var(--encre);
}

.temoignage figcaption {
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose-texte);
}

/* --- Accordéon FAQ (fonctionne sans JavaScript) -------------------------- */

.faq {
  display: grid;
  gap: 0.75rem;
}

.faq details {
  background: var(--carte);
  border: 1px solid rgba(74, 97, 69, 0.16);
  border-radius: var(--arrondi-carte);
  overflow: hidden;
}

.faq details[open] {
  border-color: var(--rose);
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem clamp(1.1rem, 3vw, 1.6rem);
  padding-right: 3.5rem;
  position: relative;
  font-family: var(--texte);
  font-size: 1.03rem;
  font-weight: 700;
  color: var(--foret);
  transition: background var(--transition);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary:hover {
  background: var(--creme-fonce);
}

.faq summary::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--rose-texte);
  border-bottom: 2px solid var(--rose-texte);
  transform: translateY(-70%) rotate(45deg);
  transition: transform var(--transition);
}

.faq details[open] summary::after {
  transform: translateY(-20%) rotate(-135deg);
}

.faq__reponse {
  padding: 0 clamp(1.1rem, 3vw, 1.6rem) 1.4rem;
  color: var(--encre-doux);
  font-size: 0.99rem;
}

.faq__reponse > :first-child {
  margin-top: 0;
}

/* --- Galerie ------------------------------------------------------------- */

/* Mosaïque en colonnes : les photos gardent leurs proportions d'origine,
   portraits comme paysages, sans trou dans la grille ni recadrage. */
.galerie {
  columns: 4 250px;
  column-gap: 1.1rem;
}

.galerie__element {
  break-inside: avoid;
  margin: 0 0 1.1rem;
  display: inline-block;
  width: 100%;
}

.galerie__lien {
  display: block;
  border-radius: var(--arrondi-carte);
  overflow: hidden;
  background: var(--creme-fonce);
  position: relative;
}

.galerie__lien img {
  width: 100%;
  height: auto;
  transition: transform 500ms ease, filter var(--transition);
}

.galerie__lien:hover img {
  transform: scale(1.04);
}

.galerie__legende {
  font-size: 0.86rem;
  color: var(--encre-doux);
  padding-top: 0.6rem;
}

/* Visionneuse */
.visionneuse {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(28, 36, 26, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
}

.visionneuse[data-ouvert="true"] {
  display: flex;
}

.visionneuse__cadre {
  position: relative;
  max-width: min(100%, 1180px);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.visionneuse img {
  max-width: 100%;
  max-height: calc(100vh - 9rem);
  width: auto;
  object-fit: contain;
  border-radius: var(--arrondi);
}

.visionneuse__legende {
  color: #ded8ca;
  font-size: 0.92rem;
  text-align: center;
}

.visionneuse__legende b {
  color: var(--creme);
  font-weight: 700;
}

.visionneuse__compteur {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-clair);
  margin-top: 0.35rem;
}

.visionneuse button {
  position: absolute;
  background: rgba(250, 246, 239, 0.1);
  border: 1px solid rgba(250, 246, 239, 0.35);
  color: var(--creme);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.visionneuse button:hover {
  background: rgba(250, 246, 239, 0.25);
}

.visionneuse__fermer {
  top: -0.5rem;
  right: -0.5rem;
}

.visionneuse__precedent {
  left: -1.25rem;
  top: 50%;
  transform: translateY(-50%);
}

.visionneuse__suivant {
  right: -1.25rem;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 52rem) {
  .visionneuse__fermer {
    top: -0.25rem;
    right: 0;
  }

  .visionneuse__precedent {
    left: 0;
  }

  .visionneuse__suivant {
    right: 0;
  }
}

/* --- Formulaire ---------------------------------------------------------- */

.formulaire {
  display: grid;
  gap: 1.25rem;
}

.champ {
  display: grid;
  gap: 0.4rem;
  /* Sans cela, un champ voisin plus haut (à cause de son texte d'aide)
     étire la zone de saisie sur toute la hauteur de la ligne. */
  align-content: start;
}

.champ--duo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 1.25rem;
}

.champ label,
.groupe legend {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--foret);
  letter-spacing: 0.02em;
}

.obligatoire {
  color: var(--rose-texte);
}

.champ input,
.champ select,
.champ textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--encre);
  background: var(--carte);
  border: 1px solid rgba(74, 97, 69, 0.3);
  border-radius: var(--arrondi);
  padding: 0.75rem 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.champ textarea {
  min-height: 8rem;
  resize: vertical;
}

.champ input:focus,
.champ select:focus,
.champ textarea:focus {
  outline: none;
  border-color: var(--foret);
  box-shadow: 0 0 0 3px rgba(74, 97, 69, 0.16);
}

.champ input[aria-invalid="true"],
.champ select[aria-invalid="true"],
.champ textarea[aria-invalid="true"] {
  border-color: #a8332c;
  box-shadow: 0 0 0 3px rgba(168, 51, 44, 0.13);
}

.aide {
  font-size: 0.85rem;
  color: var(--encre-doux);
}

.erreur {
  font-size: 0.85rem;
  font-weight: 700;
  color: #a8332c;
  min-height: 1.2em;
}

.erreur:empty {
  display: none;
}

.groupe {
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.groupe legend {
  padding: 0;
  margin-bottom: 0.2rem;
}

.choix {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.choix label,
.consentement label {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.97rem;
  font-weight: 400;
  color: var(--encre);
  letter-spacing: 0;
  cursor: pointer;
}

.choix input,
.consentement input {
  width: auto;
  margin-top: 0.32rem;
  accent-color: var(--foret);
  flex-shrink: 0;
}

.consentement {
  background: var(--carte);
  border: 1px solid rgba(74, 97, 69, 0.22);
  border-left: 3px solid var(--rose);
  border-radius: var(--arrondi);
  padding: 1rem 1.15rem;
}

.consentement label {
  font-size: 0.9rem;
  color: var(--encre-doux);
}

/* Champ anti-robot, masqué visuellement et pour les lecteurs d'écran */
.piege {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.message-formulaire {
  border-radius: var(--arrondi);
  padding: 1.1rem 1.3rem;
  font-size: 0.97rem;
  display: none;
}

.message-formulaire[data-etat="succes"] {
  display: block;
  background: #e8efe4;
  border: 1px solid var(--foret-clair);
  color: #2f4a2a;
}

.message-formulaire[data-etat="erreur"] {
  display: block;
  background: #f7e7e6;
  border: 1px solid #d09a95;
  color: #8a2a24;
}

/* --- Bloc réservation / agenda ------------------------------------------- */

.agenda {
  background: var(--carte);
  border: 1px dashed var(--rose);
  border-radius: var(--arrondi-carte);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  text-align: center;
}

.agenda__marque {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-texte);
  background: var(--rose-voile);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1rem;
}

/* --- Horaires ------------------------------------------------------------ */

.horaires {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.horaires th,
.horaires td {
  padding: 0.6rem 0;
  text-align: left;
  border-bottom: 1px solid rgba(74, 97, 69, 0.14);
}

.horaires th {
  font-weight: 700;
  color: var(--encre);
}

.horaires td {
  text-align: right;
  color: var(--encre-doux);
  white-space: nowrap;
}

.horaires .ferme td {
  color: var(--rose-texte);
}

.section--foret .horaires th,
.section--foret .horaires td {
  border-bottom-color: rgba(250, 246, 239, 0.18);
}

.section--foret .horaires th {
  color: var(--creme);
}

.section--foret .horaires td {
  color: #cfcabc;
}

.section--foret .horaires .ferme td {
  color: var(--rose-clair);
}

/* --- Coordonnées --------------------------------------------------------- */

.coordonnees {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}

.coordonnees dt {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-texte);
  margin-bottom: 0.2rem;
}

.coordonnees dd {
  margin: 0 0 1.1rem;
  color: var(--encre-doux);
}

.coordonnees dd:last-child {
  margin-bottom: 0;
}

.coordonnees a {
  font-weight: 700;
}

/* Carte statique auto-hébergée : pas d'iframe, pas de requête vers un tiers,
   donc pas de cookie à faire accepter au visiteur. */
.carte-lieu {
  margin: 0;
}

.carte-lieu a {
  display: block;
  border-radius: var(--arrondi-carte);
  overflow: hidden;
  border: 1px solid rgba(74, 97, 69, 0.2);
  background: var(--creme-fonce);
}

.carte-lieu img {
  width: 100%;
  height: auto;
  transition: transform 500ms ease;
}

.carte-lieu a:hover img {
  transform: scale(1.02);
}

.carte-lieu figcaption {
  font-size: 0.85rem;
  color: var(--encre-doux);
  padding-top: 0.7rem;
}

.itineraires {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.itineraires a {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--foret);
  background: var(--creme-fonce);
  border: 1px solid rgba(74, 97, 69, 0.24);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  transition: background var(--transition), color var(--transition);
}

.itineraires a:hover {
  background: var(--foret);
  color: var(--creme);
}

/* --- Pages légales ------------------------------------------------------- */

.legal {
  max-width: var(--lisible);
}

.legal h2 {
  font-size: clamp(1.4rem, 1.25rem + 0.8vw, 1.8rem);
  margin-top: 2.75rem;
}

.legal h2:first-of-type {
  margin-top: 0;
}

.legal h3 {
  font-family: var(--texte);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--encre);
  margin-top: 1.75rem;
}

.legal dl {
  margin: 0 0 1.5rem;
}

.legal dt {
  font-weight: 700;
  color: var(--encre);
  margin-top: 0.85rem;
}

.legal dd {
  margin: 0.15rem 0 0;
  color: var(--encre-doux);
}

.legal .liste li,
.legal p {
  color: var(--encre-doux);
}

.date-maj {
  font-size: 0.88rem;
  color: var(--encre-doux);
  font-style: italic;
  margin-bottom: 2.5rem;
}

/* --- Marqueur d'information à compléter ---------------------------------- */

.a-completer {
  /* En ligne, pour que les longs marqueurs se coupent au lieu de déborder. */
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background: #fdf2d6;
  border: 1px dashed #c79a2b;
  border-radius: 3px;
  padding: 0 0.4em;
  font-family: var(--texte);
  font-size: 0.88em;
  font-weight: 700;
  color: #7a5c0c;
  font-style: normal;
}

/* --- Appel à l'action ---------------------------------------------------- */

.appel {
  text-align: center;
}

.appel h2 {
  max-width: 20ch;
  margin-inline: auto;
}

.appel .filet {
  margin-inline: auto;
}

.appel .boutons {
  justify-content: center;
}

.appel .chapeau {
  max-width: 52ch;
  margin-inline: auto;
}

/* --- Pied de page -------------------------------------------------------- */

.pied {
  background: var(--foret-sombre);
  color: #cfcabc;
  padding-block: clamp(3rem, 6vw, 4.5rem) 0;
  font-size: 0.95rem;
}

.pied__grille {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.pied h2,
.pied h3 {
  font-family: var(--texte);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-clair);
  margin-bottom: 1.1rem;
}

.pied a {
  color: #cfcabc;
  text-decoration: none;
}

.pied a:hover {
  color: var(--creme);
  text-decoration: underline;
}

.pied ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.pied__marque img {
  width: 92px;
  margin-bottom: 1rem;
}

.pied__nom {
  font-family: var(--titre);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--creme);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.pied__bas {
  border-top: 1px solid rgba(250, 246, 239, 0.16);
  padding-block: 1.5rem 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.75rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #bdb8a9;
}

.pied__bas ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
}

.pied__mention {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #bdb8a9;
  max-width: 60ch;
  padding-bottom: 1.5rem;
}

/* --- Utilitaires --------------------------------------------------------- */

.invisible {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.serre {
  margin-top: 2.5rem;
}

.marge-haut {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.nowrap {
  white-space: nowrap;
}

/* --- Animations d'apparition --------------------------------------------- */

.apparition {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.apparition[data-vu="true"] {
  opacity: 1;
  transform: none;
}

.sans-js .apparition {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .apparition {
    opacity: 1;
    transform: none;
  }
}

/* --- Impression ---------------------------------------------------------- */

@media print {
  .entete,
  .pied__grille,
  .visionneuse,
  .bouton,
  .agenda {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
  }

  .heros,
  .entete-page,
  .bandeau {
    color: #000;
    min-height: 0;
    padding-block: 1rem;
  }

  .heros__fond,
  .entete-page__fond,
  .bandeau__fond,
  .heros::after,
  .entete-page::after,
  .bandeau::after {
    display: none;
  }

  .heros h1,
  .entete-page h1 {
    color: #000;
  }
}
