/* =========================================================================
   M&Vous Massages — feuille de style principale
   -------------------------------------------------------------------------
   Pour changer l'identité visuelle du site, il suffit de modifier
   les variables de couleur ci-dessous (bloc :root). Rien d'autre.
   ========================================================================= */

/* ------------------------------------------------------------------ 
   1. Jetons de design (couleurs, typo, espacements)
   ------------------------------------------------------------------ */
:root {
  /* Couleurs — palette bien-être : vert profond, ivoire, framboise sourde */
  --nuit: #16302b;
  --jade: #2f6157;
  --jade-clair: #448272;
  --sauge: #9fbdb0;
  --sauge-pale: #d7e4dc;
  --ivoire: #faf6ef;
  --sable: #efe6d8;
  --sable-fonce: #e0d3bf;
  --framboise: #8e4a5b;
  --framboise-clair: #b3707f;
  --encre: #1d2b27;
  --encre-doux: #4a5b55;
  --blanc: #ffffff;

  /* Typographie */
  --display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --texte: "Karla", "Helvetica Neue", Arial, sans-serif;

  /* Échelle typographique fluide */
  --t-xs: 0.78rem;
  --t-sm: 0.9rem;
  --t-base: clamp(1rem, 0.97rem + 0.15vw, 1.075rem);
  --t-lg: clamp(1.1rem, 1.04rem + 0.3vw, 1.3rem);
  --t-xl: clamp(1.35rem, 1.2rem + 0.7vw, 1.75rem);
  --t-2xl: clamp(1.7rem, 1.4rem + 1.4vw, 2.6rem);
  --t-3xl: clamp(2.1rem, 1.5rem + 2.8vw, 3.9rem);

  /* Rythme */
  --gouttiere: clamp(1.15rem, 4vw, 2rem);
  --section-y: clamp(3.5rem, 8vw, 7rem);
  --largeur: 1180px;
  --largeur-texte: 68ch;

  /* Formes */
  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 26px;
  --ombre: 0 14px 40px -22px rgba(22, 48, 43, 0.45);
  --ombre-forte: 0 26px 60px -30px rgba(22, 48, 43, 0.6);
  --bordure: 1px solid rgba(47, 97, 87, 0.16);
}

/* ------------------------------------------------------------------ 
   2. Réinitialisation et bases
   ------------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--ivoire);
  color: var(--encre);
  font-family: var(--texte);
  font-size: var(--t-base);
  line-height: 1.72;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--jade);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--framboise);
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.14;
  color: var(--nuit);
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}

h1 {
  font-size: var(--t-3xl);
}
h2 {
  font-size: var(--t-2xl);
}
h3 {
  font-size: var(--t-xl);
}
h4 {
  font-size: var(--t-lg);
}

p {
  margin: 0 0 1.1em;
}

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

ul,
ol {
  margin: 0 0 1.1em;
  padding-left: 1.15em;
}

li {
  margin-bottom: 0.4em;
}

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

em {
  font-style: italic;
}

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

::selection {
  background: var(--sauge-pale);
  color: var(--nuit);
}

/* ------------------------------------------------------------------ 
   3. Utilitaires de mise en page
   ------------------------------------------------------------------ */
.contenu {
  width: 100%;
  max-width: var(--largeur);
  margin-inline: auto;
  padding-inline: var(--gouttiere);
}

.contenu--etroit {
  max-width: 860px;
}

.section {
  padding-block: var(--section-y);
  scroll-margin-top: 84px;
}

.section--sable {
  background: var(--sable);
}

.section--sauge {
  background: var(--sauge-pale);
}

.section--nuit {
  background: var(--nuit);
  color: var(--sable);
}

.section--nuit h2,
.section--nuit h3,
.section--nuit h4 {
  color: var(--blanc);
}

.section--nuit a {
  color: var(--sauge);
}

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

.saut-contenu {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -120%);
  z-index: 200;
  background: var(--framboise);
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.saut-contenu:focus {
  transform: translate(-50%, 0);
  color: #fff;
}

/* En-tête de section */
.entete-section {
  max-width: 42rem;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}

.entete-section--centre {
  margin-inline: auto;
  text-align: center;
}

.surtitre {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--texte);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--framboise);
  margin: 0 0 0.9rem;
}

.surtitre::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  flex: none;
}

.entete-section--centre .surtitre::after {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  flex: none;
}

.chapo {
  font-size: var(--t-lg);
  color: var(--encre-doux);
  max-width: var(--largeur-texte);
}

.section--nuit .chapo {
  color: var(--sauge-pale);
}

/* ------------------------------------------------------------------ 
   4. Boutons
   ------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--texte);
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.22s ease, color 0.22s ease,
    border-color 0.22s ease, transform 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--plein {
  background: var(--framboise);
  color: #fff;
  border-color: var(--framboise);
}

.btn--plein:hover {
  background: var(--nuit);
  border-color: var(--nuit);
  color: #fff;
}

.btn--ligne {
  background: transparent;
  color: var(--nuit);
  border-color: rgba(22, 48, 43, 0.35);
}

.btn--ligne:hover {
  background: var(--nuit);
  border-color: var(--nuit);
  color: #fff;
}

.section--nuit .btn--ligne {
  color: var(--sable);
  border-color: rgba(255, 255, 255, 0.4);
}

.section--nuit .btn--ligne:hover {
  background: var(--sable);
  color: var(--nuit);
  border-color: var(--sable);
}

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

/* ------------------------------------------------------------------ 
   5. En-tête / navigation
   ------------------------------------------------------------------ */
.entete {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 239, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.entete.est-collee {
  border-bottom-color: rgba(47, 97, 87, 0.14);
  box-shadow: 0 8px 24px -20px rgba(22, 48, 43, 0.8);
}

.entete__interieur {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  text-decoration: none;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--nuit);
  letter-spacing: -0.01em;
  flex: none;
}

.logo span {
  color: var(--framboise);
}

.logo small {
  display: block;
  font-family: var(--texte);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--encre-doux);
  font-weight: 700;
}

.logo__bloc {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.4vw, 1.5rem);
}

.nav__liste {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1.3vw, 1.35rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__lien {
  position: relative;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--encre);
  padding: 0.4rem 0;
  white-space: nowrap;
}

.nav__lien::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--framboise);
  transition: width 0.25s ease;
}

.nav__lien:hover::after,
.nav__lien[aria-current="true"]::after {
  width: 100%;
}

.nav__lien[aria-current="true"] {
  color: var(--framboise);
}

.entete .btn--tel {
  padding: 0.7rem 1.25rem;
  font-size: 0.78rem;
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border: var(--bordure);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex: none;
}

.burger span,
.burger span::before,
.burger span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--nuit);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.burger span {
  position: relative;
}

.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
}

.burger span::before {
  top: -6px;
}
.burger span::after {
  top: 6px;
}

.burger[aria-expanded="true"] span {
  background: transparent;
}

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

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

@media (max-width: 1020px) {
  .burger {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: 72px 0 auto 0;
    max-height: calc(100dvh - 72px);
    overflow-y: auto;
    background: var(--ivoire);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem var(--gouttiere) 2.4rem;
    border-bottom: 1px solid rgba(47, 97, 87, 0.16);
    transform: translateY(-130%);
    visibility: hidden;
    transition: transform 0.32s ease, visibility 0.32s;
  }

  .nav.est-ouverte {
    transform: translateY(0);
    visibility: visible;
  }

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

  .nav__liste li {
    margin: 0;
    border-bottom: 1px solid rgba(47, 97, 87, 0.12);
  }

  .nav__lien {
    display: block;
    padding: 0.95rem 0.2rem;
    font-size: 1.02rem;
  }

  .nav__lien::after {
    display: none;
  }

  .entete .btn--tel {
    margin-top: 1.4rem;
    width: 100%;
  }
}

/* ------------------------------------------------------------------ 
   6. Héros
   ------------------------------------------------------------------ */
.heros {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    170deg,
    var(--sauge-pale) 0%,
    var(--ivoire) 55%,
    var(--sable) 100%
  );
  padding-block: clamp(3rem, 7vw, 5.5rem) clamp(3.5rem, 8vw, 6rem);
}

.heros__deco {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.5;
  color: var(--jade);
}

.heros__grille {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.heros__titre {
  margin-bottom: 0.5em;
}

.heros__signature {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.15rem, 0.9rem + 1vw, 1.6rem);
  color: var(--framboise);
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.heros__texte {
  font-size: var(--t-lg);
  color: var(--encre-doux);
  max-width: 34rem;
}

.heros__reperes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.8rem;
  padding: 0;
  list-style: none;
}

.heros__reperes li {
  margin: 0;
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--jade);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(47, 97, 87, 0.2);
  border-radius: 999px;
  padding: 0.42rem 0.95rem;
}

/* Carte « carte de visite » du héros */
.carte-visite {
  background: var(--blanc);
  border-radius: var(--r-lg);
  box-shadow: var(--ombre-forte);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  border: 1px solid rgba(47, 97, 87, 0.1);
}

.carte-visite h2 {
  font-size: var(--t-xl);
  margin-bottom: 0.35em;
}

.carte-visite__liste {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.carte-visite__liste li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.7rem 0;
  border-bottom: 1px dashed rgba(47, 97, 87, 0.22);
  font-size: var(--t-sm);
  margin: 0;
}

.carte-visite__liste li:last-child {
  border-bottom: 0;
}

.carte-visite__liste svg {
  flex: none;
  width: 20px;
  height: 20px;
  color: var(--framboise);
  margin-top: 2px;
}

@media (max-width: 900px) {
  .heros__grille {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------------------ 
   7. Grilles et cartes génériques
   ------------------------------------------------------------------ */
.grille {
  display: grid;
  gap: clamp(1.1rem, 2.4vw, 1.8rem);
}

.grille--2 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
}

.grille--3 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
}

.carte {
  background: var(--blanc);
  border: var(--bordure);
  border-radius: var(--r-md);
  padding: clamp(1.4rem, 2.6vw, 2rem);
  box-shadow: var(--ombre);
}

.section--sable .carte,
.section--sauge .carte {
  box-shadow: none;
}

.carte h3 {
  font-size: var(--t-lg);
}

.carte ul {
  padding-left: 1.05em;
  font-size: var(--t-sm);
  color: var(--encre-doux);
}

.carte li::marker {
  color: var(--framboise-clair);
}

/* ------------------------------------------------------------------ 
   8. Signature : la carte des massages (cartes « destination »)
   ------------------------------------------------------------------ */
.carte-massage {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--blanc);
  border: var(--bordure);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  box-shadow: var(--ombre);
}

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

.carte-massage__haut {
  padding: 1.5rem clamp(1.3rem, 2.4vw, 1.8rem) 1.2rem;
  background: linear-gradient(180deg, var(--sauge-pale), transparent);
}

.carte-massage__destination {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jade);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(47, 97, 87, 0.25);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  margin-bottom: 0.9rem;
}

.carte-massage__titre {
  margin-bottom: 0.25em;
  font-size: var(--t-xl);
}

.carte-massage__accroche {
  font-family: var(--display);
  font-style: italic;
  color: var(--framboise);
  font-size: var(--t-base);
  margin: 0;
}

.carte-massage__corps {
  padding: 1.2rem clamp(1.3rem, 2.4vw, 1.8rem) 0;
  flex: 1 1 auto;
  font-size: var(--t-sm);
  color: var(--encre-doux);
}

.carte-massage__mention {
  display: block;
  margin-top: 0.9rem;
  font-size: var(--t-xs);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--jade);
}

.carte-massage__tarifs {
  margin-top: 1.4rem;
  padding: 1rem clamp(1.3rem, 2.4vw, 1.8rem);
  border-top: 2px dashed rgba(47, 97, 87, 0.25);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  background: var(--ivoire);
}

.tarif {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.tarif__duree {
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--encre-doux);
  font-weight: 700;
}

.tarif__prix {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--nuit);
}

/* ------------------------------------------------------------------ 
   9. Tableaux
   ------------------------------------------------------------------ */
.tableau-enveloppe {
  overflow-x: auto;
  border-radius: var(--r-md);
  border: var(--bordure);
  background: var(--blanc);
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 340px;
  font-size: var(--t-sm);
}

caption {
  text-align: left;
  padding: 1rem 1.2rem 0;
  font-weight: 700;
  color: var(--encre-doux);
}

th,
td {
  padding: 0.85rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid rgba(47, 97, 87, 0.12);
}

thead th {
  background: var(--sauge-pale);
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nuit);
}

tbody tr:last-child td {
  border-bottom: 0;
}

td:last-child,
th:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--nuit);
}

/* ------------------------------------------------------------------ 
   10. Formules
   ------------------------------------------------------------------ */
.formule {
  display: flex;
  flex-direction: column;
  background: var(--blanc);
  border: var(--bordure);
  border-radius: var(--r-md);
  padding: clamp(1.5rem, 2.8vw, 2.1rem);
  height: 100%;
}

.formule__nom {
  font-family: var(--texte);
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--framboise);
  margin-bottom: 0.5rem;
}

.formule__accroche {
  font-family: var(--display);
  font-style: italic;
  font-size: var(--t-lg);
  color: var(--nuit);
  margin-bottom: 0.9rem;
}

.formule__protocole {
  font-size: var(--t-sm);
  background: var(--sable);
  border-radius: var(--r-sm);
  padding: 0.85rem 1rem;
  margin-bottom: 1.1rem;
  color: var(--encre);
}

.formule__prix {
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 2px dashed rgba(47, 97, 87, 0.25);
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.formule__prix strong {
  font-family: var(--display);
  font-size: 1.75rem;
  color: var(--framboise);
}

.formule__prix s {
  color: var(--encre-doux);
  font-size: var(--t-sm);
}

.formule__duree {
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--encre-doux);
  width: 100%;
}

/* ------------------------------------------------------------------ 
   11. Accordéons (à propos, sécurité, CGV)
   ------------------------------------------------------------------ */
.accordeon {
  border: var(--bordure);
  border-radius: var(--r-md);
  background: var(--blanc);
  overflow: hidden;
}

.accordeon + .accordeon {
  margin-top: 0.9rem;
}

.accordeon > summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem clamp(1.1rem, 2.4vw, 1.6rem);
  font-family: var(--display);
  font-size: var(--t-lg);
  font-weight: 600;
  color: var(--nuit);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.accordeon > summary::after {
  content: "";
  flex: none;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--framboise);
  border-bottom: 2px solid var(--framboise);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.25s ease;
}

.accordeon[open] > summary::after {
  transform: rotate(-135deg) translate(-2px, -2px);
}

.accordeon > summary:hover {
  background: var(--sable);
}

.accordeon__corps {
  padding: 0 clamp(1.1rem, 2.4vw, 1.6rem) 1.5rem;
  border-top: 1px solid rgba(47, 97, 87, 0.12);
  padding-top: 1.3rem;
}

/* ------------------------------------------------------------------ 
   12. Témoignages
   ------------------------------------------------------------------ */
.temoignage {
  background: var(--blanc);
  border: var(--bordure);
  border-radius: var(--r-md);
  padding: clamp(1.6rem, 3vw, 2.3rem);
  position: relative;
}

.temoignage::before {
  content: "\201C";
  font-family: var(--display);
  font-size: 5rem;
  line-height: 1;
  color: var(--sauge);
  position: absolute;
  top: 0.4rem;
  right: 1.4rem;
  opacity: 0.6;
}

.temoignage blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: var(--t-lg);
  font-style: italic;
  color: var(--nuit);
  line-height: 1.55;
}

.temoignage figcaption {
  margin-top: 1.2rem;
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--framboise);
}

.temoignage figcaption span {
  display: block;
  font-weight: 400;
  color: var(--encre-doux);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: var(--t-xs);
  margin-top: 0.25rem;
}

/* ------------------------------------------------------------------ 
   13. Formulaire de contact
   ------------------------------------------------------------------ */
.form {
  display: grid;
  gap: 1rem;
}

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

.champ {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.champ label {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--encre-doux);
}

.champ input,
.champ textarea,
.champ select {
  font-family: var(--texte);
  font-size: var(--t-base);
  color: var(--encre);
  background: var(--blanc);
  border: 1px solid rgba(47, 97, 87, 0.28);
  border-radius: var(--r-sm);
  padding: 0.8rem 0.95rem;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.champ textarea {
  min-height: 150px;
  resize: vertical;
}

.champ input:focus,
.champ textarea:focus,
.champ select:focus {
  border-color: var(--jade);
  box-shadow: 0 0 0 3px rgba(47, 97, 87, 0.15);
  outline: none;
}

.champ--rgpd {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.7rem;
}

.champ--rgpd input {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 3px;
  accent-color: var(--framboise);
}

.champ--rgpd label {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  font-size: var(--t-xs);
  line-height: 1.6;
}

.pot-de-miel {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.form__retour {
  font-size: var(--t-sm);
  font-weight: 700;
  padding: 0.9rem 1.1rem;
  border-radius: var(--r-sm);
  display: none;
}

.form__retour.est-visible {
  display: block;
}

.form__retour--ok {
  background: var(--sauge-pale);
  color: var(--nuit);
  border: 1px solid var(--jade);
}

.form__retour--ko {
  background: #fbe9ec;
  color: #7a2233;
  border: 1px solid var(--framboise);
}

.section--nuit .carte {
  color: var(--encre);
}

.section--nuit .carte h2,
.section--nuit .carte h3,
.section--nuit .carte h4 {
  color: var(--nuit);
}

.section--nuit .carte a {
  color: var(--jade);
}

.section--nuit .tableau-enveloppe,
.section--nuit .tableau-enveloppe a {
  color: var(--encre);
}

/* Accordéon ciblé par une ancre : on le met en évidence */
.accordeon:target,
.accordeon[open]:target {
  border-color: var(--framboise);
  box-shadow: 0 0 0 3px rgba(142, 74, 91, 0.15);
}

/* ------------------------------------------------------------------ 
   14. Bloc contact / coordonnées
   ------------------------------------------------------------------ */
.coordonnees {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  gap: 1rem;
}

.coordonnees li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin: 0;
}

.coordonnees svg {
  flex: none;
  width: 22px;
  height: 22px;
  color: var(--framboise);
  margin-top: 3px;
}

.coordonnees strong {
  display: block;
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--encre-doux);
  font-weight: 700;
}

.section--nuit .coordonnees strong {
  color: var(--sauge);
}

.coordonnees a {
  font-size: var(--t-lg);
  text-decoration: none;
  font-weight: 700;
}

.horaires {
  width: 100%;
}

/* ------------------------------------------------------------------ 
   15. Pied de page
   ------------------------------------------------------------------ */
.pied {
  background: var(--nuit);
  color: var(--sauge-pale);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  font-size: var(--t-sm);
}

.pied a {
  color: var(--sauge-pale);
  text-decoration: none;
}

.pied a:hover {
  color: #fff;
  text-decoration: underline;
}

.pied__grille {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: 2.2rem;
}

.pied h2,
.pied h3 {
  color: #fff;
  font-size: var(--t-base);
  font-family: var(--texte);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.pied ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pied li {
  margin-bottom: 0.55rem;
}

.reseaux {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.reseaux a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.reseaux a:hover {
  background: var(--framboise);
  border-color: var(--framboise);
}

.reseaux svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
  color: #fff;
}

.pied__bas {
  margin-top: 2.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: var(--t-xs);
  letter-spacing: 0.04em;
}

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

.pied__bas li {
  margin: 0;
}

/* ------------------------------------------------------------------ 
   16. Bouton retour en haut
   ------------------------------------------------------------------ */
.haut-de-page {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--nuit);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s,
    background-color 0.2s ease;
}

.haut-de-page.est-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.haut-de-page:hover {
  background: var(--framboise);
}

.haut-de-page svg {
  width: 18px;
  height: 18px;
}

/* ------------------------------------------------------------------ 
   17. Pages légales
   ------------------------------------------------------------------ */
.page-legale {
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}

.page-legale h1 {
  font-size: var(--t-2xl);
}

.page-legale h2 {
  font-size: var(--t-xl);
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(47, 97, 87, 0.16);
}

.page-legale h2:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.page-legale dl {
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr;
  gap: 0.6rem 1.4rem;
  margin: 0 0 1.5rem;
}

.page-legale dt {
  font-weight: 700;
  color: var(--encre-doux);
  font-size: var(--t-sm);
}

.page-legale dd {
  margin: 0;
}

@media (max-width: 560px) {
  .page-legale dl {
    grid-template-columns: 1fr;
    gap: 0.15rem 0;
  }
  .page-legale dd {
    margin-bottom: 0.8rem;
  }
}

.fil-ariane {
  font-size: var(--t-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--encre-doux);
  margin-bottom: 1.5rem;
}

.fil-ariane a {
  text-decoration: none;
}

/* ------------------------------------------------------------------ 
   18. Notes, encarts
   ------------------------------------------------------------------ */
.encart {
  background: var(--sauge-pale);
  border-left: 4px solid var(--jade);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 1.1rem 1.3rem;
  font-size: var(--t-sm);
  margin-block: 1.5rem;
}

.encart--attention {
  background: #fbe9ec;
  border-left-color: var(--framboise);
}

.note {
  font-size: var(--t-xs);
  color: var(--encre-doux);
  line-height: 1.65;
}

.liste-plate {
  list-style: none;
  padding: 0;
}

.liste-plate li {
  padding-left: 1.6rem;
  position: relative;
}

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

.liste-colonnes {
  columns: 2;
  column-gap: 2.4rem;
}

@media (max-width: 640px) {
  .liste-colonnes {
    columns: 1;
  }
}

/* ------------------------------------------------------------------ 
   19. Animations d'apparition
   ------------------------------------------------------------------ */
.apparait {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.apparait.est-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .apparait {
    opacity: 1;
    transform: none;
  }
}

/* ------------------------------------------------------------------ 
   20. Impression
   ------------------------------------------------------------------ */
@media print {
  .entete,
  .haut-de-page,
  .groupe-btn,
  .form {
    display: none !important;
  }
  body {
    background: #fff;
  }
  .section {
    padding-block: 1.2rem;
  }
}
