/* ============================================
   Pages — Styles des sections
   Nom des sections : section-accueil, section-chiffres,
   section-reconnaissance, section-a-propos, section-services,
   section-temoignages, section-faq.
   Sous-éléments : accueil-*, chiffres-*, etc.
   ============================================ */

/* Effet de grain (bruit) — même rendu partout (fond continu) */
:root {
  --grain-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  --grain-opacity: 0.04;
  --grain-size: 256px 256px;
}

/* Fond granuleux continu sous toutes les sections (évite les “coupures” entre zones) */
main::before,
footer::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: var(--grain-opacity);
  pointer-events: none;
  background-image: var(--grain-image);
  background-repeat: repeat;
  background-size: var(--grain-size);
}

/* ========== PAGE ACCUEIL (index.html) ========== */
/* ----- Bannière d'accueil (texte + photos) ----- */
.section-accueil {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 84px); 
  padding: 5rem 2rem 12rem; 
  max-width: none;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  box-sizing: border-box;
  background: var(--teal-fonce);
  overflow: hidden;
}

/* Fleurs décoratives en arrière-plan du hero (3× flowerDrawing.png) */
.accueil-fleurs-fond {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.accueil-fleur {
  position: absolute;
  width: clamp(80px, 12vw, 140px);
  height: auto;
  object-fit: contain;
  opacity: 0.35;
  filter: brightness(1.1);
}

.accueil-fleur-1 {
  top: 12%;
  left: 8%;
  transform: rotate(-15deg);
  animation: accueil-float-1 8s ease-in-out infinite;
}

.accueil-fleur-2 {
  top: 55%;
  right: 5%;
  transform: rotate(12deg);
  animation: accueil-float-2 10s ease-in-out infinite;
}

.accueil-fleur-3 {
  bottom: 15%;
  left: 18%;
  transform: rotate(5deg);
  animation: accueil-float-3 9s ease-in-out infinite;
}

@keyframes accueil-float-1 {
  0%, 100% { transform: rotate(-15deg) translate(0, 0); }
  50% { transform: rotate(-12deg) translate(12px, -15px); }
}

@keyframes accueil-float-2 {
  0%, 100% { transform: rotate(12deg) translate(0, 0); }
  50% { transform: rotate(15deg) translate(-10px, 12px); }
}

@keyframes accueil-float-3 {
  0%, 100% { transform: rotate(5deg) translate(0, 0); }
  50% { transform: rotate(8deg) translate(8px, 10px); }
}

.accueil-contenu {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1100px;
  width: 100%;
  text-align: left;
}

.accueil-texte {
  flex: 0 0 540px; /* section texte élargie */
  min-width: 0;
}

.accueil-badge {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blush-clair);
  margin-bottom: 1rem;
}

.section-accueil h1 {
  color: var(--creme);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.section-accueil h1 em {
  font-style: italic;
  font-weight: 500;
}

.accueil-sous-titre {
  font-size: 1.1rem;
  color: rgba(250, 246, 242, 0.95);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.accueil-boutons {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
}

.section-accueil .bouton-principal {
  white-space: nowrap;
  padding: 0.75rem 2rem;
  color: var(--creme);
}

.section-accueil .bouton-principal:hover {
  background: var(--creme);
  color: var(--teal-fonce);
}

/* Polaroids à droite du texte — style polaroids disposées horizontalement, légèrement tournées et chevauchées */
.accueil-photos {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-shrink: 0;
  position: relative;
}

.accueil-photos .accueil-photo {
  position: relative;
  background: var(--creme);
  padding: 0.75rem 0.75rem 2.25rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28), 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* Rotations distinctes : -3deg, 0deg, +5deg — hover redresse à 0deg */
.accueil-photos .accueil-photo-gauche {
  margin-right: -2rem;
  transform: rotate(-3deg);
  z-index: 0;
}
.accueil-photos .accueil-photo-gauche:hover {
  transform: rotate(0deg) scale(1.02);
}

.accueil-photos .accueil-photo-centre {
  padding: 0.9rem 0.9rem 2.4rem;
  transform: rotate(0deg);
  z-index: 2;
}
.accueil-photos .accueil-photo-centre:hover {
  transform: rotate(0deg) scale(1.02);
}

.accueil-photos .accueil-photo-droite {
  margin-left: -2rem;
  transform: rotate(5deg);
  z-index: 0;
}
.accueil-photos .accueil-photo-droite:hover {
  transform: rotate(0deg) scale(1.02);
}

/* Ruban adhésif sur la polaroid de droite */
.accueil-photos .accueil-photo-ruban::after {
  content: '';
  position: absolute;
  top: -4px;
  right: -4px;
  width: 28px;
  height: 14px;
  background: linear-gradient(135deg, #c4a77d 0%, #b8956e 50%, #a08050 100%);
  opacity: 0.9;
  transform: rotate(25deg);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  border-radius: 1px;
}
.accueil-photos .accueil-photo-ruban::before {
  content: '';
  position: absolute;
  top: 2px;
  right: 12px;
  width: 18px;
  height: 8px;
  background: linear-gradient(135deg, #d4b88a 0%, #c4a77d 100%);
  opacity: 0.85;
  transform: rotate(25deg);
  z-index: -1;
  border-radius: 1px;
}

/* Gauche et droite plus petits, centre plus grand — même emprise totale grâce au chevauchement */
.accueil-photos .accueil-photo img {
  display: block;
  width: 140px;
  height: 140px;
  object-fit: cover;
}

.accueil-photos .accueil-photo-centre img {
  width: 200px;
  height: 200px;
}

.accueil-photos .accueil-photo:hover {
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.32), 0 10px 28px rgba(0, 0, 0, 0.2);
}

@media (max-width: 900px) {
  .section-accueil {
    padding: 3rem 1.5rem 4rem;
  }

  .accueil-contenu {
    flex-direction: column;
    max-width: 100%;
    text-align: center;
  }

  .accueil-texte {
    order: 2;
    flex: 1 1 100%;
  }

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

  .accueil-photos {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    order: 1;
  }

  .accueil-photos .accueil-photo-gauche {
    margin-right: -1rem;
  }
  .accueil-photos .accueil-photo-droite {
    margin-left: -1rem;
  }

  .accueil-photos .accueil-photo img {
    width: 100px;
    height: 100px;
  }

  .accueil-photos .accueil-photo-centre img {
    width: 130px;
    height: 130px;
  }

  .accueil-photos .accueil-photo-ruban::after {
    width: 22px;
    height: 11px;
    top: -3px;
    right: -3px;
  }
  .accueil-photos .accueil-photo-ruban::before {
    width: 14px;
    height: 6px;
  }

  /* Hero À propos : bloc déjà centré */
  .a-propos-hero-photos {
    max-width: 90vw;
  }
}

@media (max-width: 768px) {
  .accueil-photos .accueil-photo-gauche,
  .accueil-photos .accueil-photo-droite {
    display: none;
  }

  .accueil-photos .accueil-photo-centre img {
    width: 150px;
    height: 150px;
  }
}

/* ----- Réassurance : stats sous la hero ----- */
.section-chiffres {
  position: relative;
  background: var(--blush-clair);
  color: var(--teal-fonce);
  padding: 5rem 2rem 10rem; /* 5rem contenu + 5rem pour la vague */
  max-width: none;
  width: 100%;
  overflow: hidden;
}

/* Supprime la fine ligne entre la vague de la hero et cette section (retina / zoom) */
.section-chiffres {
  margin-top: -4px;
}

.section-chiffres.section-chiffres-visible .chiffres-contenu {
  opacity: 1;
  transform: translateY(0);
}

.chiffres-contenu {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.chiffres-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.chiffres-nombre {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--teal-fonce);
  display: block;
  margin-bottom: 0.35rem;
}

.chiffres-nombre[data-count-to] {
  min-width: 4ch;
}

.chiffres-texte {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--teal-fonce);
  opacity: 0.9;
}

.chiffres-separateur {
  width: 1px;
  height: 48px;
  background: var(--teal-fonce);
  opacity: 0.35;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .chiffres-contenu {
    flex-direction: column;
    gap: 1.5rem;
  }

  .chiffres-separateur {
    width: 40px;
    height: 1px;
  }
}

/* ----- Tu te reconnais ? : pain points ----- */
.section-reconnaissance {
  position: relative;
  background: var(--teal-fonce);
  color: var(--creme);
  padding: 6rem 2rem 11rem; /* 6rem contenu + 5rem pour la vague */
  max-width: none;
  width: 100%;
  overflow: hidden;
}

/* Supprime la fine ligne entre la vague des chiffres et cette section (retina / zoom) */
.section-reconnaissance {
  margin-top: -4px;
}

.section-reconnaissance.section-reconnaissance-visible .reconnaissance-contenu {
  opacity: 1;
  transform: translateY(0);
}

.reconnaissance-contenu {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reconnaissance-titre {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--creme);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.reconnaissance-sous-titre {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--creme);
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.5;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.reconnaissance-liste {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reconnaissance-liste li {
  width: 100%;
}

.reconnaissance-carte {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--creme);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.reconnaissance-carte:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.reconnaissance-puce {
  flex-shrink: 0;
  margin-top: 0.2em;
}

.reconnaissance-puce img {
  display: block;
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.reconnaissance-transition {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--creme);
  opacity: 0.95;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.reconnaissance-bouton {
  color: var(--creme);
  border-color: var(--creme);
  background: var(--marron);
}

.reconnaissance-bouton:hover {
  background: var(--creme);
  color: var(--teal-fonce);
  border-color: var(--creme);
}
.vague-bas {
  position: absolute;
  bottom: -4px; /* chevauche légèrement la section suivante pour masquer toute ligne */
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  line-height: 0;
}
.vague-bas svg,
.wave-bottom svg {
  width: 100%;
  height: 82px; /* 82px pour correspondre au viewBox étendu et éviter la ligne de rendu */
  display: block;
  transform: translateZ(0); /* force un layer pour limiter les artefacts de sous-pixel */
}

@media (max-width: 768px) {
  .section-reconnaissance {
    padding: 4rem 1.5rem 9rem; /* 4rem contenu + 5rem pour la vague */
  }

}

/* ----- Section Témoignages (accueil) ----- */
.section-temoignages {
  background: var(--creme) url('../images/work-1.png') no-repeat;
  background-position: center top;
  background-size: cover;
  color: var(--teal-fonce);
  padding-top: 0; /* Bannière défilante tout en haut de la section */
  position: relative;
  overflow: hidden;
  /* Pleine largeur de gauche à droite (annule la règle section { max-width } de styles.css) */
  max-width: none;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  box-sizing: border-box;
  z-index: 1;
}

/* Effet de grain renforcé sur la section témoignages */
.section-temoignages::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.08;
  pointer-events: none;
  background-image: var(--grain-image);
}

.section-temoignages.section-temoignages-visible .temoignages-contenu {
  opacity: 1;
  transform: translateY(0);
}

.temoignages-contenu {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}


/* Bulle regroupant surtitre + titre (fond branding) */
.temoignages-titre-bulle {
  display: inline-block;
  background: var(--teal-fonce);
  color: var(--blush-clair);
  padding: 1.25rem 2.5rem 1.5rem;
  border-radius: 2rem;
  margin-bottom: 4rem;
  box-shadow: 0 8px 32px rgba(45, 74, 71, 0.35);
}

.temoignages-titre-bulle .temoignages-surtitre {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blush-clair);
  margin-bottom: 0.5rem;
}

.temoignages-titre-bulle .temoignages-titre {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--blush-clair);
  margin-bottom: 0;
  position: relative;
  display: block;
}

.temoignages-titre-bulle .temoignages-titre::after {
  display: none;
}

.temoignages-surtitre {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blush-clair);
  margin-bottom: 0.5rem;
  text-shadow: 
  0 0 12px rgba(255, 248, 240, 0.9),
  0 1px 3px rgba(0, 0, 0, 0.15);
}

.temoignages-titre {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--blush-clair);
  margin-bottom: 4rem;
  text-shadow: 
  0 0 20px rgba(255, 248, 240, 0.95),
  0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  display: inline-block;
}

.temoignages-titre::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.1em;
  width: 102%;
  height: 0.5em;
  background: var(--teal-fonce);
  opacity: 0.85;
  z-index: -1;
}


/* Cartes témoignages en style polaroid (comme la section hero) */
.temoignages-cartes {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.temoignages-carte {
  position: relative;
  background: var(--creme);
  padding: 0.75rem 0.75rem 2rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28), 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  flex: 0 0 auto;
  width: 300px;
  text-align: left;
}

.temoignages-carte:hover {
  transform: scale(1.04);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.32), 0 10px 28px rgba(0, 0, 0, 0.2);
}

.temoignages-carte-centre {
  padding: 0.9rem 0.9rem 2.25rem;
}

.temoignages-carte-photo {
  width: 100%;
  height: 180px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.temoignages-carte-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.temoignages-carte-caption {
  padding: 0 0.25rem 0;
}

.temoignages-carte-fleur {
  display: block;
  text-align: center;
  margin-bottom: 0.5rem;
}

.temoignages-carte-fleur img {
  width: 32px;   /* à ajuster selon la taille souhaitée */
  height: auto;
  opacity: 0.6;  /* discret, comme l’ancien guillemet */
  display: inline-block;
}

.temoignages-carte-texte {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  color: var(--teal-fonce);
  margin-bottom: 0.75rem;
  line-height: 1.5;
  font-size: 0.95rem;
  text-align: center;
}

.temoignages-carte-auteur {
  font-family: 'Outfit', sans-serif;
  text-align: center;
  font-size: 0.8rem;
  color: var(--teal-fonce);
  opacity: 0.9;
}


/* Encadré CTA témoignages (citation mise en valeur, pas un bouton) */
.temoignages-cta-texte-bulle {
  display: inline-block;
  background: var(--blush-clair);
  color: var(--teal-fonce);
  padding: 1rem 1.75rem 1.1rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  border: 1px solid var(--blush-rose);
  box-shadow: 0 2px 12px rgba(45, 74, 71, 0.08);
}

.temoignages-cta-texte-bulle .temoignages-cta-texte {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--teal-fonce);
  line-height: 1.4;
  font-style: italic;
}

.temoignages-cta-texte {
  margin: 0 0 1.25rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--teal-fonce);
  text-shadow: 0 0 16px rgba(255, 248, 240, 0.9), 0 1px 3px rgba(0, 0, 0, 0.15);
  line-height: 1.4;
  margin-bottom: 2rem;
}


.temoignages-cta-bouton {
  color: var(--creme);
  border-color: var(--creme);
  background: var(--marron);
}

.temoignages-cta-bouton:hover {
  background: var(--creme);
  color: var(--teal-fonce);
  border-color: var(--creme);
}

@media (max-width: 900px) {
  .temoignages-cartes {
    flex-direction: column;
    align-items: center;
  }
}

/* ----- Section FAQ (accueil) ----- */
.section-faq {
  background: var(--blush-clair);
  color: var(--teal-fonce);
  padding: 4rem 2rem 5rem;
  position: relative;
  max-width: none;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  box-sizing: border-box;
}

/* Fleurs en arrière-plan (flowerGreen.png) */
.faq-fleurs-fond {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.faq-fleur {
  position: absolute;
  width: clamp(70px, 11vw, 130px);
  height: auto;
  object-fit: contain;
  opacity: 0.32;
  filter: brightness(1.05);
}

.faq-fleur-1 {
  top: 10%;
  left: 6%;
  transform: rotate(-18deg);
  animation: faq-float-1 9s ease-in-out infinite;
}

.faq-fleur-2 {
  top: 50%;
  right: 4%;
  transform: rotate(14deg);
  animation: faq-float-2 11s ease-in-out infinite;
}

.faq-fleur-3 {
  bottom: 12%;
  left: 14%;
  transform: rotate(6deg);
  animation: faq-float-3 10s ease-in-out infinite;
}

@keyframes faq-float-1 {
  0%, 100% { transform: rotate(-18deg) translate(0, 0); }
  50% { transform: rotate(-14deg) translate(10px, -12px); }
}

@keyframes faq-float-2 {
  0%, 100% { transform: rotate(14deg) translate(0, 0); }
  50% { transform: rotate(18deg) translate(-8px, 10px); }
}

@keyframes faq-float-3 {
  0%, 100% { transform: rotate(6deg) translate(0, 0); }
  50% { transform: rotate(10deg) translate(6px, 8px); }
}

.faq-contenu {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.faq-surtitre {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal-fonce);
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.faq-titre {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--teal-fonce);
  margin-bottom: 2.5rem;
}

.faq-liste {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  background: var(--blanc);
  border-radius: 12px;
  border: 1px solid var(--blush-rose);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px var(--ombre-douce);
}

.faq-item[open] {
  box-shadow: 0 6px 24px var(--ombre-accent);
}

.faq-question {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 1rem 1.25rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.faq-question::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: var(--marron);
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::before {
  transform: scale(1.3);
  background: var(--teal-fonce);
}

.faq-reponse {
  padding: 0 1.25rem 1.25rem 2rem;
}

.faq-reponse p {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: var(--texte-clair);
  line-height: 1.6;
  margin: 0 0 0.75rem;
}

.faq-reponse p:last-child {
  margin-bottom: 0;
}

.faq-reponse strong {
  color: var(--charcoal);
  font-weight: 600;
}

.faq-cta-texte {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--teal-fonce);
  opacity: 0.9;
}

.faq-contenu .bouton-principal {
  color: var(--creme);
  border-color: var(--creme);
  background: var(--marron);
}

.faq-contenu .bouton-principal:hover {
  background: var(--creme);
  color: var(--teal-fonce);
  border-color: var(--creme);
}

@media (max-width: 768px) {
  .section-faq {
    padding: 3rem 1.25rem 4rem;
  }

  .section-faq-vague-bas {
    padding-bottom: calc(4rem + 60px);
  }

  .faq-question {
    padding: 0.9rem 1rem;
    font-size: 0.9rem;
  }

  .faq-reponse {
    padding: 0 1rem 1rem 1.5rem;
  }
}

/* Page services : tout centré en mobile/tablette */
@media (max-width: 900px) {
  .page-services .faq-contenu {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-services .faq-liste {
    width: 100%;
    max-width: 100%;
  }
}

/* ========== PAGE À PROPOS (apropos.html) ========== */
/* ----- Page À propos ----- */

/* Hero À propos : style type Billie — logo à la place du titre, grande image + overlay, fleurs en fond */
.section-a-propos-hero {
  min-height: calc(100vh - 84px);
  padding: 5rem 2rem 12rem;
}

/* Contenu hero : un seul bloc centré (image + logo + overlay) */
.section-a-propos-hero .a-propos-hero-contenu {
  align-items: center;
  justify-content: center;
  max-width: 1000px;
}

/* Bloc unique : grande image centrée (rectangle horizontal) + logo et overlay en position absolue */
.a-propos-hero-photos {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

/* Grande image : rectangle horizontal, centrée */
.a-propos-hero-photo-principale {
  position: relative;
  z-index: 0;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.25), 0 10px 28px rgba(0, 0, 0, 0.15);
}

.a-propos-hero-photo-principale img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Logo par-dessus l'image, décalé vers la gauche */
.a-propos-hero-gauche {
  position: absolute;
  left: -20%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 400px;
  z-index: 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.a-propos-hero-logo {
  display: block;
  height: clamp(100px, 14vw, 180px);
  width: auto;
  max-width: 400px;
  object-fit: contain;
}

.a-propos-hero-sous-titre {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--creme);
  margin-top: 0.75rem;
  opacity: 1;
}

/* Deuxième photo par-dessus la grosse image : cadre type polaroid, décalé à droite */
.a-propos-hero-photo-overlay {
  position: absolute;
  top: 50%;
  right: -6%;
  transform: translateY(-50%) rotate(4deg);
  z-index: 2;
  padding: 0.5rem 0.5rem 1.25rem 0.5rem;
  background: var(--creme);
  border-radius: 4px;
  border: 1px solid var(--blush-rose);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.2),
    0 6px 16px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.a-propos-hero-photo-overlay:hover {
  transform: translateY(-50%) rotate(0deg) scale(1.02);
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.32),
    0 10px 28px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.a-propos-hero-photo-overlay img {
  display: block;
  width: clamp(90px, 14vw, 140px);
  height: clamp(115px, 18vw, 175px);
  object-fit: cover;
  border-radius: 2px;
}

/* Bouton "En savoir plus" : visible uniquement en mobile (media query) */
.a-propos-hero-cta-mobile {
  display: none;
}

/* ----- Section Histoire (À propos) ----- */
.section-histoire {
  max-width: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  margin-top: -4px; /* supprime la fine ligne entre la vague hero À propos et la section histoire */
  position: relative;
  z-index: 1;
  background: var(--creme);
  color: var(--teal-fonce);
  padding: 6rem 2rem 11rem; /* place pour la vague en bas */
}

.section-histoire .histoire-contenu {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 4rem;
  align-items: start;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.section-histoire.section-histoire-visible .histoire-contenu {
  opacity: 1;
  transform: translateY(0);
}

.histoire-colonne-photo {
  position: sticky;
  top: 6rem;
}

.histoire-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 12px 40px var(--ombre-douce), 0 4px 16px var(--ombre-accent);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.histoire-photo:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px var(--ombre-douce), 0 8px 24px var(--ombre-accent);
}

.histoire-colonne-texte {
  min-width: 0;
}

.histoire-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-fonce);
  margin-bottom: 0.75rem;
  opacity: 0.85;
}

.histoire-titre {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--teal-fonce);
  margin-bottom: 2rem;
  line-height: 1.25;
}

.histoire-bloc {
  margin-bottom: 2rem;
}

.histoire-sous-titre {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  font-style: italic;
  color: var(--marron);
  margin-bottom: 0.5rem;
}

.histoire-bloc p {
  font-family: 'Outfit', sans-serif;
  color: var(--teal-fonce);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.histoire-citation {
  font-style: italic;
  color: var(--teal-fonce);
}

.histoire-cta {
  display: inline-block;
  margin-top: 0.5rem;
}

.section-histoire .histoire-cta:hover {
  background: var(--creme);
  color: var(--teal-fonce);
}

@media (max-width: 768px) {
  .section-histoire {
    padding: 4rem 1.5rem 9rem;
    margin-top: -4px; /* supprime la ligne entre la vague du hero et cette section (retina) */
  }

  .section-histoire .histoire-contenu {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .histoire-colonne-photo {
    order: -1;
    position: static;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
  }

  .histoire-photo {
    max-height: 420px;
    aspect-ratio: 3 / 4;
    margin: 0 auto;
    display: block;
  }

  .histoire-colonne-texte {
    text-align: center;
  }

  .histoire-titre {
    margin-bottom: 1.5rem;
  }

  .histoire-bloc {
    margin-bottom: 1.5rem;
  }

  .histoire-cta {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

/* ----- Section Valeurs (À propos) ----- */
.section-valeurs {
  max-width: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  margin-top: -4px; /* supprime la fine ligne entre la vague histoire et la section valeurs */
  position: relative;
  background: var(--teal-fonce);
  color: var(--creme);
  padding: 6rem 2rem 14rem; /* place pour la vague en bas */
  overflow: hidden;
}

.valeurs-contenu {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.section-valeurs.section-valeurs-visible .valeurs-contenu {
  opacity: 1;
  transform: translateY(0);
}

.valeurs-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  color: var(--creme);
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.valeurs-titre {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  text-align: center;
  color: var(--creme);
  margin-bottom: 3rem;
}

.valeurs-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.valeurs-card {
  flex: 1 1 200px;
  min-width: 200px;
  max-width: 260px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  transition: background 0.35s ease, color 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.valeurs-card:hover {
  background: var(--marron);
  color: var(--creme);
}

.valeurs-card-icone {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  color: var(--creme);
  flex-shrink: 0;
}

.valeurs-card:hover .valeurs-card-icone {
  color: var(--creme);
}

.valeurs-card-icone svg,
.valeurs-card-icone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.valeurs-card-titre {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: inherit;
  margin-bottom: 0.75rem;
}

.valeurs-card-texte {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  color: inherit;
  opacity: 0.95;
}

@media (max-width: 768px) {
  .section-valeurs {
    padding: 4rem 1.5rem 9rem; /* place pour la vague en bas */
    margin-top: -4px; /* supprime la ligne entre la vague (histoire) et cette section (retina) */
  }

  .valeurs-contenu {
    text-align: center;
  }

  .valeurs-cards {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .valeurs-card {
    max-width: 320px;
    width: 100%;
  }
}

/* ----- CTA final À propos ----- */
.section-a-propos-cta-final {
  max-width: none;
  position: relative;
  overflow: hidden;
  background: var(--creme);
  padding: 6rem 1.5rem 11rem; 
}

.a-propos-cta-final-contenu {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}


.a-propos-cta-final-titre {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.a-propos-cta-final-soustitre {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--texte-clair);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.a-propos-cta-final-boutons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.a-propos-cta-final-boutons .bouton {
  min-width: 200px;
}

.a-propos-cta-final-boutons .a-propos-cta-btn-outline {
  border: 2px solid var(--olive);
  color: var(--teal-fonce);
  background: transparent;
}

.a-propos-cta-final-boutons .a-propos-cta-btn-outline:hover {
  background: var(--olive-clair);
  color: var(--teal-fonce);
  border-color: var(--olive);
}

@media (max-width: 600px) {
  .section-a-propos-cta-final {
    padding: 4rem 1rem 9rem; /* place pour la vague en bas */
    margin-top: -4px; /* supprime la ligne entre la vague (valeurs) et cette section (retina) */
  }

  .a-propos-cta-final-contenu {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .a-propos-cta-final-boutons {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 320px;
  }

  .a-propos-cta-final-boutons .bouton {
    width: 100%;
    min-width: 0;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .section-a-propos-hero {
    padding: 4rem 1.5rem 8rem;
  }

  /* Supprime la ligne entre la vague et la section qui suit (page À propos, iPhone 14 Pro Max etc.) */
  .section-a-propos-cta-final {
    margin-top: -4px;
  }

  .section-a-propos-hero .a-propos-hero-contenu {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .a-propos-hero-photos {
    max-width: 92vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .a-propos-hero-photo-principale {
    width: 100%;
    max-width: 400px;
    order: 1;
  }

  .a-propos-hero-gauche {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    max-width: 100%;
    text-align: center;
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .a-propos-hero-logo {
    max-width: 180px;
    margin: 0 auto;
  }

  .a-propos-hero-photo-overlay {
    display: none;
  }

  .a-propos-hero-cta-mobile {
    display: inline-block;
    margin-top: 1.5rem;
    align-self: center;
  }
}



/* ========== PAGE SERVICES (services.html) ========== */
/* ----- Hero page Services (fond crème, 2 colonnes, fleurs flowerGreen) ----- */
.section-services-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 5rem 2rem 12rem;
  max-width: none;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  box-sizing: border-box;
  background: var(--blush-clair);
  overflow: hidden;
}

/* Supprime la fine ligne entre la vague du hero services et la section suivante */
.section-accompagnements {
  margin-top: -4px;
}

.services-hero-fleurs-fond {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.services-hero-fleur {
  position: absolute;
  width: clamp(80px, 12vw, 140px);
  height: auto;
  object-fit: contain;
  opacity: 0.35;
  filter: brightness(1.1);
}

.services-hero-fleur-1 {
  top: 12%;
  left: 8%;
  transform: rotate(-15deg);
  animation: accueil-float-1 8s ease-in-out infinite;
}

.services-hero-fleur-2 {
  top: 55%;
  right: 5%;
  transform: rotate(12deg);
  animation: accueil-float-2 10s ease-in-out infinite;
}

.services-hero-fleur-3 {
  bottom: 15%;
  left: 18%;
  transform: rotate(5deg);
  animation: accueil-float-3 9s ease-in-out infinite;
}

.section-services-hero .services-hero-contenu {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.section-services-hero.section-services-hero-visible .services-hero-contenu {
  opacity: 1;
  transform: translateY(0);
}

.services-hero-contenu {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1100px;
  width: 100%;
  text-align: left;
}

.services-hero-texte {
  flex: 1 1 50%;
  min-width: 0;
}

.services-hero-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal-fonce);
  margin-bottom: 1rem;
}

.services-hero-titre {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--teal-fonce);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.services-hero-sous-titre {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  color: var(--texte-clair);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.section-services-hero .bouton-principal {
  color: var(--creme);
  background: var(--teal-fonce);
  border-color: var(--teal-fonce);
}

.section-services-hero .bouton-principal:hover {
  background: var(--teal-moyen);
  border-color: var(--teal-moyen);
  color: var(--creme);
}

.services-hero-image {
  flex: 0 0 auto;
  max-width: 45%;
}

.services-hero-image img {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}

@media (max-width: 900px) {
  .section-services-hero {
    padding: 3rem 1.5rem 8rem;
  }

  .services-hero-contenu {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .services-hero-texte {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .services-hero-image {
    order: 2;
    max-width: 100%;
  }

  .services-hero-image img {
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ----- Section Services détaillés (fond teal, blocs alternés, fade-in) ----- */
.section-accompagnements {
  position: relative;
  background: var(--teal-fonce);
  color: var(--creme);
  padding: 6rem 2rem;
  max-width: none;
  width: 100%;
  box-sizing: border-box;
}

.section-accompagnements-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.service-detail-block {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.service-detail-block.service-detail-block-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-detail-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.service-detail-block-2 .service-detail-inner {
  flex-direction: row-reverse;
}

.service-detail-image {
  flex: 0 0 42%;
  min-width: 0;
}

.service-detail-image img {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}

.service-detail-content {
  flex: 1 1 58%;
  min-width: 0;
}

.service-detail-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--creme);
  opacity: 0.9;
  margin-bottom: 0.75rem;
}

.service-detail-titre {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--creme);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.service-detail-description {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--creme);
  opacity: 0.95;
  margin-bottom: 1.5rem;
}

.service-detail-inclus {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--creme);
  margin-bottom: 0.5rem;
}

.service-detail-list {
  list-style: none;
  margin-bottom: 1.5rem;
  padding: 0;
}

.service-detail-list li {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--creme);
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.35rem;
}

.service-detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 1em;
  height: 1em;
  background: url('../images/flowerDrawing.png') no-repeat center;
  background-size: contain;
}

.service-detail-prix {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 600;
  color: var(--creme);
  margin-bottom: 1.5rem;
}

.service-detail-cta {
  display: inline-block;
  border: 2px solid var(--creme);
  color: var(--creme);
  background: transparent;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease;
}

.service-detail-cta:hover {
  background: rgba(250, 246, 242, 0.15);
  color: var(--creme);
  border-color: var(--creme);
}

@media (max-width: 900px) {
  .section-accompagnements {
    padding: 4rem 1.5rem;
  }

  .section-accompagnements-inner {
    gap: 3rem;
    align-items: center;
  }

  .service-detail-inner,
  .service-detail-block-2 .service-detail-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-detail-image {
    flex: none;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .service-detail-image img {
    max-width: 100%;
  }

  .service-detail-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .service-detail-content .service-detail-list {
    margin-left: auto;
    margin-right: auto;
  }

  .service-detail-cta {
    margin-left: auto;
    margin-right: auto;
  }
}

/* FAQ avec vague teal-fonce en bas (page services) */
.section-faq-vague-bas {
  padding-bottom: calc(5rem + 80px);
}

/* ----- CTA Services (fond teal-fonce, sans fleurs) ----- */
.section-services-cta {
  position: relative;
  max-width: none;
  background: var(--teal-moyen);
  color: var(--creme);
  padding: 6rem 1.5rem calc(6rem + 80px);
  overflow: hidden;
}

/* Supprime la fine ligne entre la vague de la FAQ services et le CTA services */
.section-services-cta {
  margin-top: -4px;
}

.services-cta-contenu {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.services-cta-titre {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--creme);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.services-cta-soustitre {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: rgba(250, 246, 242, 0.9);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.services-cta-boutons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.services-cta-boutons .bouton {
  min-width: 200px;
}

@media (max-width: 600px) {
  .section-services-cta {
    padding: 4rem 1rem calc(4rem + 80px);
  }

  .services-cta-contenu {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .services-cta-boutons .bouton {
    width: 100%;
    min-width: 0;
    text-align: center;
  }
}

/* ----- Section About (image + citation, fleurs doodle) ----- */
.section-a-propos {
  position: relative;
  max-width: none;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 5rem 2rem 14rem; /* 9rem contenu + 5rem pour la vague */
  overflow: hidden;
  background: var(--blush-clair);
}

/* Vagues haut et bas (au-dessus du fond pour être visibles) */
.section-a-propos .a-propos-vague {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
  line-height: 0;
}

.section-a-propos .a-propos-vague svg {
  display: block;
  width: 100%;
  height: auto;
}

.section-a-propos .a-propos-vague-bas {
  bottom: -3px; /* chevauche la section pour éviter la ligne en mobile */
}

.section-a-propos .a-propos-vague-bas svg {
  height: clamp(52px, 8.2vw, 82px); /* aligné sur le viewBox 82 pour éviter la ligne */
  transform: translateZ(0);
}

/* Fond principal (sous les vagues) */
.section-a-propos .a-propos-fond {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--blush-clair);
}

.section-a-propos .a-propos-contenu {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

/* Grand écran : titre au-dessus du texte (colonne droite) */
.section-a-propos .a-propos-titre {
  grid-column: 2;
  grid-row: 1;
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--marron);
  text-align: center;
}

.section-a-propos .a-propos-gauche {
  grid-column: 1;
  grid-row: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-a-propos .a-propos-image-wrap {
  position: relative;
  display: inline-block;
}

.section-a-propos .a-propos-image {
  position: relative;
  padding: 0.5rem 0.5rem 0 0;
  background: var(--marron);
  border-radius: 4px;
  box-shadow: 0 12px 40px var(--ombre-accent);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.section-a-propos .a-propos-image-wrap:hover .a-propos-image {
  transform: scale(1.03);
  box-shadow: 0 18px 50px var(--ombre-accent), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.section-a-propos .a-propos-image img {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
  transition: filter 0.35s ease;
}

.section-a-propos .a-propos-image-wrap:hover .a-propos-image img {
  filter: brightness(1.05) contrast(1.02);
}

/* Icône fleur brune décorative (coin de l'image clara-9.png) */
.section-a-propos .a-propos-fleur-brune {
  position: absolute;
  top: -25px;
  right: -40px;
  width: 70px;
  height: 70px;
  color: var(--teal-fonce);
  transform: rotate(45deg);
  z-index: 2;
}

.section-a-propos .a-propos-fleur-brune img,
.section-a-propos .a-propos-fleur-brune svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 4px var(--ombre-douce));
}

/* Fleurs doodle (flowerDrawing.png) */
.section-a-propos .a-propos-fleurs {
  position: absolute;
  bottom: -20px;
  left: -30px;
  z-index: 2;
  pointer-events: none;
  transition: transform 0.35s ease;
}

.section-a-propos .a-propos-image-wrap:hover .a-propos-fleurs {
  transform: scale(1.03);
}

.section-a-propos .a-propos-fleur {
  position: absolute;
  width: clamp(60px, 10vw, 100px);
  height: auto;
  object-fit: contain;
  opacity: 0.9;
}

.section-a-propos .a-propos-fleur-1 {
  bottom: -10px;
  left: -20px;
  transform: rotate(-80deg);
}

.section-a-propos .a-propos-fleur-2 {
  bottom: 0;
  left: 20px;
  transform: rotate(8deg);
  width: clamp(40px, 7vw, 70px);
}

/* Texte à droite (grand écran : ligne 2, colonne 2) */
.section-a-propos .a-propos-droite {
  grid-column: 2;
  grid-row: 2;
  padding: 0 1rem;
  text-align: center;
}

.section-a-propos .a-propos-citation {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  font-style: italic;
  color: var(--rust);
  line-height: 1.45;
  margin-bottom: 1.25rem;
}

.section-a-propos .a-propos-texte {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--texte-clair);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

/* Même design que le bouton hero (.btn.btn-primary) */
.section-a-propos .a-propos-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  white-space: nowrap;
  padding: 0.75rem 2rem;
  color: var(--creme);
}

.section-a-propos .a-propos-bouton-wrap {
  text-align: center;
}

.section-a-propos .a-propos-cta:hover {
  background: var(--creme);
  color: var(--teal-fonce);
}

.section-a-propos .a-propos-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2em;
  height: 1.2em;
  font-size: 1.1em;
  font-weight: 600;
  color: var(--creme);
}

@media (max-width: 900px) {
  .section-a-propos {
    padding: 4rem 1.5rem 12rem; /* 7rem contenu + 5rem pour la vague */
  }

  .section-a-propos .a-propos-contenu {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 2rem;
  }

  /* Petit écran : titre au-dessus de l'image */
  .section-a-propos .a-propos-titre {
    order: 1;
    grid-column: 1;
    grid-row: auto;
    text-align: center;
  }

  .section-a-propos .a-propos-gauche {
    order: 2;
    grid-column: 1;
    grid-row: auto;
  }

  .section-a-propos .a-propos-droite {
    order: 3;
    grid-column: 1;
    grid-row: auto;
    padding: 0;
  }

  .section-a-propos .a-propos-image img {
    max-width: 280px;
  }

  .section-a-propos .a-propos-fleurs {
    left: -10px;
    bottom: -15px;
  }
}

/* ----- Bloc pleine largeur "Travaillez avec moi" ----- */
/* Remonte d’1px pour supprimer la ligne blush entre la vague about et cette section */
.section-a-propos + .section-services {
  margin-top: -1px;
}

.section-services {
  position: relative;
  max-width: none;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 6rem 2rem; 
  overflow: hidden;
  z-index: 2;
}

.section-services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--teal-fonce);
  z-index: 0;
}

.section-services.section-services-visible .services-contenu {
  opacity: 1;
  transform: translateY(0);
}

.services-contenu {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.services-surtitre {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--creme);
  margin-bottom: 0.5rem;
}

.services-titre {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--creme);
  margin-bottom: 0.75rem;
}

.services-sous-titre {
  color: rgba(250, 246, 242, 0.9);
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.services-cartes {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.services-carte {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  flex: 1 1 280px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.services-carte:hover {
  background: var(--marron);
  transform: scale(1.04);
}

/* Carte mise en avant (milieu) : plus blanche, plus grande, badge "Le plus populaire" */
.services-carte-vedette {
  background: rgba(255, 255, 255, 0.22);
  max-width: 360px;
  padding: 2.5rem 2rem;
  position: relative;
  transform: scale(1.06);
}

.services-carte-vedette:hover {
  background: var(--marron);
  transform: scale(1.1);
}

.services-carte-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--creme);
  color: var(--marron);
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.services-carte-icone {
  width: 48px;
  height: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.services-carte h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--creme);
  margin-bottom: 0.75rem;
}

.services-carte p {
  font-size: 0.95rem;
  color: rgba(250, 246, 242, 0.9);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

/* Sous-texte « Idéal si… » (accueil, fond teal) : discret, ne rivalise pas avec le CTA */
.services-carte .services-ideal {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  color: rgba(250, 246, 242, 0.72);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.services-prix {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  color: rgba(250, 246, 242, 0.8);
  margin-bottom: 1.25rem;
}

.services-carte .bouton {
  margin-top: auto;
  white-space: nowrap;
}

.services-carte .bouton:hover {
  background: var(--creme);
  color: var(--marron);
  border-color: var(--creme);
}

@media (max-width: 768px) {
  .services-cartes {
    flex-direction: column;
    align-items: stretch;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .services-carte {
    width: 100%;
    max-width: 100%;
    min-height: 320px;
    flex: 1 1 auto;
  }

  .services-carte-vedette {
    transform: none;
    max-width: 100%;
  }

  .services-carte-vedette:hover {
    transform: scale(1.02);
  }
}

/* ========== PAGE TÉMOIGNAGES (temoignages.html) ========== */
/* ----- Hero Témoignages (fond teal-foncé, centré, style parole, fleurs en fond) ----- */
.section-temoignages-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 65vh;
  padding: 5rem 2rem 10rem;
  max-width: none;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  box-sizing: border-box;
  background: var(--teal-fonce);
  overflow: hidden;
}

/* Supprime la fine ligne entre la vague hero témoignages et la section suivante */
.section-temoignages-page {
  margin-top: -4px;
}

.temoignages-hero-fleurs-fond {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.temoignages-hero-fleur {
  position: absolute;
  width: clamp(70px, 10vw, 120px);
  height: auto;
  object-fit: contain;
  opacity: 0.22;
  filter: brightness(1.2);
}

.temoignages-hero-fleur-1 {
  top: 18%;
  right: 10%;
  transform: rotate(15deg);
  animation: accueil-float-2 9s ease-in-out infinite;
}

.temoignages-hero-fleur-2 {
  bottom: 25%;
  left: 8%;
  transform: rotate(-8deg);
  animation: accueil-float-1 10s ease-in-out infinite;
}

.temoignages-hero-fleur-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(5deg);
  opacity: 0.12;
  animation: accueil-float-3 11s ease-in-out infinite;
}

.temoignages-hero-contenu {
  position: relative;
  z-index: 1;
  max-width: 720px;
  width: 100%;
  text-align: center;
}

.temoignages-hero-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blush-clair);
  margin-bottom: 1rem;
}

.temoignages-hero-titre {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  color: var(--creme);
  margin-bottom: 1.25rem;
  line-height: 1.25;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
}

.temoignages-hero-titre em {
  font-style: italic;
  font-weight: 500;
  color: var(--blush-clair);
}

.temoignages-hero-sous-titre {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  color: rgba(250, 246, 242, 0.95);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.temoignages-hero-cta {
  color: var(--creme);
  border-color: var(--marron);
  background: var(--marron);
}

.temoignages-hero-cta:hover {
  background: var(--creme);
  color: var(--teal-fonce);
  border-color: var(--creme);
}

@media (max-width: 768px) {
  .section-temoignages-hero {
    min-height: 60vh;
    padding: 4rem 1.5rem 8rem;
  }

  .temoignages-hero-sous-titre {
    font-size: 1rem;
  }
}

.section-temoignages-page {
  position: relative;
  background: var(--blush-clair);
  padding: 3rem 2rem calc(2rem + 80px);
  max-width: none;
  min-height: 40vh;
  overflow: hidden;
}

/* ----- Témoignages page : cartes plus grandes, plus de texte ----- */
.temoignages-page-contenu {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.temoignages-page-surtitre {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal-fonce);
  margin-bottom: 0.5rem;
  opacity: 0.85;
}

.temoignages-page-titre {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--teal-fonce);
  margin-bottom: 3rem;
}

.temoignages-page-cartes {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 3rem;
  margin-bottom: 3rem;
}

.temoignages-page-carte {
  position: relative;
  background: var(--creme);
  padding: 0;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.4s ease;
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
  opacity: 0;
  transform: translateY(28px);
}

.temoignages-page-carte.temoignages-page-carte-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Photo à droite = texte puis photo (ordre naturel) */
.temoignages-page-carte--photo-droite {
  flex-direction: row;
}

/* Photo à gauche = photo puis texte (ordre inverse dans le flex) */
.temoignages-page-carte--photo-gauche {
  flex-direction: row-reverse;
}

.temoignages-page-carte.temoignages-page-carte-visible:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.15), 0 10px 28px rgba(0, 0, 0, 0.1);
}

.temoignages-page-carte-photo {
  width: 38%;
  min-width: 200px;
  max-height: 400px;
  flex-shrink: 0;
  overflow: hidden;
}




.temoignages-page-carte-photo img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Cadrer sur le visage pour la photo Marie L. */
.temoignages-page-carte-visage img {
  object-position: center 30%;
}

.temoignages-page-carte-caption {
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-width: 0;
}

.temoignages-page-carte-fleur {
  display: block;
  text-align: center;
  margin-bottom: 0.75rem;
}

.temoignages-page-carte-fleur img {
  width: 36px;
  height: auto;
  opacity: 0.6;
  display: inline-block;
}

.temoignages-page-carte-texte {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  color: var(--teal-fonce);
  margin-bottom: 1.25rem;
  line-height: 1.65;
  font-size: 1.2rem;
  flex-grow: 1;
}

.temoignages-page-carte-auteur {
  font-family: 'Outfit', sans-serif;
  text-align: center;
  font-size: 1rem;
  color: var(--teal-fonce);
  opacity: 0.9;
  margin-top: auto;
}

.temoignages-page-cta {
  margin-top: 1rem;
}

.temoignages-page-cta .temoignages-page-cta-texte {
  margin: 0 0 1.25rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--teal-fonce);
  line-height: 1.4;
}

.temoignages-page-cta .temoignages-cta-bouton {
  color: var(--creme);
  border-color: var(--creme);
  background: var(--marron);
}

.temoignages-page-cta .temoignages-cta-bouton:hover {
  background: var(--creme);
  color: var(--teal-fonce);
  border-color: var(--creme);
}

/* Chiffres et CTA en bas de la section témoignages (sans section dégradée) */
.temoignages-chiffres-inline {
  margin-top: 4rem;
  padding-top: 2rem;
  opacity: 1;
  transform: none;
}
.section-temoignages-page .temoignages-page-cta {
  margin-top: 2.5rem;
  padding-bottom: 2rem;
  text-align: center;
}

@media (max-width: 900px) {
  .temoignages-page-carte {
    flex-direction: column !important;
  }

  /* Photo toujours en haut de la carte, quel que soit l'ordre dans le HTML */
  .temoignages-page-carte-photo {
    order: -1;
    width: 100%;
    min-width: unset;
    height: 240px;
  }

  .temoignages-page-carte-caption {
    order: 0;
    padding: 1.5rem 1.5rem 2rem;
  }

  .temoignages-page-carte-photo img {
    min-height: unset;
    height: 100%;
  }
}

/* ----- Bannière défilante (dans section témoignages) ----- */
.temoignages-bandeau {
  background: var(--beige-chaud);
  padding: 0.75rem 0;
  margin-top: 0;
  overflow: hidden;
  border-top: 1px solid var(--blush-rose);
  border-bottom: 1px solid var(--blush-rose);
  position: relative;
  z-index: 2;
  /* Pleine largeur de gauche à droite sur tout l'écran */
  max-width: none;
  width: calc(100% + 4rem);
  margin-left: -2rem;
  box-sizing: border-box;
}

.temoignages-bandeau-inner {
  display: flex;
  width: max-content;
  animation: marquee-ltr 55s linear infinite;
}

.temoignages-bandeau-piste {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
  padding-right: 1.5rem;
}

.temoignages-bandeau-piste-double {
  padding-right: 0;
}

.temoignages-bandeau-texte {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.8rem, 1.8vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--charcoal);
  text-transform: uppercase;
  white-space: nowrap;
}

.temoignages-bandeau-sep {
  color: var(--marron);
  opacity: 0.6;
  font-size: 0.5em;
  user-select: none;
}

@keyframes marquee-ltr {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ========== PAGE CONTACT (contact.html) ========== */
/* ----- Page Contact ----- */
/* Fleurs flowerGreen en arrière-plan du main (comme hero services/témoignages) */
main.page-contact {
  position: relative;
  overflow: hidden;
  background: var(--blush-clair);
  color: var(--teal-fonce);
  padding-bottom: 5rem; /* place pour la vague teal en bas */
}

.contact-fleurs-fond {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.contact-fleur {
  position: absolute;
  width: clamp(80px, 12vw, 140px);
  height: auto;
  object-fit: contain;
  opacity: 0.35;
  filter: brightness(1.1);
}

.contact-fleur-1 {
  top: 12%;
  left: 8%;
  transform: rotate(-15deg);
  animation: accueil-float-1 8s ease-in-out infinite;
}

.contact-fleur-2 {
  top: 55%;
  right: 5%;
  transform: rotate(12deg);
  animation: accueil-float-2 10s ease-in-out infinite;
}

.contact-fleur-3 {
  bottom: 15%;
  left: 18%;
  transform: rotate(5deg);
  animation: accueil-float-3 9s ease-in-out infinite;
}

main.page-contact .page-contact-intro,
main.page-contact .page-contact-wrap {
  position: relative;
  z-index: 1;
}

.page-contact-intro .titre-section {
  color: var(--teal-fonce);
}

.page-contact-intro {
  text-align: center;
  padding: 4rem 2rem 2rem;
}

.page-contact-intro h1 {
  color: var(--teal-fonce);
  margin-bottom: 1rem;
}

.page-contact-intro .lead {
  max-width: 520px;
  margin: 0 auto;
  color: var(--teal-fonce);
}

.page-contact-wrap {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
  align-items: start;
}

.page-contact-col-gauche {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.page-contact-photo {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--blush-rose);
  box-shadow: 0 8px 32px var(--ombre-douce);
  aspect-ratio: 3 / 4;
  background: var(--beige);
}

.page-contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-contact-infos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
  margin: 0;
  border: none;
  text-align: left;
}

.page-contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
}

.page-contact-info-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--teal-fonce);
}

.page-contact-info-item a,
.page-contact-info-item span:not(.page-contact-info-label) {
  color: var(--teal-fonce);
  font-weight: 500;
  font-size: 1rem;
}

.page-contact-info-item a:hover {
  text-decoration: underline;
}

.page-contact-col-droite {
  min-width: 0;
}

.formulaire-contact {
  background: var(--blanc);
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid var(--blush-rose);
  box-shadow: 0 8px 32px var(--ombre-douce);
}

.formulaire-groupe {
  margin-bottom: 1.5rem;
}

.formulaire-contact label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--teal-fonce);
  margin-bottom: 0.5rem;
}

.formulaire-contact input,
.formulaire-contact textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--blush-rose);
  border-radius: 12px;
  font-size: 1rem;
  color: var(--teal-fonce);
  background: var(--beige);
  transition: border-color 0.2s ease;
}

.formulaire-contact input:focus,
.formulaire-contact textarea:focus {
  outline: none;
  border-color: var(--marron);
}

.formulaire-contact textarea {
  min-height: 140px;
  resize: vertical;
}

.formulaire-contact .bouton {
  width: 100%;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .page-contact-wrap {
    grid-template-columns: 1fr;
    max-width: 100%;
    padding: 2rem 1rem 4rem;
  }

  /* Ordre : formulaire en premier, puis liens de contact */
  .page-contact-col-droite {
    order: 1;
  }

  .page-contact-col-gauche {
    order: 2;
  }

  .page-contact-photo {
    display: none;
  }

  .page-contact-infos {
    text-align: center;
  }

  .page-contact-info-item {
    align-items: center;
  }
}

/* ========== Mobile : tout centré (texte, titres, boutons) ========== */
@media (max-width: 768px) {
  /* Section reconnaissance : cartes et bouton centrés */
  .reconnaissance-carte {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .reconnaissance-contenu .reconnaissance-bouton {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  /* Section À propos (accueil) : bloc droite centré */
  .section-a-propos .a-propos-droite {
    text-align: center;
  }

  .section-a-propos .a-propos-bouton-wrap {
    display: flex;
    justify-content: center;
  }

  .section-a-propos .a-propos-gauche {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Cartes témoignages : texte centré */
  .temoignages-carte {
    text-align: center;
  }

  .temoignages-cartes {
    align-items: center;
  }

  /* FAQ : liste et bouton centrés */
  .faq-contenu {
    text-align: center;
  }

  .faq-liste {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .faq-question {
    justify-content: center;
    text-align: center;
  }

  .faq-reponse {
    text-align: center;
  }

  .faq-contenu .bouton-principal {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  /* Sections : conteneurs principaux centrés */
  main section,
  .section-accueil .accueil-contenu,
  .section-chiffres .chiffres-contenu,
  .section-reconnaissance .reconnaissance-contenu,
  .section-temoignages .temoignages-contenu,
  .section-faq .faq-contenu {
    text-align: center;
  }

  main section h1,
  main section h2,
  main section h3,
  main section .titre-section,
  main section .surtitre,
  main section p {
    text-align: center;
  }

  /* Boutons centrés dans les sections */
  .section-accueil .accueil-boutons,
  .section-a-propos .a-propos-bouton-wrap,
  .faq-contenu .bouton-principal {
    justify-content: center;
  }

  .section-accueil .accueil-boutons {
    display: flex;
    justify-content: center;
  }

  .temoignages-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .temoignages-contenu .temoignages-cta-texte,
  .temoignages-contenu .temoignages-cta {
    text-align: center;
  }
}

/* Optimisations mobile « pro » pour les très petits écrans */
@media (max-width: 480px) {
  /* Hero accueil */
  .section-accueil {
  padding: 0 1.25rem 4.5rem;
  }

  .accueil-contenu {
    gap: 2rem;
  }

  .accueil-texte {
    flex: 1 1 auto;
    max-width: 100%;
  }

  .accueil-sous-titre {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .accueil-boutons {
    flex-direction: column;
    align-items: stretch;
  }

  .section-accueil .bouton-principal {
    width: 100%;
    text-align: center;
  }

  .accueil-photos {
    gap: 0.75rem;
  }

  .accueil-photos .accueil-photo {
    padding: 0.5rem 0.5rem 1.5rem;
  }

  .accueil-photos .accueil-photo-centre img {
    width: 200px;
    height: 200px;
  }

  /* Chiffres */
  .section-chiffres {
    padding: 4rem 1.25rem 7rem;
  }

  /* Tu te reconnais ? */
  .reconnaissance-carte {
    padding: 1.25rem;
    font-size: 0.98rem;
  }

  /* Témoignages accueil */
  .temoignages-contenu {
    padding: 2.5rem 1.5rem 3.25rem;
  }

  .temoignages-carte {
    width: 260px;
    max-width: 100%;
  }

  /* FAQ */
  .section-faq {
    padding: 3rem 1rem 3.5rem;
  }

  .faq-reponse p {
    font-size: 0.88rem;
  }
}
