/* ==========================================================================
   RESSOURCE & VOUS — Feuille de styles principale
   Identité visuelle : vert sauge #0a7464 | rose poudré #d97269
   Police : Cormorant Garamond (titres) + Poppins (texte)
   ========================================================================== */

/* Google Fonts chargées via <link> dans base.twig pour éviter le blocage du rendu */


/* ===== _variables.css ===== */
/* --------------------------------------------------------------------------
   2. VARIABLES CSS (design tokens)
   -------------------------------------------------------------------------- */
:root {
  /* Couleurs */
  --color-vert:       #0a7464;
  --color-vert-dark:  #1b3c22;
  --color-vert-light: #0a8878;
  --color-rose:       #ed8676;
  --color-rose-light: #f09d90;
  --color-rose-btn:   #df6050;
  --color-rose-btn-hover: #cc5045;
  --color-gris:       #52515a;
  --color-gris-light: #eeece9;
  --color-blanc:      #ffffff;
  --color-creme:      #fdfaf6;
  --color-creme-warm: #f7f5f2;
  --color-texte:      #252525;
  --color-texte-light:#525252;

  /* Typographie */
  --font-titre:  'Cormorant Garamond', Georgia, serif;
  --font-texte:  'Poppins', sans-serif;

  /* Tailles de police */
  --fs-xs:   0.75rem;   /* 12px */
  --fs-sm:   0.875rem;  /* 14px */
  --fs-base: 1rem;      /* 16px */
  --fs-md:   1.125rem;  /* 18px */
  --fs-lg:   1.5rem;    /* 24px */
  --fs-xl:   2rem;      /* 32px */
  --fs-2xl:  2.5rem;    /* 40px */
  --fs-3xl:  3rem;      /* 48px */

  /* Espacements */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Rayons */
  --radius-btn: 15px;
  --radius-card: 10px;
  --radius-lg:   20px;

  /* Ombres */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);

  /* Transitions */
  --transition: 0.25s ease;

  /* Conteneur max */
  --container: 1200px;
}


/* ===== _reset.css ===== */
/* --------------------------------------------------------------------------
   3. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-texte);
  color: var(--color-texte);
  background: var(--color-blanc);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-titre);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}


/* ===== _utilities.css ===== */
/* --------------------------------------------------------------------------
   4. UTILITAIRES
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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


/* ===== _buttons.css ===== */
/* --------------------------------------------------------------------------
   5. BOUTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-btn);
  font-family: var(--font-texte);
  font-size: var(--fs-base);
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: 2px solid var(--color-rose-btn);
  outline-offset: 3px;
}

.btn--vert:focus-visible {
  outline-color: var(--color-vert);
}

.btn--vert {
  background: var(--color-vert);
  color: var(--color-blanc);
}

.btn--vert:hover {
  background: var(--color-vert-light);
  color: var(--color-blanc);
}

.btn--rose {
  background: var(--color-rose-btn);
  color: var(--color-blanc);
}

.btn--rose:hover {
  background: var(--color-rose-btn-hover);
  color: var(--color-blanc);
}

.btn svg,
.btn img.btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   20. BOUTON OUTLINE — telecharger tarifs
   -------------------------------------------------------------------------- */
.prestations-download {
  text-align: center;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.btn--outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  border: 2px solid var(--color-vert);
  border-radius: 6px;
  background: transparent;
  color: var(--color-vert);
  font-family: var(--font-texte);
  font-size: var(--fs-sm);
  font-weight: 500;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--color-vert);
  color: #fff;
}

.btn--outline svg {
  width: 18px;
  height: 18px;
}


/* ===== _header.css ===== */
/* --------------------------------------------------------------------------
   6. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), transform 0.3s ease, top 0.3s ease;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.site-header__logo img {
  height: 52px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.site-nav__links {
  display: flex;
  gap: var(--space-lg);
}

.site-nav__links a {
  font-family: var(--font-texte);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-texte);
  position: relative;
  padding-bottom: 4px;
}

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

.site-nav__links a:hover::after,
.site-nav__links a.active::after {
  width: 100%;
}

.site-nav__links a:hover {
  color: var(--color-vert);
}

/* Chevron dropdown prestations — visible uniquement mobile */
.nav-dropdown__chevron {
  display: none;
}

/* Lien RDV dupliqué dans le panel mobile — masqué sur desktop */
.nav-mobile-rdv {
  display: none;
}

/* Menu burger mobile */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-texte);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Dropdown Prestations — contrôlé par JS via .is-open sur le li parent */
.nav-dropdown {
  position: relative;
  /* Le padding-bottom étend la zone cliquable du li jusqu'au menu */
  padding-bottom: 12px;
  margin-bottom: -12px;
}

.nav-dropdown__menu {
  /* Invisible par défaut — pointer-events toujours actif pour capter mouseenter */
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: white;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  min-width: 230px;
  /* padding-top crée un pont invisible entre le li et le menu */
  padding: 8px 0 0.5rem 0;
  z-index: 200;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

/* Pseudo-élément qui "remplit" l'espace entre le lien et le menu */
.nav-dropdown__menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

/* Classe ajoutée par JS au mouseenter */
.nav-dropdown__menu.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__menu a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-texte);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-texte);
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
}

.nav-dropdown__menu a:hover {
  background: var(--color-gris-light);
  color: var(--color-vert);
  padding-left: 1.6rem;
}

.nav-dropdown__menu a::after {
  display: none;
}

/* --------------------------------------------------------------------------
   13. BURGER ANIMATION
   -------------------------------------------------------------------------- */
.burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.is-active span:nth-child(2) {
  opacity: 0;
}
.burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ===== _hero.css ===== */
/* --------------------------------------------------------------------------
   7. HERO (commun à toutes les pages)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  height: 88vh;
  min-height: 500px;
  max-height: 980px;
  margin-top: 72px; /* compense le header fixed */
  overflow: hidden;
}

/* Vague SVG en bas de CHAQUE hero */
.hero::after {
  content: '';
  display: block;
  height: 50px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 50' preserveAspectRatio='none'%3E%3Cpath d='M0,25 C360,50 720,0 1080,25 C1260,38 1380,10 1440,25 L1440,50 L0,50 Z' fill='%23f7f5f2'/%3E%3C/svg%3E") no-repeat bottom center / 100% 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  pointer-events: none;
}

/* Vague blanche pour les hero menant vers fond blanc (blog, article…) */
.hero--wave-white::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 50' preserveAspectRatio='none'%3E%3Cpath d='M0,25 C360,50 720,0 1080,25 C1260,38 1380,10 1440,25 L1440,50 L0,50 Z' fill='%23ffffff'/%3E%3C/svg%3E");
}

/* Vague blanche pour hero blog (mène vers section blanche) */
.page-blog .hero--light::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 50' preserveAspectRatio='none'%3E%3Cpath d='M0,25 C360,50 720,0 1080,25 C1260,38 1380,10 1440,25 L1440,50 L0,50 Z' fill='%23ffffff'/%3E%3C/svg%3E");
}

/* Vague gris-light pour hero contact (mène vers section gris-light) */
.page-contact .hero--light::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 50' preserveAspectRatio='none'%3E%3Cpath d='M0,25 C360,50 720,0 1080,25 C1260,38 1380,10 1440,25 L1440,50 L0,50 Z' fill='%23f0efed'/%3E%3C/svg%3E");
}

/* Vague grise pour le hero accueil (mène vers section-intro gris) */
.hero--home::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 50' preserveAspectRatio='none'%3E%3Cpath d='M0,25 C360,50 720,0 1080,25 C1260,38 1380,10 1440,25 L1440,50 L0,50 Z' fill='%2352515a'/%3E%3C/svg%3E");
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(11,103,91,0.18) 0%,
    rgba(0,0,0,0.00) 45%,
    rgba(0,0,0,0.50) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-lg);
}

.hero__quote {
  background: rgba(0,0,0,0.30);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  max-width: 780px;
  text-align: center;
  animation: hero-fade-up 1.2s ease both;
  animation-delay: 0.3s;
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__quote p {
  font-family: var(--font-titre);
  font-size: var(--fs-xl);
  font-weight: 400;
  color: white;
  line-height: 1.5;
  font-style: italic;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}

/* Hero accueil (même taille que les autres, citation centrée sans fond rose) */
.hero--home {
  height: 88vh;
  min-height: 500px;
  max-height: 980px;
}

.hero--home .hero__quote {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2rem;
}

.hero--home .hero__quote p {
  font-family: var(--font-titre);
  font-size: clamp(var(--fs-xl), 4vw, var(--fs-3xl));
  font-style: italic;
  font-weight: 600;
  line-height: 1.25;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

/* Citation : plus petite que le titre eyebrow */
.hero--home .hero__quote p:not(.hero__eyebrow) {
  font-size: clamp(var(--fs-sm), 1.5vw, var(--fs-lg));
  font-weight: 400;
}

/* Titre eyebrow : pleine luminosité pour s'imposer comme titre */
.hero--home .hero__eyebrow {
  color: rgba(255, 255, 255, 0.95);
}

/* Eyebrow au-dessus de la citation hero */
.hero__eyebrow {
  font-family: var(--font-texte);
  font-size: var(--fs-xs);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-sm);
}

/* Groupe de CTA sous la citation hero */
.hero__cta-group {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

@media (max-width: 600px) {
  .hero__cta-group {
    flex-direction: column;
    align-items: center;
  }
}

/* Bouton outline blanc pour le hero */
.btn--hero-outline {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.65);
}

.btn--hero-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
  box-shadow: none;
}

/* --- Hero variante light (epilation, etc.) --- */
.hero--light {
  background: #fdfbf7;
  height: 100vh;
  min-height: 600px;
  max-height: none;
}

.hero--light .hero__image {
  opacity: 0.80;
  filter: none;
}

.hero--light .hero__overlay {
  background: linear-gradient(to bottom, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.55) 100%);
}

.hero--light .hero__content {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.hero--light .hero__title {
  font-family: var(--font-titre);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 700;
  color: var(--color-vert-light);
  line-height: 1.1;
  letter-spacing: -0.02em;
  animation: hero-fade-up 1s ease both;
  animation-delay: 0.2s;
}

.hero--maquillage .hero__title,
.hero--prestations-index .hero__title {
  color: #ffffff;
}

.hero--maquillage .hero__subtitle,
.hero--prestations-index .hero__subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.hero--prestations-index .hero__scroll-indicator,
.hero--lpg .hero__scroll-indicator {
  color: rgba(255, 255, 255, 0.7);
}

.hero--lpg .hero__title {
  color: #ffffff;
}

.hero--lpg .hero__subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.hero--lpg .hero__overlay {
  background: linear-gradient(to bottom, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.50) 100%);
}

.hero--light .hero__subtitle {
  font-family: var(--font-texte);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 300;
  color: var(--color-vert-light);
  opacity: 0.85;
  letter-spacing: 0.12em;
  animation: hero-fade-up 1s ease both;
  animation-delay: 0.5s;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-vert-light);
  opacity: 0.65;
  text-decoration: none;
  z-index: 4;
  transition: opacity var(--transition);
}

.hero__scroll-indicator:hover {
  opacity: 1;
}

.hero__scroll-indicator span {
  font-family: var(--font-texte);
  font-size: var(--fs-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.hero__scroll-indicator::before {
  content: '';
  display: block;
  width: 1px;
  height: 2.5rem;
  background: currentColor;
  opacity: 0.5;
  order: 1;
}

.hero__scroll-indicator svg {
  order: 2;
}

@media (max-width: 600px) {
  .hero--light {
    min-height: 500px;
    height: 85vh;
  }
  .hero--light .hero__title {
    font-size: clamp(3rem, 14vw, 5rem);
  }
  .hero__scroll-indicator {
    bottom: 2rem;
  }
}

/* --------------------------------------------------------------------------
   7b. HERO ACCUEIL — layout grid moderne
   -------------------------------------------------------------------------- */

@media (min-width: 769px) {
  .hero-home__img-small { display: block; }
}

.hero-home::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 50px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 50' preserveAspectRatio='none'%3E%3Cpath d='M0,25 C360,50 720,0 1080,25 C1260,38 1380,10 1440,25 L1440,50 L0,50 Z' fill='%2352515a'/%3E%3C/svg%3E");
  background-size: cover;
  z-index: 2;
}

.hero-home {
  position: relative;
  background: var(--color-creme);
  padding: var(--space-xl) 0;
  padding-top: calc(72px + var(--space-xl));
  overflow: hidden;
}

.hero-home__bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.hero-home__bg-blob--rose {
  top: -10%; right: -5%;
  width: 500px; height: 500px;
  background: rgba(226,169,161,0.10);
}

.hero-home__bg-blob--green {
  bottom: -20%; left: -10%;
  width: 600px; height: 600px;
  background: rgba(30,48,32,0.05);
}

.hero-home__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--space-xl);
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.hero-home__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  animation: hero-fade-up 1.2s ease both;
  animation-delay: 0.3s;
}

.hero-home__label {
  font-family: var(--font-texte);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-rose);
}

.hero-home__title {
  font-family: var(--font-titre);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  font-style: normal;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-vert);
  margin: 0;
}

.hero-home__desc {
  font-family: var(--font-texte);
  font-size: var(--fs-base);
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-texte-light);
  max-width: 440px;
  margin: 0;
}

.hero-home__separator {
  width: 100%; height: 1px;
  background: #e2e2e2;
  margin: var(--space-sm) 0;
}

.hero-home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

.hero-home__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 220px;
  justify-content: center;
  height: 3.5rem;
  padding: 0 2rem;
  background: var(--color-vert);
  color: white;
  font-family: var(--font-texte);
  font-size: var(--fs-sm);
  font-weight: 700;
  border-radius: var(--radius-card);
  text-decoration: none;
  transition: background 0.25s ease, transform 0.15s ease;
  box-shadow: 0 10px 30px rgba(30,48,32,0.20);
}

.hero-home__btn-primary:hover {
  background: var(--color-vert-dark);
  transform: translateY(-1px);
}

.hero-home__btn-primary svg { width: 20px; height: 20px; }

.hero-home__btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 3.5rem;
  padding: 0 2rem;
  background: transparent;
  color: var(--color-vert);
  font-family: var(--font-texte);
  font-size: var(--fs-sm);
  font-weight: 700;
  border: 1px solid #ccc;
  border-radius: var(--radius-card);
  text-decoration: none;
  transition: background 0.25s ease;
}

.hero-home__btn-outline:hover { background: #f5f5f5; }

.hero-home__stats {
  display: flex;
  gap: var(--space-xl);
  padding-top: var(--space-sm);
}

.hero-home__stat { display: flex; flex-direction: column; }

.hero-home__stat-number {
  font-family: var(--font-texte);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-vert);
}

.hero-home__stat-label {
  font-family: var(--font-texte);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #999;
}

.hero-home__visual {
  position: relative;
  height: 500px;
}

.hero-home__img-wrap {
  position: relative;
  width: 100%; height: 100%;
  padding: 2rem;
}

.hero-home__badge {
  position: absolute;
  bottom: 2rem; right: -1rem;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: white;
  border-radius: 50px;
  padding: 0.6rem 1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.hero-home__badge-text { display: flex; flex-direction: column; line-height: 1.2; }

.hero-home__badge-score {
  font-family: var(--font-texte);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--color-vert-dark);
}

.hero-home__badge-label {
  font-family: var(--font-texte);
  font-size: 0.625rem;
  font-weight: 500;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-home__accent-leaf {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.hero-home__accent-leaf svg { width: 100%; height: 100%; }

.hero-home__accent-leaf--rose {
  top: -1rem; right: 1.5rem;
  width: 8rem; height: 10rem;
  color: var(--color-rose);
  transform: rotate(25deg);
}

.hero-home__accent-leaf--green {
  bottom: 1.5rem; left: -1rem;
  width: 12rem; height: 5.5rem;
  color: var(--color-vert-dark);
  transform: rotate(-8deg);
}

.hero-home__img-main {
  position: relative;
  z-index: 2;
  width: 100%; height: 100%;
  overflow: hidden;
  border-radius: 62% 38% 46% 54% / 60% 44% 56% 40%;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  transition: border-radius 0.9s ease;
}

.hero-home__img-main:hover {
  border-radius: 58% 42% 52% 48% / 56% 48% 52% 44%;
}

.hero-home__img-main img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }

.hero-home__img-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,48,32,0.40), transparent);
}

.hero-home__img-small {
  display: none;
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 10rem; height: 14rem;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 8px solid var(--color-creme);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  z-index: 3;
}

.hero-home__img-small img { width: 100%; height: 100%; object-fit: cover; }

/* Bloc intro prestation (LPG, etc.) */
.prestation-intro {
  background: var(--color-creme-warm);
  padding: var(--space-xl) 0 0;
  text-align: center;
}

.prestation-intro__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.prestation-intro h2 {
  font-family: var(--font-titre);
  font-size: var(--fs-xl);
  font-style: italic;
  color: var(--color-vert);
  margin-bottom: var(--space-sm);
}

.prestation-intro p {
  font-size: var(--fs-base);
  line-height: 1.8;
  color: var(--color-texte-light);
}


/* ===== _prestations.css ===== */
/* --------------------------------------------------------------------------
   8. SECTION PRESTATIONS (fond crème + vraies feuilles PNG)
   -------------------------------------------------------------------------- */
.section-prestations {
  background: var(--color-creme-warm);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

/* Feuilles décoratives — coin bas-gauche et haut-droit */
.section-prestations::before,
.section-prestations::after {
  content: '';
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.55;
}

.section-prestations::before {
  width: 380px;
  height: 380px;
  bottom: -80px;
  left: -80px;
  background-image: url('images/feuille-2.png');
  transform: rotate(10deg);
  opacity: 0.18;
}

.section-prestations::after {
  width: 320px;
  height: 320px;
  top: -80px;
  right: -80px;
  background-image: url('images/feuille-1.png');
  transform: rotate(190deg) scaleX(-1);
  opacity: 0.18;
}

/* Grid deux colonnes pour les prestations */
.prestations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

.prestations-grid--single {
  grid-template-columns: 1fr;
  max-width: 700px;
}

.prestations-block h2 {
  font-family: var(--font-titre);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--color-vert);
  margin-bottom: var(--space-sm);
  font-style: italic;
}

.prestations-block h3 {
  font-family: var(--font-titre);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--color-vert);
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
  font-style: italic;
}

.prestations-block .subtitle {
  font-size: var(--fs-sm);
  color: var(--color-texte-light);
  font-style: italic;
  margin-bottom: var(--space-sm);
}

/* Liste de prestations avec pointillés */
.prestation-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.prestation-item {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: var(--fs-sm);
  color: var(--color-texte);
  line-height: 1.5;
}

.prestation-item::before {
  content: '•';
  color: var(--color-rose);
  font-size: 1rem;
  flex-shrink: 0;
}

.prestation-item__name {
  flex: 1;
}

.prestation-item__dots {
  flex: 1;
  border-bottom: 1px dotted #aaa;
  margin: 0 0.3rem;
  margin-bottom: 4px;
  min-width: 20px;
}

.prestation-item__price {
  font-weight: 600;
  color: var(--color-vert);
  white-space: nowrap;
}

/* CTA centré sous les listes */
.prestations-cta {
  margin-top: var(--space-lg);
  display: flex;
  justify-content: flex-start;
}

/* --------------------------------------------------------------------------
   12. PAGE PRESTATIONS INDEX — Cards de navigation
   -------------------------------------------------------------------------- */
.prestations-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  padding: var(--space-xl) 0;
}

.prestation-card {
  position: relative;
  display: block;
  border-radius: 1.2rem;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  text-decoration: none;
  cursor: pointer;
}

.prestation-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.prestation-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    rgba(0, 0, 0, 0.05) 100%
  );
  transition: background 0.4s ease;
}

.prestation-card h2 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg) var(--space-md);
  font-family: var(--font-titre);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  font-style: italic;
  color: #ffffff;
  text-align: left;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 2;
  transition: transform 0.4s ease;
}

.prestation-card:hover img {
  transform: scale(1.08);
}

.prestation-card:hover .prestation-card__overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.70) 0%,
    rgba(0, 0, 0, 0.20) 50%,
    rgba(0, 0, 0, 0.08) 100%
  );
}

.prestation-card:hover h2 {
  transform: translateY(-4px);
}

@media (max-width: 900px) {
  .prestations-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .prestation-card {
    aspect-ratio: 3 / 4;
  }
}

@media (max-width: 500px) {
  .prestations-nav-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .prestation-card {
    aspect-ratio: 4 / 3;
  }
}


/* ===== _accueil.css ===== */
/* --------------------------------------------------------------------------
   9. PAGE ACCUEIL — sections spécifiques
   -------------------------------------------------------------------------- */

/* Section présentation (fond gris + vague basse + feuille) */
.section-intro {
  background: var(--color-gris);
  padding: var(--space-xl) 0 0;
  color: white;
  position: relative;
  overflow: visible;
}

/* Vague SVG en bas de la section intro */
.section-intro::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 61px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0,30 C240,60 480,0 720,30 C960,60 1200,0 1440,30 L1440,60 L0,60 Z' fill='%23f7f5f2'/%3E%3C/svg%3E") no-repeat bottom center / 100% 100%;
  pointer-events: none;
  z-index: 2;
}

/* Feuille décorative coin haut-droit */
.section-intro::before {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  top: -60px;
  right: -60px;
  background-image: url('images/feuille-3.png');
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: 0.22;
  transform: rotate(-20deg) scaleX(-1);
}

/* Feuille décorative coin bas-gauche section-intro */
.section-intro__extra-leaf {
  position: absolute;
  width: 360px;
  height: 360px;
  bottom: 30px;
  left: -60px;
  background-image: url('images/feuille-2.png');
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: 0.15;
  transform: rotate(20deg);
  z-index: 0;
}

.section-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
  padding-bottom: var(--space-xl);
}

.section-intro__text h2 {
  font-family: var(--font-titre);
  font-size: var(--fs-2xl);
  font-weight: 700;
  font-style: italic;
  line-height: 1.3;
  margin-bottom: var(--space-md);
  color: white;
}

.section-intro__text p {
  font-size: var(--fs-base);
  line-height: 1.75;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-md);
}

.section-intro__btns {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.section-intro__photo {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.section-intro__photo img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

/* Section horaires + marques */
/* ---- SECTION HORAIRES ---- */
.section-horaires {
  padding: var(--space-2xl) 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.section-horaires::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  top: -60px;
  right: -80px;
  background-image: url('images/feuille-2.png');
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: 0.12;
  transform: rotate(-30deg) scaleX(-1);
}

.section-horaires__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Horaires */
.horaires h2 {
  font-family: var(--font-titre);
  font-size: var(--fs-xl);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
  color: var(--color-texte);
}

.horaires__underline {
  width: 120px;
  height: 2px;
  background: var(--color-texte);
  margin-bottom: var(--space-md);
}

.horaires__table {
  width: 100%;
  border-collapse: collapse;
}

.horaires__table tr {
  border-bottom: 1px solid #ddd;
}

.horaires__table td {
  padding: 0.8rem 0.5rem;
  font-family: var(--font-texte);
  font-size: var(--fs-base);
}

.horaires__table td:first-child {
  font-weight: 500;
}

.horaires__table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--color-vert);
}

/* Bon cadeau */
.horaires__cado-card {
  background: var(--color-gris-light);
  border-radius: var(--radius-card);
  padding: var(--space-xl);
  text-align: center;
}

.horaires__cado-title {
  font-family: var(--font-titre);
  font-size: var(--fs-lg);
  font-weight: 700;
  font-style: italic;
  color: var(--color-texte);
  margin-bottom: var(--space-xs);
}

.horaires__cado-sub {
  font-size: var(--fs-sm);
  color: var(--color-gris);
  margin-bottom: var(--space-md);
}

/* ---- SECTION MARQUES ---- */
.section-marques {
  padding: var(--space-xl) 0 var(--space-2xl);
  background: white;
  position: relative;
}

.section-marques__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-marques__header h2 {
  font-family: var(--font-titre);
  font-size: var(--fs-xl);
  font-weight: 700;
  font-style: italic;
  color: var(--color-vert);
  margin-bottom: var(--space-xs);
}

.section-marques__header p {
  font-size: var(--fs-base);
  color: var(--color-gris);
  max-width: 500px;
  margin: 0 auto;
}

.section-marques__cat {
  margin-bottom: var(--space-lg);
}

.section-marques__cat h3 {
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-rose);
  text-align: center;
  margin-bottom: var(--space-md);
}

.section-marques__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.section-marques__item {
  background: var(--color-gris-light);
  border-radius: var(--radius-card);
  padding: var(--space-sm) var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 80px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.section-marques__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.section-marques__item img {
  height: 45px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter var(--transition);
}

.section-marques__item:hover img {
  filter: none;
}


/* ===== _waves.css ===== */
/* --------------------------------------------------------------------------
   9b. SÉPARATEURS VAGUE (élément HTML réutilisable)
   Placé entre deux sections pour créer une transition organique.
   Usage : <div class="wave-separator wave-separator--creme-to-vert"></div>
   -------------------------------------------------------------------------- */
.wave-separator {
  display: block;
  width: 100%;
  height: 55px;
  pointer-events: none;
  line-height: 0;
  position: relative;
  z-index: 2;
}

.wave-separator svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Fond crème → vert footer (pages prestations, index prestations) */
.wave-separator--to-footer {
  display: none !important;
}

/* Anciens backgrounds wave-to-footer — supprimés, vague intégrée au footer */

/* --------------------------------------------------------------------------
   18. VAGUE de transition entre section-intro et section-equipe
   Le padding-top de section-equipe absorbe la vague du bas de section-intro
   -------------------------------------------------------------------------- */

/* Sur mobile : les vagues CSS restent mais réduites */
@media (max-width: 768px) {
  .hero::after {
    height: 30px;
  }
  .section-intro::after {
    height: 35px;
  }
  .section-equipe::after {
    height: 30px;
  }
  .section-equipe {
    padding-top: calc(var(--space-xl) + 25px);
  }
  .wave-separator {
    height: 35px;
  }
}


/* ===== _footer.css ===== */
/* --------------------------------------------------------------------------
   10. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--color-vert);
  color: white;
  padding: var(--space-2xl) 0 0;
  position: relative;
  overflow: visible;
}

/* Vague intégrée AU footer — zéro gap possible */
.site-footer::before {
  content: '';
  position: absolute;
  top: -54px;
  left: 0;
  right: 0;
  height: 55px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 55' preserveAspectRatio='none'%3E%3Cpath d='M0,22 C280,55 560,0 840,28 C1050,48 1300,8 1440,22 L1440,55 L0,55 Z' fill='%230a7464'/%3E%3C/svg%3E") no-repeat bottom center / 100% 100%;
  pointer-events: none;
  z-index: 2;
}

/* Feuille décorative footer (unique, via ::after) */
.site-footer::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  top: 40px;
  left: -60px;
  background-image: url('images/feuille-3.png');
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: 0.07;
  transform: rotate(15deg);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(200px, 1.4fr) minmax(140px, 1fr) minmax(140px, 1fr) minmax(180px, 1.2fr);
  gap: var(--space-xl);
  align-items: start;
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  position: relative;
  z-index: 1;
}

/* Colonne logo */
.footer-logo {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-logo img {
  height: 70px;
  width: auto;
}

.footer-logo__desc {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

.footer-logo__desc p {
  margin-bottom: 0.2rem;
}

.footer-logo__contact {
  margin-top: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-logo__contact a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition);
}

.footer-logo__contact a:hover {
  color: white;
}

.footer-logo__contact svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  opacity: 0.8;
}

/* Titres de colonnes */
.footer-nav h3,
.footer-rdv h3,
.footer-social h3 {
  font-family: var(--font-texte);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  font-family: var(--font-texte);
  font-weight: 400;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--transition), gap var(--transition);
}

.footer-nav a::before {
  content: '→';
  font-size: 0.7rem;
  opacity: 0.5;
  transition: opacity var(--transition), transform var(--transition);
}

.footer-nav a:hover {
  color: white;
  gap: 0.65rem;
}

.footer-nav a:hover::before {
  opacity: 1;
  transform: translateX(2px);
}

/* Colonne RDV */
.footer-rdv {
  display: flex;
  flex-direction: column;
}

.footer-rdv__cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-rdv__hours {
  margin-top: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-card);
  border: 1px solid rgba(255,255,255,0.12);
}

.footer-rdv__hours p {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
}

.footer-rdv__hours strong {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.4rem;
}

/* Réseaux sociaux */
.footer-social__icons {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-xs);
}

.footer-social__icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-card);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: white;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
}

.footer-social__icons a:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
}

.footer-social__icons svg {
  width: 20px;
  height: 20px;
}

.footer-social__tagline {
  margin-top: var(--space-md);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  font-style: italic;
}

/* Barre de fond footer (copyright) */
.site-footer__bottom {
  padding: var(--space-md) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  position: relative;
  z-index: 1;
}

.site-footer__bottom-links {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.site-footer__bottom a {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

.site-footer__bottom a:hover {
  color: rgba(255,255,255,0.9);
}

.site-footer__bottom-sep {
  color: rgba(255,255,255,0.25);
  font-size: var(--fs-xs);
}

.site-footer__copyright {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.4);
}


/* ===== _responsive.css ===== */
/* --------------------------------------------------------------------------
   11. RESPONSIVE MOBILE
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .site-header__inner {
    height: 60px;
  }

  /* Masquer liens + btn dans le header mobile */
  .site-nav__links,
  .site-nav .btn {
    display: none;
  }

  .burger {
    display: flex;
  }

  /* ---- Menu ouvert : panel full-height ----
     position: absolute (pas fixed) car backdrop-filter sur .site-header
     cree un containing block qui casse position:fixed des enfants */
  .site-nav.is-open .site-nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: calc(100vh - 60px);
    height: calc(100dvh - 60px);
    background: white;
    z-index: 99;
    overflow-y: auto;
    padding: var(--space-sm) var(--space-md);
    gap: 0;
    box-shadow: none;
  }

  /* Chaque élément du menu */
  .site-nav.is-open .site-nav__links > li {
    border-bottom: 1px solid var(--color-gris-light);
  }

  /* Lien principal */
  .site-nav.is-open .site-nav__links a {
    display: block;
    padding: var(--space-sm) 0;
    font-family: var(--font-titre);
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: none;
    color: var(--color-texte);
  }

  .site-nav.is-open .site-nav__links a::after {
    display: none;
  }

  .site-nav.is-open .site-nav__links a:hover {
    color: var(--color-vert);
  }

  /* li.nav-dropdown : flex row pour aligner lien + chevron */
  .site-nav.is-open .site-nav__links .nav-dropdown {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px solid var(--color-gris-light);
    position: static;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .site-nav.is-open .site-nav__links .nav-dropdown > a {
    flex: 1;
  }

  /* Bouton RDV desktop — masque sur mobile (le mobile a nav-mobile-rdv dans le panel) */
  .site-nav > .btn {
    display: none !important;
  }

  /* Bouton RDV dans le panel mobile */
  .nav-mobile-rdv {
    display: block;
    margin-top: auto;
    padding-top: var(--space-md);
    padding-bottom: var(--space-lg);
    border-bottom: none !important;
  }

  .nav-mobile-rdv .btn {
    display: inline-flex;
    width: auto;
    margin: 0 auto;
    justify-content: center;
    padding: 0.85rem 2.5rem;
    font-size: var(--fs-sm);
    border-radius: 50px;
    background: var(--color-vert);
    color: var(--color-blanc) !important;
    font-family: var(--font-texte);
    font-style: normal;
    font-weight: 500;
  }

  .nav-mobile-rdv .btn:hover {
    background: var(--color-vert-light);
    color: var(--color-blanc) !important;
  }

  .nav-mobile-rdv {
    text-align: center;
  }

  /* ---- Dropdown prestations mobile : accordéon ---- */
  .nav-dropdown__chevron {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0.75rem;
    cursor: pointer;
    color: var(--color-texte);
    transition: transform 0.25s ease, color 0.2s ease;
    flex-shrink: 0;
  }

  .nav-dropdown__chevron.is-open {
    transform: rotate(180deg);
    color: var(--color-vert);
  }

  .nav-dropdown__menu {
    position: static !important;
    transform: none !important;
    left: auto !important;
    box-shadow: none !important;
    background: none !important;
    border-radius: 0;
    opacity: 1 !important;
    visibility: visible !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0;
    margin: 0;
    width: 100%;
    flex-basis: 100%;
  }

  .nav-dropdown__menu.is-visible {
    max-height: 600px;
    padding: 0.25rem 0 0.5rem;
    transform: none !important;
  }

  .nav-dropdown__menu li {
    border-bottom: none !important;
  }

  .nav-dropdown__menu a {
    font-family: var(--font-texte) !important;
    font-size: var(--fs-sm) !important;
    font-style: normal !important;
    font-weight: 400 !important;
    letter-spacing: 0.04em;
    padding: 0.5rem 0 0.5rem 1rem !important;
    border-bottom: none;
    color: var(--color-gris) !important;
    transition: color var(--transition);
  }

  .nav-dropdown__menu a:hover {
    color: var(--color-vert) !important;
  }

  .hero {
    height: 80vh;
    min-height: 400px;
    margin-top: 60px;
  }

  .hero--home {
    height: 80vh;
    min-height: 400px;
  }

  .hero--home .hero__quote p {
    font-size: var(--fs-xl);
  }

  .hero--home .hero__quote p:not(.hero__eyebrow) {
    font-size: var(--fs-sm);
  }

  .hero__quote {
    padding: var(--space-sm) var(--space-md);
  }

  .hero__quote p {
    font-size: var(--fs-base);
  }

  .section-intro__inner,
  .section-horaires__inner,
  .prestations-grid {
    grid-template-columns: 1fr;
  }

  .horaires__cado-card {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .section-intro__photo {
    order: -1;
  }

  .section-intro__photo img {
    height: 240px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .site-footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .prestations-cta {
    justify-content: center;
  }

  .hero-home {
    padding-top: calc(60px + var(--space-xl));
  }

  .hero-home__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-home__content { align-items: center; }
  .hero-home__desc { max-width: 100%; }
  .hero-home__actions { justify-content: center; }
  .hero-home__stats { justify-content: center; }
  .hero-home__visual { height: 400px; }
  .hero-home__img-main { border-radius: 50%; }
  .hero-home__accent-leaf--rose { width: 5rem; height: 6.5rem; }
  .hero-home__accent-leaf--green { width: 8rem; height: 3.5rem; }

  .hero-home__btn-primary,
  .hero-home__btn-outline {
    min-width: unset;
  }
}

@media (max-width: 600px) {
  .hero-home {
    padding-top: calc(60px + var(--space-lg));
    padding-bottom: var(--space-lg);
  }

  .hero-home__visual { height: 300px; }
  .hero-home__title { font-size: clamp(2.2rem, 10vw, 3.5rem); }

  .hero-home__btn-primary,
  .hero-home__btn-outline {
    min-width: unset;
    width: 100%;
  }

  .hero-home__actions { flex-direction: column; }
  .hero-home__stats { gap: var(--space-lg); }

  .hero {
    height: 75vh;
    min-height: 350px;
  }

  .hero--home {
    height: 75vh;
  }

  .hero--home .hero__quote p {
    font-size: var(--fs-lg);
  }

  .hero--home .hero__quote p:not(.hero__eyebrow) {
    font-size: var(--fs-xs);
  }

  .prestations-block h2 {
    font-size: var(--fs-lg);
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .marques__cado {
    flex-direction: column;
    text-align: center;
  }

  .section-intro__btns {
    flex-direction: column;
  }

  .section-intro__btns .btn {
    justify-content: center;
  }
}


/* ===== _animations.css ===== */
/* --------------------------------------------------------------------------
   14. SCROLL REVEAL
   Les éléments .reveal partent de légèrement en bas / invisible
   et montent doucement quand ils entrent dans le viewport (.revealed).
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Variante : slide depuis la gauche */
.reveal--left {
  opacity: 0;
  transform: translateX(-36px);
}
.reveal--left.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Variante : slide depuis la droite */
.reveal--right {
  opacity: 0;
  transform: translateX(36px);
}
.reveal--right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Variante : zoom léger */
.reveal--zoom {
  opacity: 0;
  transform: scale(0.94) translateY(16px);
}
.reveal--zoom.revealed {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Mobile : toutes les animations viennent du bas (pas de gauche/droite) */
@media (max-width: 900px) {
  .reveal--left,
  .reveal--right {
    transform: translateY(32px);
  }
  .reveal--left.revealed,
  .reveal--right.revealed {
    transform: translateY(0);
  }
}

/* Pas d'animation si l'utilisateur préfère pas de mouvement */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal--left, .reveal--right, .reveal--zoom {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ===== _blog.css ===== */
/* --------------------------------------------------------------------------
   15. PAGE BLOG
   -------------------------------------------------------------------------- */
.section-blog {
  padding: var(--space-2xl) 0;
  background: white;
}

.section-blog__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-blog__header h1,
.section-blog__header h2 {
  font-family: var(--font-titre);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--color-vert);
  font-style: italic;
  margin-bottom: var(--space-xs);
}

.section-blog__header p {
  color: var(--color-texte-light);
  font-size: var(--fs-base);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.blog-card {
  background: white;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card__img {
  height: 210px;
  overflow: hidden;
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__img img {
  transform: scale(1.05);
}

.blog-card__body {
  padding: var(--space-sm) var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__cat {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-rose);
  margin-bottom: 0.4rem;
}

.blog-card__title {
  font-family: var(--font-titre);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-texte);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.blog-card__excerpt {
  font-size: var(--fs-sm);
  color: var(--color-texte-light);
  line-height: 1.65;
  flex: 1;
}

.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-sm);
  padding-top: var(--space-xs);
  border-top: 1px solid var(--color-gris-light);
}

.blog-card__date {
  font-size: var(--fs-xs);
  color: var(--color-texte-light);
}

.blog-card__link {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--color-vert);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color var(--transition);
}

.blog-card__link:hover {
  color: var(--color-vert-light);
}

/* Article de blog — page détail */
.article-hero {
  position: relative;
  height: 420px;
  margin-top: 72px;
  overflow: hidden;
}

/* Vague en bas du hero article → fond blanc */
.article-hero::after {
  content: '';
  display: block;
  height: 45px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 45' preserveAspectRatio='none'%3E%3Cpath d='M0,20 C240,45 480,0 720,22 C960,44 1200,5 1440,20 L1440,45 L0,45 Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat bottom center / 100% 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  pointer-events: none;
}

.article-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.article-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.5));
}

.article-hero__content {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--container);
  padding: 0 var(--space-md);
  color: white;
}

.article-hero__cat {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-rose);
  margin-bottom: 0.5rem;
  background: rgba(255,255,255,0.15);
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
}

.article-hero__title {
  font-family: var(--font-titre);
  font-size: var(--fs-2xl);
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  max-width: 720px;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
}

.article-body__meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-sm);
  color: var(--color-texte-light);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-gris-light);
}

.article-body__content h2 {
  font-family: var(--font-titre);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--color-vert);
  font-style: italic;
  margin: var(--space-lg) 0 var(--space-sm);
}

.article-body__content p {
  font-size: var(--fs-base);
  line-height: 1.8;
  color: var(--color-texte);
  margin-bottom: var(--space-sm);
}

.article-body__content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: var(--space-sm);
}

.article-body__content li {
  font-size: var(--fs-base);
  line-height: 1.8;
  color: var(--color-texte);
  margin-bottom: 0.3rem;
}

.article-back {
  margin-top: var(--space-xl);
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .article-hero {
    height: 320px;
    margin-top: 60px;
  }
  .article-hero::after {
    height: 28px;
  }
  .article-hero__title {
    font-size: var(--fs-xl);
  }
}

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


/* ===== _equipe.css ===== */
/* --------------------------------------------------------------------------
   16. SECTION ÉQUIPE (page accueil)
   -------------------------------------------------------------------------- */
.section-equipe {
  /* Vague haute qui arrive du gris (section-intro) + fond crème */
  padding: var(--space-2xl) 0;
  background: var(--color-creme-warm);
  margin-top: -2px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Vague basse vers la section-infos (blanche) */
.section-equipe::after {
  content: '';
  display: block;
  height: 55px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 55' preserveAspectRatio='none'%3E%3Cpath d='M0,20 C360,55 720,0 1080,28 C1260,42 1380,15 1440,20 L1440,55 L0,55 Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat bottom center / 100% 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}

/* Feuille décorative bas-gauche */
.section-equipe::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  bottom: -90px;
  left: -90px;
  background-image: url('images/feuille-1.png');
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: 0.25;
  transform: rotate(20deg);
}

/* Feuille haut-droite section-equipe */
.section-equipe__extra-leaf {
  position: absolute;
  width: 350px;
  height: 350px;
  top: -50px;
  right: -50px;
  background-image: url('images/feuille-3.png');
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: 0.18;
  transform: rotate(-15deg) scaleX(-1);
  z-index: 0;
}

.section-equipe__header {
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}

.section-equipe__header h2 {
  font-family: var(--font-titre);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--color-vert);
  font-style: italic;
  margin-bottom: 0.4rem;
}

.section-equipe__header p {
  font-size: var(--fs-base);
  color: var(--color-texte-light);
}

.equipe-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}

.equipe-card {
  flex: 0 0 260px;
  width: 260px;
  background: white;
  border-radius: var(--radius-card);
  padding: var(--space-lg) var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.equipe-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.equipe-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-vert), var(--color-vert-light));
  color: white;
  font-family: var(--font-titre);
  font-size: var(--fs-xl);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
}

.equipe-card h3 {
  font-family: var(--font-titre);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-texte);
  margin-bottom: 0.3rem;
}

.equipe-card p {
  font-size: var(--fs-sm);
  color: var(--color-texte-light);
}

.equipe-card__avatar--photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto var(--space-sm);
  border: 2px solid rgba(11,103,91,0.15);
  background: none;
}

.equipe-card__avatar--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

@media (max-width: 900px) {
  .equipe-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .equipe-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }
}


/* ===== _decorations.css ===== */
/* --------------------------------------------------------------------------
   17. FEUILLES DÉCORATIVES FLOTTANTES (.deco-feuille)
   Images PNG positionnées en absolu dans les sections
   -------------------------------------------------------------------------- */
.deco-feuille {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Feuille centrale — apparaît en milieu de section, côté droit */
.deco-feuille--mid {
  width: 420px;
  opacity: 0.22;
  top: 50%;
  right: -60px;
  transform: translateY(-50%) rotate(-15deg);
}

/* Petite feuille d'accent — coin bas-droit pour les sections single */
.deco-feuille--sm {
  width: 260px;
  opacity: 0.25;
  bottom: 20px;
  right: 20px;
  transform: rotate(30deg) scaleX(-1);
}

/* Grande feuille de fond — très grande, très transparente */
.deco-feuille--lg {
  width: 600px;
  opacity: 0.13;
  bottom: -100px;
  left: -100px;
  transform: rotate(25deg);
}

/* Deuxième feuille côté gauche (ajout dans les sections prestations) */
.deco-feuille--left {
  width: 380px;
  opacity: 0.18;
  top: 30%;
  left: -60px;
  transform: translateY(-50%) rotate(15deg) scaleX(-1);
}

/* Sur mobile, on réduit ou cache les feuilles pour éviter l'encombrement */
@media (max-width: 768px) {
  .deco-feuille--mid {
    width: 200px;
    opacity: 0.15;
  }
  .deco-feuille--left {
    display: none;
  }
  .deco-feuille--lg {
    width: 280px;
    opacity: 0.1;
  }
  .section-equipe__extra-leaf,
  .section-intro__extra-leaf {
    display: none;
  }

  /* Réduction des feuilles pseudo-éléments sur mobile */
  .section-prestations::before {
    width: 160px;
    height: 160px;
    bottom: -30px;
    left: -30px;
    opacity: 0.12;
  }
  .section-prestations::after {
    width: 140px;
    height: 140px;
    top: -30px;
    right: -30px;
    opacity: 0.12;
  }
  .section-intro::before {
    width: 180px;
    height: 180px;
    top: -30px;
    right: -30px;
    opacity: 0.12;
  }
  .section-horaires::after {
    width: 160px;
    height: 160px;
    top: -30px;
    right: -40px;
    opacity: 0.10;
  }
  .section-marques__grid {
    gap: var(--space-md);
  }
  .section-marques__item {
    min-width: 110px;
    height: 65px;
    padding: var(--space-xs) var(--space-sm);
  }
  .section-equipe::before {
    width: 200px;
    height: 200px;
    bottom: -40px;
    left: -40px;
    opacity: 0.13;
  }
  .site-footer::before {
    top: -34px;
    height: 35px;
  }
  .site-footer::after {
    width: 130px;
    height: 130px;
    top: 10px;
    left: -30px;
    opacity: 0.10;
  }
}


/* ===== _faq.css ===== */
/* --------------------------------------------------------------------------
   19. FAQ ACCORDION — pages prestations
   -------------------------------------------------------------------------- */
.section-faq {
  padding: var(--space-xl) 0 var(--space-lg);
}

.section-faq__title {
  font-family: var(--font-titre);
  font-size: var(--fs-xl);
  color: var(--color-vert);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e0ddd8;
}

.faq-item:first-child {
  border-top: 1px solid #e0ddd8;
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-md) 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-texte);
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--color-texte);
  text-align: left;
  gap: var(--space-sm);
  transition: color 0.2s ease;
}

.faq-item__question:hover,
.faq-item__question:focus-visible {
  color: var(--color-vert);
  outline: none;
}

.faq-item__icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-vert);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item__question[aria-expanded="true"] .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__reponse {
  padding: 0 0 var(--space-md);
}

.faq-item__reponse p {
  font-family: var(--font-texte);
  font-size: var(--fs-sm);
  color: var(--color-texte-light);
  line-height: 1.7;
  margin: 0;
}


/* ===== _print.css ===== */
/* --------------------------------------------------------------------------
   21. PRINT STYLES — tarifs PDF
   -------------------------------------------------------------------------- */
@media print {
  @page { margin: 2cm; }

  .site-header,
  .site-footer,
  .hero,
  .deco-feuille,
  .wave-separator,
  .wave-separator--to-footer,
  .prestations-cta,
  .prestations-download,
  .section-faq,
  .section-intro__extra-leaf,
  .section-equipe__extra-leaf {
    display: none !important;
  }

  .section-prestations {
    padding-top: 0;
  }

  .section-prestations::before,
  .section-prestations::after {
    display: none !important;
  }

  .prestations-grid {
    break-inside: avoid;
  }

  .prestations-block {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  body {
    font-size: 12pt;
    color: #000;
  }
}


/* ===== _avis.css ===== */
/* --------------------------------------------------------------------------
   22. SECTION AVIS CLIENTS — carousel auto-defilant
   -------------------------------------------------------------------------- */
.section-avis {
  padding: var(--space-xl) 0 var(--space-lg);
  overflow: hidden;
}

.section-avis__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-avis__header h2 {
  font-family: var(--font-titre);
  font-size: var(--fs-xl);
  color: var(--color-vert);
  margin-bottom: var(--space-xs);
}

.section-avis__header p {
  font-family: var(--font-texte);
  font-size: var(--fs-sm);
  color: var(--color-texte-light);
}

.avis-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.avis-carousel__track {
  display: flex;
  gap: var(--space-md);
  animation: avis-scroll 90s linear infinite;
  width: max-content;
}

/* Hover géré par JS (décelération douce) */

@keyframes avis-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.avis-card {
  flex: 0 0 300px;
  background: var(--color-gris-light);
  border-radius: 12px;
  padding: var(--space-md) var(--space-md) var(--space-sm);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.avis-card__stars {
  color: var(--color-rose);
  font-size: var(--fs-md);
  margin-bottom: var(--space-xs);
  letter-spacing: 2px;
}

.avis-card__texte {
  font-family: var(--font-texte);
  font-size: var(--fs-sm);
  font-style: italic;
  color: var(--color-texte);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.avis-card__texte::before {
  content: "\201C";
}

.avis-card__texte::after {
  content: "\201D";
}

.avis-card__date {
  font-family: var(--font-texte);
  font-size: var(--fs-xs);
  color: var(--color-texte-light);
  margin: 0;
}

@media (max-width: 900px) {
  .avis-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
    cursor: auto;
    padding: 0 var(--space-sm);
    scrollbar-width: none;
  }
  .avis-carousel::-webkit-scrollbar { display: none; }
  .avis-carousel__track {
    animation: none;
  }
  .avis-card {
    flex: 0 0 270px;
  }
}

@media (max-width: 600px) {
  .avis-card {
    flex: 0 0 240px;
  }
}


/* ===== _back-to-top.css ===== */
/* --------------------------------------------------------------------------
   23. BOUTON RETOUR EN HAUT
   -------------------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-vert);
  color: var(--color-blanc);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(11, 103, 91, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  z-index: 500;
}

.back-to-top::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-left: 2px solid var(--color-blanc);
  border-top: 2px solid var(--color-blanc);
  transform: rotate(45deg) translateY(2px);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-vert-light);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--color-vert);
  outline-offset: 3px;
}

@media (max-width: 600px) {
  .back-to-top {
    bottom: var(--space-md);
    right: var(--space-md);
    width: 40px;
    height: 40px;
  }
}


/* ===== _blog-filters.css ===== */
/* --------------------------------------------------------------------------
   24. FILTRE CATEGORIES BLOG
   -------------------------------------------------------------------------- */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.blog-filter-btn {
  font-family: var(--font-texte);
  font-size: var(--fs-sm);
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  border: 1.5px solid var(--color-vert);
  border-radius: 20px;
  background: transparent;
  color: var(--color-vert);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.blog-filter-btn:hover,
.blog-filter-btn[aria-pressed="true"] {
  background: var(--color-vert);
  color: var(--color-blanc);
}

.blog-filter-btn:focus-visible {
  outline: 2px solid var(--color-vert);
  outline-offset: 2px;
}

.blog-card.is-hidden {
  display: none;
}


/* ===== _404.css ===== */
/* --------------------------------------------------------------------------
   25. PAGE 404
   -------------------------------------------------------------------------- */
.section-404 {
  padding: var(--space-2xl) 0;
  min-height: 55vh;
  display: flex;
  align-items: center;
  background: #fff;
}

.section-404__content {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.section-404__code {
  font-family: var(--font-titre);
  font-size: clamp(5rem, 15vw, 9rem);
  color: var(--color-rose);
  line-height: 1;
  margin: 0 0 var(--space-sm);
  font-weight: 600;
}

.section-404 h1 {
  font-family: var(--font-titre);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--color-vert);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.section-404__message {
  font-family: var(--font-texte);
  font-size: var(--fs-base);
  color: var(--color-texte-light);
  margin-bottom: var(--space-xl);
}

.section-404__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}


/* ===== _guide.css ===== */
/* ============================================================
   25 — PAGE GUIDE
   ============================================================ */

.section-guide {
  padding: var(--space-3xl) 0;
}

.guide-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.guide-header h1 {
  font-family: var(--font-titre);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--color-vert);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.guide-header p {
  font-family: var(--font-texte);
  font-size: var(--fs-lg);
  color: var(--color-texte-light);
}

.guide-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  justify-content: center;
  margin-bottom: var(--space-2xl);
}

.guide-nav__item {
  font-family: var(--font-texte);
  font-size: var(--fs-sm);
  color: var(--color-vert);
  text-decoration: none;
  padding: 0.4rem 1rem;
  border: 1px solid var(--color-vert);
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
}

.guide-nav__item:hover {
  background: var(--color-vert);
  color: #fff;
}

.guide-section {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--color-gris-light);
}

.guide-section__num {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--color-vert);
  color: #fff;
  font-family: var(--font-titre);
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guide-section__body h2 {
  font-family: var(--font-titre);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--color-vert);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.guide-section__body h3 {
  font-family: var(--font-texte);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--color-texte);
  margin: var(--space-lg) 0 var(--space-xs);
}

.guide-section__body p,
.guide-section__body li {
  font-family: var(--font-texte);
  font-size: var(--fs-base);
  color: var(--color-texte-light);
  line-height: 1.7;
}

.guide-section__body ol,
.guide-section__body ul {
  padding-left: 1.5rem;
  margin-bottom: var(--space-md);
}

.guide-section__body li {
  margin-bottom: 0.4rem;
}

.guide-section__body a {
  color: var(--color-vert);
  text-decoration: underline;
}

.guide-section__access {
  font-size: var(--fs-sm);
  color: var(--color-texte-light);
  margin-bottom: var(--space-md);
}

.guide-tip {
  padding: 0.75rem 1rem;
  background: color-mix(in srgb, var(--color-vert) 8%, transparent);
  border-left: 3px solid var(--color-vert);
  border-radius: 0 6px 6px 0;
  margin-top: var(--space-md);
  font-family: var(--font-texte);
  font-size: var(--fs-sm);
  color: var(--color-texte);
}

.guide-tip--important {
  background: color-mix(in srgb, var(--color-rose) 10%, transparent);
  border-left-color: var(--color-rose-btn);
}

.guide-faq {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.guide-faq__item {
  padding: var(--space-md);
  background: var(--color-creme-warm);
  border-radius: 8px;
}

.guide-faq__item h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.guide-faq__item p {
  margin: 0;
}

.guide-shortcuts {
  text-align: center;
  padding: var(--space-xl);
  background: var(--color-gris-light);
  border-radius: 12px;
}

.guide-shortcuts p {
  font-family: var(--font-texte);
  font-size: var(--fs-sm);
  color: var(--color-texte-light);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.guide-shortcuts__links {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .section-guide {
    padding: var(--space-2xl) 0;
  }
  .guide-section {
    grid-template-columns: 1fr;
  }
  .guide-section__num {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.2rem;
  }
}


