/* ==========================================================================
   Elio Portraits — feuille de style unique
   Photographe portrait à Paris 12e — https://www.eliovideo.com
   Un seul fichier, mis en cache par le navigateur pour toutes les pages.
   ========================================================================== */

/* --------------------------------------------------------- 1. Variables -- */
:root {
  --or:          #d6b048;
  --noir-nav:    #2f2f2f;
  --noir-menu:   #222;
  --texte:       #2a2a2a;
  --texte-doux:  #d7d7d7;
  --rose:        #f5006c;
  --rose-vif:    #ff8ca3;
  --rose-pale:   #fef2f5;
  --rose-fond:   #fec8ff;
  --gris:        #fafafa;
  --gris-fonce:  #f8f8f8;
  --blanc:       #fff;

  --largeur-texte: 1024px;
  --largeur-site:  2100px;
  --largeur-nav:   1400px;

  --nav-hauteur:        83px;
  --nav-hauteur-mobile: 120px;
}

/* ------------------------------------------------------------ 2. Reset -- */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* filet de sécurité contre tout débordement latéral */
  font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-weight: 300;
  color: var(--texte);
  background: var(--blanc);
}

h1, h2, h3, h4, h5, h6, p, figure, blockquote, ul, ol {
  margin: 0;
  padding: 0;
}

ul, ol { list-style: none; }

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

a {
  color: inherit;
  text-decoration: none;
}

a:hover { text-decoration: underline; }

/* Cible de clic accessible au clavier */
a:focus-visible,
button:focus-visible,
label:focus-visible {
  outline: 3px solid var(--or);
  outline-offset: 2px;
}

/* Respect des préférences système « moins d'animations » */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ------------------------------------------------- 3. Typographie de base */
h1 {
  color: #000;
  padding: 30px 20px 20px;
  text-align: center;
  font-size: 5em;
  font-weight: 300;
  line-height: 1.05;
}

h2 {
  text-align: center;
  font-size: 3.1em;
  font-weight: 300;
}

h3 {
  text-align: center;
  font-size: 2.5em;
  font-weight: 300;
  line-height: 1;
}

p {
  text-align: center;
  font-size: 2.2em;
  font-weight: 100;
}

/* Titre décoratif : même rendu visuel qu'un h1, sans en être un.
   Permet de ne garder qu'un seul h1 par page (bon pour le référencement). */
.titre-affiche {
  color: #000;
  padding: 30px 20px 20px;
  text-align: center;
  font-size: 5em;
  font-weight: 300;
  line-height: 1.05;
}

.or       { color: var(--or); }
.blanc    { color: var(--blanc); }
.noir     { color: #000; }
.regular  { font-weight: 400; }
.serre    { line-height: .9; }

@media (min-width: 1171px) {
  h1,
  .titre-affiche {
    padding: 20px;
    font-size: 4em;
    font-weight: 100;
  }
  h2 { font-size: 2.5em; }
  p  { font-size: 1.7em; }
}

@media (max-width: 1024px) {
  p { font-weight: 300; }
}

/* ------------------------------------------------------ 4. Mise en page -- */
.site {
  width: 100%;
  max-width: var(--largeur-site);
  margin: auto;
}

.contenu {
  width: 100%;
  max-width: var(--largeur-texte);
  margin: auto;
}

.bloc-texte {
  margin: 20px;
}

@media (min-width: 1171px) { .bloc-texte { margin: 20px 200px 0; } }
@media (min-width: 1600px) { .bloc-texte { margin: 20px 300px 0; } }

.filet      { width: 100%; height: 8px; background: var(--blanc); }
.filet-gris { width: 100%; height: 8px; background: var(--gris); }

.espace-40  { height: 40px; }
.espace-50  { height: 50px; }
.espace-80  { height: 80px; }
.espace-100 { height: 100px; }
.espace-150 { height: 150px; }

/* --------------------------------------------------------- 5. En-tête -- */
.entete {
  position: relative;
  z-index: 1000;
  background: var(--noir-nav);
  border-bottom: 4px solid var(--or);
}

.entete-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: var(--largeur-nav);
  min-height: var(--nav-hauteur);
  margin: 0 auto;
  padding: 0 40px;
}

.logo img { width: 40px; }
.logo:hover img { opacity: .8; }

.nav-principale { margin-left: auto; }

.menu {
  display: flex;
  align-items: center;
  gap: 67px;
}

.menu a {
  color: var(--blanc);
  font-size: 1.2em;
  font-weight: 100;
  white-space: nowrap;
}

.menu a:hover {
  color: lightgray;
  text-decoration: none; /* le changement de couleur suffit */
}

.menu .lien-instagram img { width: 23px; }
.menu .lien-instagram:hover img { opacity: .8; }

.menu .lien-tarifs { font-weight: 300; }

.menu a[aria-current="page"] {
  color: var(--blanc);
  border-bottom: 1px solid var(--or);
  padding-bottom: 3px;
}

/* Bouton hamburger : case à cocher, aucun JavaScript nécessaire */
.bascule-menu { display: none; }

.bouton-menu {
  display: none;
  position: absolute;
  top: 0;
  right: 20px;
  width: 108px;
  height: 108px;
  cursor: pointer;
  background: var(--noir-nav);
}

.bouton-menu::after {
  content: "";
  display: block;
  width: 30px;
  height: 5px;
  margin: 40px auto;
  background: var(--blanc);
  box-shadow: 0 10px 0 var(--blanc), 0 20px 0 var(--blanc);
}

@media (max-width: 1170px) {
  .entete-inner {
    min-height: var(--nav-hauteur-mobile);
    padding: 0 20px;
  }

  .logo img { width: 65px; margin: 27px 20px; }

  .bouton-menu { display: block; }

  .menu {
    display: none;
    position: absolute;
    top: var(--nav-hauteur-mobile);
    right: 20px;
    left: 20px;
    z-index: 9999;
    flex-direction: column;
    gap: 0;
    padding-top: 15px;
  }

  .bascule-menu:checked ~ .menu { display: flex; }

  .menu li { width: 100%; }

  .menu a {
    display: block;
    width: 100%;
    background: var(--noir-menu);
    border: 2px solid var(--blanc);
    font-size: 30px;
    line-height: 80px;
    text-indent: 60px;
  }

  .menu .lien-instagram img { width: 60px; margin: 10px 0 10px 60px; }
}

/* ------------------------------------------- 6. Retour en haut de page -- */
.haut-de-page {
  position: fixed;
  right: 30px;
  bottom: 50px;
  z-index: 9;
  opacity: .6;
}

.haut-de-page img   { width: 56px; }

@media (hover: hover) {
  .haut-de-page:hover { opacity: 1; }
}

@media (max-width: 1170px) {
  .haut-de-page img { width: 90px; }
}

/* ------------------------------ 7. Bouton vertical « je réserve » -- */
.reserver-vertical {
  position: fixed;
  top: 50%;
  right: -174px;
  z-index: 10;
  padding: 23px 35px;
  border-radius: 5px;
  background: var(--rose);
  color: var(--blanc);
  font-size: 2em;
  font-weight: 300;
  white-space: nowrap;
  transform: rotate(-90deg);
  transition: color .1s ease-in-out;
}

.reserver-vertical:hover {
  color: gainsboro;
  text-decoration: none;
}

/* Masqué partout : il recouvrait le contenu dès que la fenêtre se réduisait,
   et les boutons « Réserver » présents sur chaque section le rendent inutile.
   Pour le réafficher, remplacer `none` par `inline-block`. */
.reserver-vertical { display: none; }

/* ---------------------------------------------- 8. Bandeau d'ouverture -- */
.heros {
  position: relative;
  width: 100%;
  height: 833px;
  overflow: hidden;
}

.heros-blanc { background: var(--blanc); }

/* Variante d'accueil : plus haute, pour loger le bouton d'action sous le titre
   sans que le texte ne vienne recouvrir la photo. */
.heros-accueil { height: 920px; }
.heros-noir  { background: #000; }

.heros picture { display: contents; }

.heros-image {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 1;
  width: 526px;
  height: 587px;
  transform: translateX(-50%);
  object-fit: cover;
}

.heros-texte {
  position: relative;
  z-index: 2;
}

@media (min-width: 1171px) {
  .heros-image { width: 561px; height: 630px; }
}

/* Variante sombre « Magnifiquement vous » */
.heros-sombre {
  height: 870px;
  background: #000;
}

.heros-sombre .heros-image {
  width: 615px;
  height: 593px;
}

@media (min-width: 1171px) {
  .heros-sombre { height: 820px; }
}

/* -------------------------------------------------------- 9. Présentation */
.presentation {
  background: var(--gris-fonce);
  padding: 40px 0;
}

.lien-cta {
  display: flex;
  justify-content: center;
}

.lien-cta p { padding: 30px; color: #000; }

img.fleche {
  display: inline-block;
  width: 16px;
  height: auto;
  vertical-align: baseline;
}

/* ---------------------------------------------------- 10. Bandeau d'avis -- */
.avis-defilants {
  overflow: hidden;
  width: 100%;
  background: var(--blanc);
}

.avis-defilants-piste {
  display: inline-block;
  white-space: nowrap;
  padding: 20px 20em 20px 100%;
  animation: defilement 90s linear infinite;
}

.avis-defilants:hover .avis-defilants-piste,
.avis-defilants:focus-within .avis-defilants-piste { animation-play-state: paused; }

.avis-defilants blockquote {
  display: inline;
  font-size: 1.7em;
  font-weight: 100;
}

.avis-defilants img {
  display: inline-block;
  width: 50px;
  margin: 0 8px -16px 0;
  border-radius: 50%;
  vertical-align: baseline;
}

.avis-defilants cite { font-style: normal; }

@keyframes defilement {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* ----------------------------------------------- 11. Trio de prestations -- */
.trio {
  display: flex;
  flex-wrap: wrap;
}

.trio > article {
  flex: 1 1 300px;
  margin: 1rem;
}

.trio picture img { width: 100%; }

.trio h3 {
  font-size: 2rem;
  line-height: 1.3;
  text-align: center;
  font-weight: 300;
  padding: 30px 20px 20px;
}

.trio h4 {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.3;
  text-align: right;
  margin: .3rem 0;
}

.trio p { line-height: 1.6; }

@media (max-width: 75em) {
  .trio { flex-direction: column; }
}

/* --------------------------------------------- 12. Pages « article » -- */
.page {
  background: var(--gris);
}

.page-blanche { background: var(--blanc); }

.section {
  max-width: var(--largeur-texte);
  width: 100%;
  margin: auto;
  text-align: center;
}

.bloc {
  background: var(--blanc);
  border-top: 1px solid var(--or);
}

.bloc-entete p {
  margin: 30px 0 0;
  color: var(--or);
}

.bloc-entete h2,
.bloc-entete h1 {
  margin: 9px 10px 20px;
  color: var(--or);
  line-height: 1.15;
}

.texte-intro  { margin: 50px 35px 30px; }

.texte-encadre {
  background: var(--rose-pale);
  padding: 45px 35px 50px;
}

.bandeau-rose {
  width: 100%;
  background: var(--rose-vif);
  text-align: center;
}

.bandeau-rose span {
  display: inline-block;
  padding: 20px;
  color: #eee;
  font-size: 1.7em;
  font-weight: 100;
}

.bandeau-rose img {
  display: inline-block;
  width: 16px;
  margin-left: 12px;
  vertical-align: middle;
}

/* Photo pleine largeur avec légende */
.photo {
  margin: 0;
  overflow: hidden;
  background: var(--blanc);
}

.photo img {
  width: 100%;
  transition: transform .5s ease;
}

@media (hover: hover) {
  .photo img:hover { transform: scale(1.01) translate(2px); }
}

.photo figcaption {
  padding: 0 20px 5px;
  font-size: .8rem;
  font-weight: 400;
  text-align: left;
  background: var(--blanc);
}

/* ------------------------------------------------ 13. Avant / après -- */
.avant-apres {
  position: relative;
  width: 100%;
  overflow: hidden;
  touch-action: none;
}

.avant-apres img { width: 100%; }

.avant-apres-avant {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 20%;
  height: 100%;
  overflow: hidden;
}

.avant-apres-avant img {
  width: var(--avant-apres-largeur, 1024px);
  max-width: none;
}

.avant-apres-poignee {
  position: absolute;
  top: 0;
  left: 20%;
  z-index: 5;
  width: 1px;
  height: 100%;
  background: var(--blanc);
  border: 0;
  padding: 0;
  cursor: ew-resize;
}

.avant-apres-poignee::after {
  content: "\00279C";
  position: absolute;
  top: 50%;
  margin: -25px 0 0 -28px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 3px solid var(--blanc);
  border-radius: 50%;
  background: #c80101;
  color: var(--blanc);
  font-weight: 900;
}

/* ------------------------------------------------------ 14. Appel final -- */
.appel-final {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  margin-top: 100px;
  background: var(--gris);
  text-align: center;
}

.appel-final figure {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  flex: 1 1 320px;
}

/* `contain` plutôt que `cover` : sur un grand écran l'image restait cadrée
   sur le centre du corps. On préserve désormais le portrait entier. */
.appel-final img {
  width: auto;
  max-width: 100%;
  max-height: 625px;
  object-fit: contain;
}

.appel-final .appel-final-texte {
  flex: 1 1 320px;
  margin: 10px 20px;
}

.bouton {
  display: inline-block;
  margin-top: 50px;
  padding: 10px 20px;
  border: 1px solid var(--or);
  background: var(--blanc);
  color: var(--or);
  font: inherit;
  font-size: 1.7em;
  font-weight: 100;
  letter-spacing: .7px;
  cursor: pointer;
  transition: background 300ms ease;
}

.bouton:hover {
  background: var(--gris);
  text-decoration: none;
}

/* ----------------------------------------------- 15. Galeries portfolio -- */
.galerie-large figure {
  margin: 0 auto;
  max-width: var(--largeur-texte);
  border-top: 40px solid var(--blanc);
}

.galerie-large img { width: 100%; }

.galerie-large figcaption {
  padding: 6px 20px 0;
  font-size: .8rem;
  font-weight: 400;
  text-align: left;
}

/* Grille trois colonnes */
.grille-3 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 8px 0;
}

.grille-3 figure {
  flex: 1 1 30%;
  max-width: 33%;
  margin: 0;
}

.grille-3 img { width: 100%; }

@media (max-width: 700px) {
  .grille-3 figure { flex: 1 1 100%; max-width: 100%; }
}

/* Galerie en colonnes (masonry) */
.galerie-colonnes {
  text-align: center;
  padding: 2rem 3%;
}

.galerie-colonnes figure { margin: 0 0 1rem; break-inside: avoid; }

.galerie-colonnes img {
  display: inline-block;
  max-width: 400px;
  width: 100%;
}

@media (min-width: 480px) {
  .galerie-colonnes { padding: 2rem 0 0; }
  .galerie-colonnes img { max-width: 700px; }
}

@media (min-width: 1000px) {
  .galerie-colonnes { columns: 2; column-gap: 1rem; }
  .galerie-colonnes img { max-width: 500px; }
}

@media (min-width: 1500px) {
  .galerie-colonnes { columns: 3; column-gap: 1.5rem; }
}

/* Liens entre galeries */
.lien-galerie {
  width: 100%;
  padding: 10px;
  margin-bottom: 50px;
  background: var(--gris);
  text-align: center;
}

.lien-galerie p { color: #000; }

/* -------------------------------------------------- 16. Cartes « vision » */
.cartes-vision {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.carte-vision {
  width: 300px;
  height: 379px;
  overflow: hidden;
  box-shadow: 0 70px 63px -60px #000;
  background: #000;
}

.carte-vision img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .8s ease;
}

@media (hover: hover) {
  .carte-vision:hover img { transform: scale(1.15); }
}

/* ------------------------------------------------- 17. Diaporamas danse -- */
.diaporamas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 20px;
}

.diaporama {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--blanc);
}

.diaporama-cadre {
  position: relative;
  width: 260px;
  height: 400px;
  cursor: pointer;
  border: 0;
  padding: 0;
  background: none;
}

.diaporama-cadre img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  max-height: 100%;
  transition: transform .5s ease, box-shadow .5s ease;
}

.diaporama-cadre img:first-child { z-index: 1; }
@media (hover: hover) {
  .diaporama-cadre img:hover { box-shadow: 0 0 12px rgb(0 0 0 / .1); }
}

.diaporama-legende { width: 260px; text-align: center; }
.diaporama-legende p { font-size: 1.7em; }

@keyframes fondu {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@media (max-width: 700px) {
  .diaporama-cadre { width: 295px; height: 441px; }
  .diaporama-legende { width: 295px; }
}

/* Bandeau de titre rouge (page danse) */
.bandeau-titre {
  background: #ee0020;
  padding: 14px 0;
}

.bandeau-titre h1 { color: var(--blanc); margin: 0; }

/* Citation illustrée */
.citation {
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin: 60px 10px;
  padding: 10px;
  background: var(--gris);
  text-align: center;
}

.citation img {
  width: 65px;
  margin: 5px 10px 10px;
  border-radius: 50%;
}

.citation p { margin: 0; }

/* ------------------------------------------------------- 18. Page cœur -- */
.coeur {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: var(--largeur-texte);
  margin: auto;
  padding: 20px;
}

.coeur figure { flex: 1 1 320px; margin: 0; }
.coeur .coeur-texte { flex: 1 1 320px; }

.bouton-fleche { display: inline-block; width: 16px; }

/* ---------------------------------------------------------- 19. Pied -- */
.pied {
  padding: 25px 20px 20px;
  text-align: center;
  background: var(--blanc);
}

.pied a { text-decoration: underline; }

.pied-contact {
  font-size: 1.7em;
  font-weight: 100;
  color: #000;
}

.pied-liens {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin: 24px 0;
  font-size: 1rem;
  font-weight: 300;
}

.pied-zone {
  max-width: 1100px;
  margin: 0 auto;
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.7;
  color: #8c8c8c;
}

.pied-legal {
  margin-top: 18px;
  font-size: .85rem;
  color: var(--texte-doux);
}

/* ------------------------------------------------------ 20. Fil d'Ariane */
.fil-ariane {
  max-width: var(--largeur-texte);
  margin: 0 auto;
  padding: 16px 20px 26px;
  font-size: .95rem;
  font-weight: 300;
}

.fil-ariane ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.fil-ariane li:not(:last-child)::after {
  content: "›";
  margin-left: 8px;
  color: var(--or);
}

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

/* --------------------------------------------------- 21. Animation titre */
.anime {
  opacity: 0;
  transform: translateY(40px);
  animation: apparition 1000ms ease forwards;
}

@keyframes apparition {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------------- 22. Accessibilité -- */
.lien-evitement {
  position: absolute;
  left: -9999px;
  z-index: 10000;
  padding: 12px 20px;
  background: var(--or);
  color: #000;
}

.lien-evitement:focus {
  left: 0;
  top: 0;
}

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

/* ====================================================================== */
/* 23. Téléphones et petites tablettes                                     */
/* Le site d'origine imposait des largeurs et des tailles de titre fixes,  */
/* ce qui provoquait un débordement horizontal sur mobile. Tout est ici    */
/* ramené à la largeur de l'écran, sans toucher au rendu sur ordinateur.   */
/* ====================================================================== */
@media (max-width: 760px) {
  h1,
  .titre-affiche {
    font-size: 2.4em;
    padding: 24px 16px 14px;
  }

  h2 { font-size: 1.9em; }
  h3 { font-size: 1.6em; }
  p  { font-size: 1.15em; }

  /* Le bandeau d'ouverture passe en flux normal : plus de hauteur fixe */
  .heros {
    height: auto;
    padding-bottom: 0;
  }

  .heros picture { display: block; }

  .heros-image {
    position: static;
    width: 100%;
    height: auto;
    max-height: 78vh;
    transform: none;
    object-fit: contain;
  }

  .heros-sombre { height: auto; }
  .heros-sombre .heros-image { width: 100%; height: auto; }

  .bloc-texte  { margin: 16px; }
  .texte-intro { margin: 28px 18px 20px; }
  .texte-encadre { padding: 28px 18px 30px; }

  .avis-defilants blockquote { font-size: 1.15em; }
  .avis-defilants img { width: 34px; margin-bottom: -10px; }

  .bandeau-rose span { font-size: 1.15em; padding: 16px; }

  .trio > article { margin: 1rem 0; }
  .trio h3 { font-size: 1.5rem; padding: 20px 16px 12px; }
  .trio h4 { font-size: 1rem; text-align: center; }

  .cartes-vision { min-height: 0; padding: 20px 0; }

  .citation { margin: 40px 0; flex-direction: column; align-items: center; }

  .appel-final { margin-top: 60px; }
  .bouton { font-size: 1.15em; margin-top: 30px; }

  .galerie-large figure { border-top-width: 20px; }

  .lien-galerie { margin-bottom: 30px; }

  .espace-150 { height: 70px; }
  .espace-100 { height: 50px; }
  .espace-80  { height: 40px; }

  .haut-de-page { right: 14px; bottom: 20px; }
  .haut-de-page img { width: 52px; }

  .pied-liens { font-size: .9rem; gap: 6px 16px; }
}

/* ======================================================================== */
/*  V3 — composants de conversion                                           */
/*  Bandeau de réassurance, étapes, témoignages, tarifs, formulaire.        */
/*  Mêmes couleurs et même typographie que le reste du site.                */
/* ======================================================================== */

/* ------------------------------------------------ 24. Boutons d'action -- */
.cta {
  display: inline-block;
  margin: 10px;
  padding: 18px 42px;
  border: 1px solid var(--or);
  background: var(--or);
  color: #fff;
  font-size: 1.25em;
  font-weight: 300;
  letter-spacing: .06em;
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}

.cta:hover {
  background: #c39c34;
  border-color: #c39c34;
  color: #fff;
  text-decoration: none;
}

.cta-secondaire {
  background: transparent;
  color: var(--or);
}

.cta-secondaire:hover {
  background: var(--or);
  color: #fff;
}

.zone-cta {
  text-align: center;
  padding: 20px;
}

/* ------------------------------------------------ 25. Réassurance -------- */
.reassurance {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  background: var(--blanc);
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
}

.reassurance div {
  flex: 1 1 220px;
  padding: 30px 24px;
  text-align: center;
  border-right: 1px solid #ececec;
}

.reassurance div:last-child { border-right: 0; }

.reassurance strong {
  display: block;
  margin-bottom: 6px;
  color: var(--or);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: .04em;
}

.reassurance span {
  font-size: .98rem;
  font-weight: 300;
  line-height: 1.5;
  color: #555;
}

@media (max-width: 760px) {
  .reassurance div {
    flex: 1 1 100%;
    border-right: 0;
    border-bottom: 1px solid #ececec;
    padding: 22px 20px;
  }
  .reassurance div:last-child { border-bottom: 0; }
}

/* ------------------------------------------------- 26. Les 4 étapes ------ */
.etapes {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  max-width: var(--largeur-texte);
  margin: 0 auto;
  padding: 20px;
}

.etapes li {
  flex: 1 1 200px;
  position: relative;
  padding: 28px 20px;
  background: var(--blanc);
  border-top: 3px solid var(--or);
  text-align: center;
}

.etapes .numero {
  display: block;
  margin-bottom: 12px;
  color: var(--or);
  font-size: 2.4rem;
  font-weight: 100;
  line-height: 1;
}

.etapes h3 {
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.3;
}

.etapes p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
}

/* ------------------------------------------------- 27. Témoignages ------- */
.temoignages {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.temoignage {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  padding: 30px 26px;
  background: var(--blanc);
  border: 1px solid #ececec;
  text-align: center;
}

.temoignage img {
  width: 76px;
  height: 76px;
  margin: 0 auto 16px;
  border-radius: 50%;
  object-fit: cover;
}

.temoignage blockquote {
  flex: 1;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: #444;
}

.temoignage cite {
  display: block;
  margin-top: 16px;
  color: var(--or);
  font-style: normal;
  font-weight: 400;
  letter-spacing: .06em;
}


/* --------------------------------------------------- 28. Tarifs --------- */
.formules {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.formule {
  flex: 1 1 280px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  padding: 40px 30px;
  background: var(--blanc);
  border: 1px solid #e4e4e4;
  text-align: center;
}

.formule-mise-en-avant {
  border: 2px solid var(--or);
  box-shadow: 0 18px 40px -28px rgb(0 0 0 / .35);
}

.formule-etiquette {
  display: inline-block;
  align-self: center;
  margin: -56px 0 20px;
  padding: 6px 18px;
  background: var(--or);
  color: #fff;
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.formule h3 {
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: .04em;
  margin-bottom: 6px;
}

.formule .duree {
  font-size: .95rem;
  font-weight: 300;
  color: #777;
  letter-spacing: .05em;
}

.formule .prix {
  margin: 22px 0 6px;
  color: var(--or);
  font-size: 3rem;
  font-weight: 100;
  line-height: 1;
}

.formule .prix small {
  display: block;
  margin-top: 8px;
  font-size: .82rem;
  color: #888;
  letter-spacing: .04em;
}

.formule ul {
  flex: 1;
  margin: 26px 0 30px;
  text-align: left;
}

.formule li {
  position: relative;
  padding: 8px 0 8px 26px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  border-bottom: 1px solid #f2f2f2;
}

.formule li::before {
  content: "·";
  position: absolute;
  left: 6px;
  top: 4px;
  color: var(--or);
  font-size: 1.6rem;
  line-height: 1;
}

.formule .cta { width: 100%; margin: 0; padding: 15px 20px; font-size: 1.05em; }

/* Options et suppléments */
.options {
  max-width: var(--largeur-texte);
  margin: 0 auto;
  padding: 20px;
}

.options dl {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0 24px;
  background: var(--blanc);
  border: 1px solid #ececec;
  padding: 10px 26px;
}

.options dt {
  padding: 16px 0;
  font-size: 1rem;
  font-weight: 300;
  border-bottom: 1px solid #f4f4f4;
}

.options dd {
  padding: 16px 0;
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  color: var(--or);
  text-align: right;
  white-space: nowrap;
  border-bottom: 1px solid #f4f4f4;
}

.options dt:last-of-type,
.options dd:last-of-type { border-bottom: 0; }

/* Ce qui est inclus */
.inclus {
  max-width: var(--largeur-texte);
  margin: 0 auto;
  padding: 20px;
}

.inclus ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0 30px;
}

.inclus li {
  flex: 1 1 300px;
  position: relative;
  padding: 14px 0 14px 30px;
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.6;
  border-bottom: 1px solid #ececec;
}

.inclus li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--or);
  font-weight: 400;
}

/* ------------------------------------------------- 29. Formulaire ------- */
.formulaire {
  max-width: 760px;
  margin: 0 auto;
  padding: 20px;
}

.champ { margin-bottom: 22px; text-align: left; }

.champ label {
  display: block;
  margin-bottom: 8px;
  font-size: .95rem;
  font-weight: 400;
  letter-spacing: .04em;
}

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

.champ input,
.champ select,
.champ textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d8d8d8;
  border-radius: 0;
  background: var(--blanc);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 300;
  color: var(--texte);
}

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

.champ input:focus,
.champ select:focus,
.champ textarea:focus {
  outline: 0;
  border-color: var(--or);
  box-shadow: 0 0 0 3px rgb(214 176 72 / .18);
}

.champ .aide {
  margin-top: 6px;
  font-size: .85rem;
  font-weight: 300;
  color: #888;
  text-align: left;
}

/* Piège à robots : invisible pour les humains, rempli par les spams */
.pot-de-miel {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.message-erreur {
  padding: 16px 20px;
  margin-bottom: 24px;
  background: var(--rose-pale);
  border-left: 3px solid var(--rose);
  font-size: 1rem;
  font-weight: 300;
  text-align: left;
}

/* ------------------------------------------- 30. Encart « chez vous » --- */
.encart-domicile {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--blanc);
}

.encart-domicile figure { flex: 1 1 340px; margin: 0; }
.encart-domicile img { width: 100%; height: 100%; object-fit: cover; }

.encart-domicile .texte {
  flex: 1 1 340px;
  padding: 50px 44px;
  text-align: center;
}

.encart-domicile h2 {
  font-size: 2.1em;
  margin-bottom: 20px;
  color: var(--or);
}

.encart-domicile p { font-size: 1.15em; line-height: 1.65; }

@media (max-width: 760px) {
  .encart-domicile .texte { padding: 34px 22px; }
  .encart-domicile h2 { font-size: 1.7em; }
  .encart-domicile p { font-size: 1.05em; }

  .cta { padding: 16px 30px; font-size: 1.05em; }
  .formule { padding: 34px 24px; }
  .formule .prix { font-size: 2.6rem; }
  .options dl { padding: 6px 18px; }
  .options dt, .options dd { font-size: .95rem; }
  .etapes { gap: 16px; padding: 16px; }
}

/* ------------------------------------------- 31. Titres de section ------ */
.titre-section {
  max-width: var(--largeur-texte);
  margin: 0 auto;
  padding: 60px 20px 10px;
  text-align: center;
}

.titre-section h2 { color: var(--or); }

.titre-section .surtitre {
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 14px;
}

.titre-section .chapo {
  margin-top: 18px;
  font-size: 1.15em;
  font-weight: 300;
  line-height: 1.6;
  color: #555;
}

@media (max-width: 760px) {
  .titre-section { padding: 40px 16px 6px; }
  .titre-section .chapo { font-size: 1.02em; }
}

/* ======================================================================== */
/*  32. Respiration sur mobile                                              */
/*  Sur petit écran, titres, textes et légendes venaient toucher le bord    */
/*  de l'écran. On ménage partout une marge minimale.                       */
/* ======================================================================== */
@media (max-width: 760px) {
  .section,
  .contenu,
  .galerie-colonnes,
  .temoignages,
  .formules,
  .options,
  .inclus,
  .etapes,
  .formulaire { padding-left: 14px; padding-right: 14px; }

  h1, h2, h3,
  .titre-affiche { padding-left: 18px; padding-right: 18px; }

  .titre-section { padding-left: 20px; padding-right: 20px; }

  .galerie-large figcaption,
  .photo figcaption { padding-left: 18px; padding-right: 18px; }

  .diaporama-legende { padding: 0 14px; }

  .bandeau-titre h1 { padding-left: 14px; padding-right: 14px; }

  .citation { padding: 18px 16px; }

  .avis-defilants blockquote { padding: 0 4px; }

  /* Les images pleine largeur restent, elles, bord à bord : c'est voulu. */
  .galerie-large figure,
  .grille-3 { padding-left: 0; padding-right: 0; }
}

/* Note sous le tableau des formules */
.note-formules {
  max-width: 760px;
  margin: 26px auto 0;
  padding: 0 20px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  color: #666;
  text-align: center;
}

/* ======================================================================== */
/*  33. Écrans intermédiaires (tablettes, fenêtre réduite sur ordinateur)   */
/*  Entre 761 et 1170 px, le site héritait des tailles de titre prévues     */
/*  pour les grands écrans : 5em pour un h1, soit 80 px dans une fenêtre    */
/*  étroite. Le texte devenait démesuré. Ce palier corrige ce trou.         */
/* ======================================================================== */
@media (min-width: 761px) and (max-width: 1170px) {
  h1,
  .titre-affiche {
    font-size: 3.2em;
    padding: 24px 24px 16px;
  }

  h2 { font-size: 2.2em; }
  h3 { font-size: 1.8em; }
  p  { font-size: 1.35em; font-weight: 300; }

  .bloc-texte    { margin: 20px 30px; }
  .texte-intro   { margin: 36px 28px 24px; }
  .texte-encadre { padding: 34px 28px 38px; }

  .bandeau-rose span { font-size: 1.3em; }
  .avis-defilants blockquote { font-size: 1.3em; }
  .trio h3 { font-size: 1.7rem; }
  .bouton, .cta { font-size: 1.15em; }
  .titre-section .chapo { font-size: 1.08em; }

  /* Le bandeau d'ouverture reprend un format lisible */
  .heros          { height: 760px; }
  .heros-accueil  { height: 830px; }
  .heros-sombre   { height: 780px; }
  .heros-image    { width: 480px; height: 540px; }
  .heros-sombre .heros-image { width: 520px; height: 510px; }
}
