/* ==========================================================================
   NaturaYoga30 — Feuille de style principale
   Charte graphique : bordeaux #7D3C4A / rose poudré #F3DFE2
   Titres : Lora (serif) — Texte : Open Sans
   ========================================================================== */

/* --- 1. Variables de couleur et de police --------------------------------
   Pour changer une couleur sur TOUT le site, modifie la valeur ici.
   -------------------------------------------------------------------------- */
:root {
  --bordeaux:        #7D3C4A;
  --bordeaux-fonce:  #5E2C37;
  --bordeaux-clair:  #9B5766;
  --rose-poudre:     #F3DFE2;
  --rose-pale:       #FAF1F2;
  --creme:           #FDFAF8;
  --sable:           #E8DCD3;
  --texte:           #3A2B2E;
  --texte-doux:      #6B5A5E;
  --blanc:           #FFFFFF;

  --serif:  'Lora', Georgia, 'Times New Roman', serif;
  --sans:   'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --largeur-max: 1140px;
  --largeur-texte: 720px;

  --ombre-douce: 0 2px 12px rgba(125, 60, 74, 0.07);
  --ombre-carte: 0 4px 24px rgba(125, 60, 74, 0.10);
  --transition: 0.25s ease;
}

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

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

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--texte);
  background: var(--creme);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--bordeaux); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.25;
  color: var(--bordeaux);
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }

p { margin: 0 0 1.2em; }

/* --- 3. Conteneurs et sections ------------------------------------------- */
.conteneur {
  width: 100%;
  max-width: var(--largeur-max);
  margin: 0 auto;
  padding: 0 24px;
}

.conteneur-texte {
  max-width: var(--largeur-texte);
  margin: 0 auto;
}

/* Hauteur des sections. Diminue ces valeurs pour resserrer encore le site,
   augmente-les pour aérer. */
.section {
  padding: clamp(42px, 6vw, 72px) 0;
}

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

.section--bordeaux {
  background: var(--bordeaux);
  color: var(--rose-poudre);
}
.section--bordeaux h1,
.section--bordeaux h2,
.section--bordeaux h3 { color: var(--blanc); }

.section__titre {
  text-align: center;
  margin-bottom: 0.4em;
}

.section__intro {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2.2rem;
  color: var(--texte-doux);
  font-size: 1.08rem;
}

/* Variante large : pour les phrases qu'on veut garder sur une seule ligne */
.section__intro--large { max-width: 940px; }
.section--bordeaux .section__intro { color: rgba(255, 255, 255, 0.85); }

/* Petit intitulé en majuscules au-dessus d'un titre */
.surtitre {
  display: block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bordeaux-clair);
  margin-bottom: 1rem;
}
.section--bordeaux .surtitre { color: rgba(255, 255, 255, 0.7); }

/* --- 4. En-tête et navigation -------------------------------------------- */
.entete {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 250, 248, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(125, 60, 74, 0.10);
}

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

.logo {
  display: flex;
  align-items: center;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--bordeaux);
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* Le fichier logo.png est détouré au plus juste : une simple hauteur suffit. */
.logo img {
  height: 40px;
  width: auto;
}

@media (max-width: 400px) {
  .logo img { height: 32px; }
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--texte);
  text-decoration: none;
  padding: 6px 0;
  position: relative;
  transition: color var(--transition);
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--bordeaux);
  transition: width var(--transition);
}

.nav a:hover { color: var(--bordeaux); }
.nav a:hover::after,
.nav a[aria-current='page']::after { width: 100%; }
.nav a[aria-current='page'] { color: var(--bordeaux); }

/* Le bouton « S'inscrire » du menu garde son texte blanc en toutes circonstances.
   Ces règles doivent rester APRÈS celles ci-dessus, sinon la couleur bordeaux
   de « page courante » l'emporte et le texte disparaît sur le fond bordeaux. */
.nav a.bouton,
.nav a.bouton:hover,
.nav a.bouton[aria-current='page'] { color: var(--blanc); }

/* Sur sa propre page, pas de soulignement sous le bouton */
.nav a.bouton::after { display: none; }

/* Le bouton du menu mobile — masqué sur grand écran */
.menu-burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
  color: var(--bordeaux);
}
.menu-burger svg { display: block; }

/* --- 5. Boutons ----------------------------------------------------------- */
.bouton {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 15px 34px;
  border-radius: 2px;
  border: 1.5px solid var(--bordeaux);
  background: var(--bordeaux);
  color: var(--blanc);
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              transform var(--transition), box-shadow var(--transition);
}

.bouton:hover {
  background: var(--bordeaux-fonce);
  border-color: var(--bordeaux-fonce);
  transform: translateY(-2px);
  box-shadow: var(--ombre-carte);
}

.bouton--vide {
  background: transparent;
  color: var(--bordeaux);
}
.bouton--vide:hover {
  background: var(--bordeaux);
  color: var(--blanc);
}

.bouton--clair {
  background: var(--blanc);
  border-color: var(--blanc);
  color: var(--bordeaux);
}
.bouton--clair:hover {
  background: var(--rose-poudre);
  border-color: var(--rose-poudre);
  color: var(--bordeaux-fonce);
}

.bouton--vide-clair {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--blanc);
}
.bouton--vide-clair:hover {
  background: var(--blanc);
  border-color: var(--blanc);
  color: var(--bordeaux);
}

.bouton--large { width: 100%; }

.groupe-boutons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.groupe-boutons--centre { justify-content: center; }

/* --- 6. Bannière d'accueil (hero) ---------------------------------------- */
.hero {
  position: relative;
  min-height: clamp(520px, 82vh, 760px);
  display: flex;
  align-items: center;
  text-align: center;
  background: linear-gradient(150deg, var(--rose-poudre) 0%, var(--sable) 100%);
  overflow: hidden;
}

/* Bannière avec photo de fond.
   Pour changer la photo : modifie le nom de fichier ci-dessous.
   « center 62% » cadre sur le bas de l'image, là où sont les personnes. */
.hero--photo {
  background: url('../images/cours-groupe-domaine.jpg') center 62% / cover no-repeat;
}

/* Voile bordeaux qui assombrit la photo pour garder le texte lisible */
.hero--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(63, 28, 36, 0.55), rgba(63, 28, 36, 0.72));
}

.hero--photo .hero__contenu h1,
.hero--photo .hero__contenu .hero__accroche { color: var(--blanc); }
.hero--photo .surtitre { color: rgba(255, 255, 255, 0.82); }

.hero__contenu {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px;
}

.hero__contenu h1 { margin-bottom: 0.35em; }

.hero__accroche {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-style: italic;
  color: var(--bordeaux);
  margin-bottom: 2.2rem;
}

/* --- 7. Cartes de retraite ------------------------------------------------ */
/* 4 colonnes sur grand écran (les 4 retraites tiennent sur une ligne),
   puis 2, puis 1 en descendant vers le mobile. */
.grille-retraites {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1080px) {
  .grille-retraites { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

@media (max-width: 620px) {
  .grille-retraites { grid-template-columns: 1fr; }
}

/* Variante à deux cartes seulement, si tu en ajoutes un jour */
.grille-retraites--duo {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 620px) {
  .grille-retraites--duo { grid-template-columns: 1fr; }
}

.carte {
  background: var(--blanc);
  border: 1px solid rgba(125, 60, 74, 0.12);
  border-radius: 4px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.carte__duree {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bordeaux);
  background: var(--rose-poudre);
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 18px;
}

.carte__dates {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--bordeaux);
  margin: 0 0 4px;
}

.carte__lieu {
  font-size: 0.95rem;
  color: var(--texte-doux);
  margin: 0 0 12px;
}

/* Nombre de places encore disponibles.
   Pour le modifier : change simplement le chiffre dans le HTML.
   Pour masquer la ligne sur une retraite, supprime tout le <p>. */
.carte__places {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--bordeaux-clair);
  margin: 0 0 20px;
}

.carte__places::before {
  content: '';
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

/* Variante quand il reste peu de places : ajoute la classe
   carte__places--peu pour attirer l'œil. */
.carte__places--peu { color: var(--bordeaux); }

.carte__tarifs {
  list-style: none;
  margin: 0 0 24px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(125, 60, 74, 0.12);
}

.carte__tarifs li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 7px 0;
  font-size: 0.95rem;
}

.carte__tarifs .prix {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--bordeaux);
  white-space: nowrap;
}

.carte .bouton { margin-top: auto; }

/* --- 8. Blocs "atouts" (icône + texte) ----------------------------------- */
.grille-atouts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px 32px;
}

.atout { text-align: center; }

/* Les icônes sont les dessins de la brochure (fichiers SVG du dossier images/icones) */
.atout__icone {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 18px;
  display: block;
  color: var(--bordeaux);
}
.section--bordeaux .atout__icone { color: var(--rose-poudre); }

.atout h3 { margin-bottom: 0.5em; }

.atout p {
  font-size: 0.97rem;
  color: var(--texte-doux);
  margin: 0;
}
.section--bordeaux .atout p { color: rgba(255, 255, 255, 0.82); }

/* --- 9. Formulaire -------------------------------------------------------- */
.formulaire {
  background: var(--blanc);
  border: 1px solid rgba(125, 60, 74, 0.12);
  border-radius: 4px;
  padding: clamp(28px, 5vw, 48px);
  box-shadow: var(--ombre-douce);
}

.champ { margin-bottom: 24px; }

.champ label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--texte);
  margin-bottom: 8px;
}

.champ .obligatoire { color: var(--bordeaux-clair); }

.champ__aide {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--texte-doux);
  margin-top: 4px;
}

.champ input[type='text'],
.champ input[type='email'],
.champ input[type='tel'],
.champ input[type='number'],
.champ select,
.champ textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--texte);
  padding: 13px 15px;
  border: 1.5px solid rgba(125, 60, 74, 0.22);
  border-radius: 3px;
  background: var(--creme);
  transition: border-color var(--transition), box-shadow var(--transition);
}

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

.champ select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath fill='none' stroke='%237D3C4A' stroke-width='2' d='M1 1l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.champ input:focus,
.champ select:focus,
.champ textarea:focus {
  outline: none;
  border-color: var(--bordeaux);
  box-shadow: 0 0 0 3px rgba(125, 60, 74, 0.12);
}

.champ--duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Groupes de cases à cocher / boutons radio */
.options { display: grid; gap: 10px; }

/* Variante en colonnes, pour les listes de choix courts (moyens de paiement) */
.options--compact {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.option {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 13px 15px;
  border: 1.5px solid rgba(125, 60, 74, 0.18);
  border-radius: 3px;
  background: var(--creme);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.option:hover { border-color: var(--bordeaux-clair); }

.option input {
  margin: 5px 0 0;
  accent-color: var(--bordeaux);
  flex-shrink: 0;
}

.option span {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
}

.formulaire__note {
  font-size: 0.9rem;
  color: var(--texte-doux);
  background: var(--rose-pale);
  border-left: 3px solid var(--bordeaux-clair);
  padding: 16px 20px;
  margin: 0 0 28px;
}
.formulaire__note :last-child { margin-bottom: 0; }

fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 24px;
}

legend {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--bordeaux);
  padding: 0;
  margin-bottom: 16px;
}

.separateur {
  border: 0;
  border-top: 1px solid rgba(125, 60, 74, 0.14);
  margin: 36px 0;
}

/* --- 10. FAQ (accordéon) -------------------------------------------------- */
.faq { max-width: var(--largeur-texte); margin: 0 auto; }

.faq details {
  border-bottom: 1px solid rgba(125, 60, 74, 0.16);
}

.faq summary {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bordeaux);
  padding: 22px 44px 22px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color var(--transition);
}

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

.faq summary::after {
  content: '+';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--bordeaux-clair);
  transition: transform var(--transition);
}

.faq details[open] summary::after {
  content: '−';
}

.faq summary:hover { color: var(--bordeaux-fonce); }

.faq details > *:not(summary) {
  margin-bottom: 22px;
  color: var(--texte-doux);
  font-size: 0.99rem;
}

/* --- 11. Galerie ---------------------------------------------------------- */
.galerie {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.galerie figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 3px;
  background: var(--sable);
}

.galerie img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.galerie figure:hover img { transform: scale(1.05); }

/* Emplacement en attente de photo (utile si tu ajoutes une case vide) */
.photo-attente {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--rose-poudre), var(--sable));
  color: var(--bordeaux-clair);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px;
}

/* --- 12. Bloc "à propos" (texte + photo) --------------------------------- */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

/* Variante : photo à droite au lieu de la gauche */
.duo--inverse .duo__photo { order: 2; }

@media (max-width: 860px) {
  .duo--inverse .duo__photo { order: 0; }
}

.duo__photo {
  aspect-ratio: 4 / 5;
  border-radius: 3px;
  overflow: hidden;
  background: var(--sable);
}

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

/* --- 13. Contact ---------------------------------------------------------- */
.liste-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 22px;
}

.liste-contact li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.liste-contact svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 4px;
  color: var(--bordeaux);
}

.liste-contact strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--texte-doux);
  margin-bottom: 2px;
}

.liste-contact a {
  color: var(--bordeaux);
  text-decoration: none;
  font-size: 1.05rem;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}
.liste-contact a:hover { border-bottom-color: var(--bordeaux); }

/* --- 14. Pied de page ----------------------------------------------------- */
.pied {
  background: var(--bordeaux-fonce);
  color: rgba(255, 255, 255, 0.72);
  padding: 60px 0 32px;
  font-size: 0.92rem;
}

.pied__grille {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.pied h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}

.pied__logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blanc);
  text-decoration: none;
  display: block;
  margin-bottom: 16px;
}

/* Version blanche du logo, sur le fond bordeaux du pied de page */
.pied__logo img {
  height: 38px;
  width: auto;
}

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

.pied a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color var(--transition);
}
.pied a:hover { color: var(--blanc); }

.pied__bas {
  padding-top: 26px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}
.pied__bas p { margin: 0; }

/* --- 15. Bandeau de titre (pages intérieures) ---------------------------- */
.bandeau {
  background: var(--rose-poudre);
  padding: clamp(52px, 8vw, 88px) 0;
  text-align: center;
}

.bandeau h1 { margin-bottom: 0.3em; }

.bandeau p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--texte-doux);
  font-size: 1.08rem;
}

/* --- 15b. Programme (liste à puces cochées) ------------------------------- */
.programme {
  display: grid;
  /* min(420px, 100%) : deux colonnes sur grand écran, une seule sur téléphone
     sans jamais dépasser la largeur de l'écran. */
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
  gap: 10px 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.programme li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(125, 60, 74, 0.12);
  font-size: 1rem;
}

/* L'icône dessinée de la brochure, à gauche de chaque ligne */
.programme__icone {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.programme li em {
  font-style: normal;
  color: var(--texte-doux);
  font-size: 0.92rem;
}

/* --- 15c. Le lieu : photos en mosaïque ------------------------------------ */
.mosaique {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 190px 190px;
  gap: 14px;
}

.mosaique figure {
  margin: 0;
  overflow: hidden;
  border-radius: 3px;
  background: var(--sable);
}

.mosaique figure:first-child {
  grid-row: span 2;
}

.mosaique img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

@media (max-width: 760px) {
  .mosaique {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 150px;
  }
  .mosaique figure:first-child { grid-column: span 2; grid-row: auto; }
}

/* --- 15d. Comment venir --------------------------------------------------- */
.acces {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.acces__bloc {
  background: var(--blanc);
  border: 1px solid rgba(125, 60, 74, 0.12);
  border-radius: 4px;
  padding: 28px 26px;
}

.acces__bloc svg {
  width: 34px;
  height: 34px;
  color: var(--bordeaux);
  margin-bottom: 14px;
}

.acces__bloc h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5em;
}

.acces__bloc p {
  font-size: 0.96rem;
  color: var(--texte-doux);
  margin: 0 0 0.7em;
}
.acces__bloc p:last-child { margin-bottom: 0; }

.acces__bloc strong { color: var(--texte); }

/* Encadré horaires */
.horaires {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  background: var(--rose-poudre);
  border-radius: 4px;
  padding: 30px 34px;
  margin-top: 32px;
}

.horaires div strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bordeaux-clair);
  margin-bottom: 6px;
}

.horaires div span {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--bordeaux);
}

/* --- 16. Accessibilité ---------------------------------------------------- */
.lien-evitement {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--bordeaux);
  color: var(--blanc);
  padding: 12px 20px;
  z-index: 999;
}
.lien-evitement:focus { left: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- 17. Adaptation mobile ------------------------------------------------ */
@media (max-width: 860px) {
  .duo { grid-template-columns: 1fr; }
  .duo__photo { max-width: 420px; margin: 0 auto; }
  .pied__grille { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .menu-burger { display: block; }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--creme);
    border-bottom: 1px solid rgba(125, 60, 74, 0.12);
    box-shadow: var(--ombre-carte);
    padding: 8px 24px 20px;
  }

  .nav--ouvert { display: flex; }

  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(125, 60, 74, 0.08);
  }
  .nav a::after { display: none; }
  .nav .bouton {
    margin-top: 14px;
    border-bottom: 1.5px solid var(--bordeaux);
  }

  .entete { position: relative; }
  .entete__interieur { position: relative; }
}

@media (max-width: 560px) {
  body { font-size: 1rem; }
  .champ--duo { grid-template-columns: 1fr; }
  .pied__grille { grid-template-columns: 1fr; gap: 32px; }
  .groupe-boutons .bouton { width: 100%; }
}

/* --- 18. Impression ------------------------------------------------------- */
@media print {
  .entete, .pied, .menu-burger, .bouton { display: none; }
  body { background: #fff; color: #000; }
}
