/*
Theme Name: Laora
Theme URI: https://laora.fr
Author: Julien Cheguillaume
Author URI: https://juliencheguillaume.dev
Description: Thème personnalisé pour le site Laora (drainage lymphatique & soins).
Version: 1.0
Text Domain: laora
*/



/* =========================================================
   ===== *************** ECRAN ACCUEIL *************** =====
   ========================================================= */


/* =========================================================
   === RESET SIMPLE ===
   ========================================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}


body {
  overflow-x: hidden;
  font-family: 'Cormorant Garamond', serif;
  background-color: #000;
  color: #fff;
}


/* =========================================================
   === FONTS ===
   ========================================================= */
@font-face {
  font-family: 'Mayonice';
  src:
    url('./assets/fonts/Mayonice.otf') format('opentype'),
    url('./assets/fonts/Mayonice.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


/* =========================================================
   === UI GLOBAL (hors snap / overlay) ===
   Menu fixe (burger + insta)
   ========================================================= */
.menu-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 10;

  display: flex;
  align-items: center;
  gap: 14px;
}

/* --- Icône Instagram --- */
.insta-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.insta-icon {
  width: 30px;
  height: 30px;
  /* filter: invert(1); */
  transition: opacity 0.3s ease;
}

.insta-link:hover .insta-icon {
  opacity: 0.7;
}

/* --- Séparateur fin --- */
.separator {
  width: 1px;
  height: 25px;
  background: black;
  color : black;
}

/* --- Burger --- */
.burger {
  width: 32px;
  height: 22px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  cursor: pointer;
}

.burger span {
  display: block;
  height: 3px;
  width: 100%;
  background: black;
  border-radius: 4px;
  transition: all 0.3s ease;
  will-change: transform, opacity;
}

.burger.active {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* --- Menu déroulant --- */
.menu {
  font-family: 'Cormorant Garamond', serif;
  position: fixed;
  top: 0;
  right: 0;

  width: 150px;
  height: 35vh;

  background: transparent;

  transform: translateY(-100%);
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 9;
}

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

.menu ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.menu li {
  margin: 20px 0;
}

.menu a {
  text-decoration: none;
  color: black;
  font-size: 1.1rem;
  transition: color 0.2s ease;
}

.menu a:hover {
  color: #b4c7b0;
}


/* =========================================================
   ===== SCROLL SNAP (structure globale) =====
   ========================================================= */
.snap-container {
  scroll-snap-type: y mandatory;
  width: 100%;
}

.screen {
  min-height: 100svh;
  scroll-snap-align: start;
  display: block;
  scroll-snap-stop: always;
}

.screen--full {
  height: 100svh;
}


/* =========================================================
   === INTRO SECTION (dans le snap) ===
   Vidéo + texte + scroll indicator
   ========================================================= */
#introduction {
  position: relative;
  overflow: hidden;
}

.screen,
#introduction {
  width: 100%;
  max-width: 100%;
}

/* === VIDÉO DE FOND === */
.video-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.15) contrast(0.92) grayscale(18%);
}

/* Voile noir doux + flou premium */
.video-background .video-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
  z-index: 1;
}

/* Grain luxe (super léger) */
.video-background::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>")
    repeat;
  opacity: 0.12;
  mix-blend-mode: soft-light;
  z-index: 2;
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bg-video--mobile { display: none; }

/* === CONTENU === */
.content {
  position: relative;
  z-index: 1;
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  height: 100vh;
  padding: 0 1rem;
}

.content header {
  transform: translateY(-60px);
  transition: transform 0.3s ease;
}

/* === TYPO INTRO === */
.main-title {
  font-family: 'Marcellus', serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 500;
  letter-spacing: 8px;
}
.sr-only{
  position:absolute!important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

.main-subtitle {
  font-family: 'Mayonice', serif;
  font-size: 1.5rem;
  font-weight: 300;
  opacity: 0.9;
  letter-spacing: 2px;

  margin-top: 0;
  margin-bottom: 2.5rem;
  text-align: center;
}

.intro-text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, .5rem + 1vw, 1rem);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.95);
}

.subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-style: italic;
  opacity: 0.9;
  margin-bottom: 2rem;
}

/* === SCROLL INDICATOR === */
.scroll-indicator {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  color: rgba(255, 255, 255, 0.9);
  font-family: 'Manrope', sans-serif;
  letter-spacing: 2px;
  font-size: 0.75rem;
  text-transform: uppercase;

  animation: fadeInScroll 2s ease forwards;
  pointer-events: none;
}

#introduction .scroll-text {
  margin-bottom: 10px;
  font-weight: 300;
  color : #ffffff;
}

#introduction .scroll-line {
  width: 1px;
  height: 50px;
  background-color: #ffffff;
  animation: scrollPulse 1.8s ease-in-out infinite;
  border-radius: 2px;
}


.scroll-text {
  margin-bottom: 10px;
  font-weight: 300;
  color : #010101;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background-color: #010101;
  animation: scrollPulse 1.8s ease-in-out infinite;
  border-radius: 2px;
}

@keyframes fadeInScroll {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes scrollPulse {
  0%   { transform: scaleY(0); opacity: 0.4; }
  50%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0); opacity: 0.4; }
}


/* =========================================================
   === RESPONSIVE : INTRO (#introduction) ===
   Objectif : garder le design, éviter les débordements mobile
   ========================================================= */

@media (max-width: 768px) {
  .bg-video--desktop { display: none; }
  .bg-video--mobile  { display: block; }
}

/* Tablet intro */
@media (max-width: 768px) {
  .menu-container {
    top: 16px;
    right: 16px;
    gap: 12px;
  }

  .insta-icon { width: 26px; height: 26px; }
  .burger { width: 30px; height: 20px; }

  #introduction .main-title { letter-spacing: 6px; }
  #introduction .intro-text { max-width: 560px; }
}

/* Mobile intro */
@media (max-width: 480px) {
  #introduction .main-title {
    letter-spacing: 4px;
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }

  #introduction .main-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1.6rem;
  }

  #introduction .intro-text {
    font-size: 0.95rem;
    max-width: 92%;
    line-height: 1.55;
  }

  #introduction .subtitle {
    font-size: 0.78rem;
    margin-bottom: 1.4rem;
  }

  #introduction .scroll-indicator { bottom: 22px; }
  #introduction .scroll-line {height: 5svh; }
}

/* Petits écrans en hauteur (iPhone SE etc.) */
@media (max-height: 700px) and (max-width: 480px) {
  #introduction .content header { transform: translateY(-35px); }
  #introduction .scroll-indicator { bottom: 14px; }
}




/* ======== SECTION SOINS (galerie 3 cartes) ======== */
/* même logique que #drainage : fond image + voile noir + blur */*
/*Logo*/
.soins-logo-wrapper {
  display: flex;
  justify-content: center;
  margin-top: -40px;
}

.soins-logo {
  width: 120px; /* tu peux ajuster */
  height: auto;
  opacity: 0.95; /* effet luxe léger */
  margin-top: -40px; /* ðÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ remonte le logo */
  margin-bottom: 10px; /* espace entre logo et “Vos soins” */
}


#soins.section-solid {
  background: #f4efe9;
  position: relative;
  overflow: hidden; 
}
#soins.section-solid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f4efe9; /* voile noir identique */
  z-index: 0;
}
/* contenu au-dessus du voile */
#soins.section-solid > * { 
  position: relative;
  z-index: 1;
}

/* Soins plein écran strict (uniquement cette section) */
#soins.screen--full {
  height: 112svh;                /* exactement 1 écran pour cette section */
  min-height: 100svh;            /* ceinture+bretelles */
}

/* Ajuste la respiration interne sans dépasser l'écran */
#soins .soins-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;       /* centre verticalement le contenu */
  padding-block: clamp(60px, 12vh, 120px);
}
.soins-inner{
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding-block: clamp(100px, 18vh, 160px); /* même respiration que drainage */
  position: relative;
  z-index: 1; /* passe devant le ::before */
}

.soins-title{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2rem, 1.2rem + 3vw, 3.2rem);
  letter-spacing: .5px;
  margin: 0 0 clamp(22px, 3vw, 32px);
  text-align: left;
  color : #010101;
}

.soins-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 10vw, 90px);
}

/* Cartes */
.care-card{
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  display: block;
  color: #010101;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,.20);
  transform: translateZ(0); /* perf */
}

/* Carte 1 : Miracle Face (gauche) */
.care-card:nth-child(1) {
  background-color: #cbc4bc; 
}

/* Carte 2 : Drainage (milieu) */
.care-card:nth-child(2) {
  background-color: #cbc4bc; 
}

/* Carte 3 : Madero (droite) */
.care-card:nth-child(3) {
  background-color: #cbc4bc; 
}

.care-card::before{
  content:"";
  position:absolute; inset:0;
  background:#cbc4bc
}

.care-overlay{
  position:absolute; inset:0;
  background: rgba(255,255,255,0);
  transition: background .35s ease;
}

.care-content{
  position:absolute;
  inset: 0;                     /* occupe toute la carte */
  display:flex;
  flex-direction:column;
  justify-content:center;       /* centre verticalement */
  align-items:center;           /* centre horizontalement */
  text-align:center;            /* centre le texte */
  padding: 20px;                /* un peu d'air */
  z-index: 1;
  gap: 10px;
}


/* Titre de la carte : MIRACLE FACE / DRAINAGE / MADERO */
.care-content .care-title{
  margin: 0;
  font-family: 'Aileron', sans-serif;
  font-weight: 500;
  font-size: clamp(1.1rem, 0.5rem + 1.4vw, 1.5rem);
  letter-spacing: 0.18em;          /* effet premium espacé */
  text-transform: uppercase;
  color: #010101;
}

.care-title{
    font-family: 'Aileron', sans-serif;
    font-style : bold;
}

/* Texte descriptif */
.care-content p{
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 200;
  font-size: clamp(0.9rem, 0.3rem + 0.8vw, 1rem);
  opacity: 0.9;
  color: #010101;
}


/* Hover / focus */
.care-card:hover .care-overlay,
.care-card:focus-visible .care-overlay {
  background: rgba(255,255,255,0.08);
}

.care-card:hover::before,
.care-card:focus-visible::before {
  opacity: 0.20;
  backdrop-filter: blur(2px);
}

.care-card:hover {
  transform: scale(1.03);        /* léger zoom au survol */
  transition: transform .4s ease;
}

.care-card {
  transition: transform .4s ease, box-shadow .4s ease;
}
.care-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.45);
}

.care-more {
  position: absolute;
  bottom: 14px;
  left: 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: #010101;
  display: flex;
  align-items: center;
  top :auto;
  gap: 4px;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none; /* évite d'interférer avec le clic de la carte */
}

/* === Zoom “entrée dans l’univers” au clic d’une carte === */
body.animating { cursor: progress; }
body.animating .snap-container { scroll-snap-type: none; } /* évite les accroches pendant l'anim */

.soins-section.dim { transition: opacity .35s ease; opacity: .35; }

/* Clone plein écran animé depuis la carte */
.zoom-clone {
  position: fixed;
  z-index: 9999;
  top: 0; left: 0; width: 100vw; height: 100vh; /* valeurs finales */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 18px; /* arrondi de la carte -> animé vers 0 */
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  will-change: top, left, width, height, border-radius, opacity;
  transition:
    top .6s cubic-bezier(.22,.61,.36,1),
    left .6s cubic-bezier(.22,.61,.36,1),
    width .6s cubic-bezier(.22,.61,.36,1),
    height .6s cubic-bezier(.22,.61,.36,1),
    border-radius .6s ease;
}

/* État initial injecté via style inline depuis le JS : top/left/width/height = rect de la carte */
.zoom-clone.to-full { border-radius: 0; } /* passe à plein écran */

/* =========================================================
   === RESPONSIVE : SECTION SOINS (version plus légère)
   ========================================================= */

/* Tablet : 3 -> 2 colonnes */
@media (max-width: 1024px) {
  .soins-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(18px, 4vw, 36px);
  }

  .soins-inner {
    width: min(920px, 92vw);
  }

  /* Cartes un peu moins imposantes */
  .care-card {
    border-radius: 14px;
    aspect-ratio: 4 / 5.4;
  }

  .care-content {
    padding: 16px;
    gap: 6px;
  }

  .care-content .care-title {
    font-size: clamp(0.95rem, 1vw + 0.4rem, 1.15rem);
    letter-spacing: 0.12em;
  }

  .care-content p {
    font-size: 0.9rem;
  }

  /* Scroll indicator plus discret */
  #soins .scroll-indicator {
    font-size: 0.65rem;
  }

  #soins .scroll-line {
    height: 42px;
  }
}



/* Mobile : 2 -> 1 colonne */
@media (max-width: 768px) {
  .soins-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #soins.screen--full {
    height: auto;
    min-height: 100svh;
  }

  #soins .soins-inner {
    height: auto;
    justify-content: flex-start;
    padding-block: clamp(50px, 8vh, 90px);
  }

  .soins-title {
    text-align: center;
  }

  /* Logo plus léger */
  .soins-logo-wrapper { margin-top: -16px; }
  .soins-logo { width: 88px; margin-top: -16px; }

  /* Cartes plus compactes */
  .care-card {
    aspect-ratio: 16 / 10;
    border-radius: 14px;
  }

  .care-content {
    padding: 14px;
    gap: 6px;
  }

  .care-content .care-title {
    font-size: 0.95rem;
    letter-spacing: 0.11em;
  }

  .care-content p {
    font-size: 0.85rem;
    line-height: 1.4;
    opacity: 0.8;
  }

  .care-more {
    left: 12px;
    bottom: 10px;
    font-size: 0.72rem;
    opacity: 0.7;
  }

  /* Scroll indicator plus fin */
  #soins .scroll-indicator {
    bottom: 14px;
    font-size: 0.6rem;
    letter-spacing: 1.5px;
  }

  #soins .scroll-line {
    height: 36px;
  }
}

/* Très petit mobile */
@media (max-width: 480px) {
  .soins-inner {
    width: min(500px, 92vw);
    padding-block: clamp(60px, 10vh, 100px);
  }

  .soins-title {
    font-size: clamp(1.4rem, 3.2vw + 0.7rem, 2rem);
    margin-bottom: 12px;
  }

  .care-card {
    aspect-ratio: 16 / 10;
  }

  .care-content {
    padding: 12px;
  }

  .care-content .care-title {
    font-size: 0.9rem;
    letter-spacing: 0.09em;
  }

  .care-content p {
    font-size: 0.82rem;
  }

  .care-more {
    font-size: 0.68rem;
  }

  #soins .scroll-line {
    height: 30px;
  }
}



/* ======== SECTION DRAINAGE 2 COLS + REVEAL ======== */
#drainage.section-solid {
  background: #cbc4bc;
  position: relative;
}
#drainage.section-solid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.0);
  backdrop-filter: blur(4px);
}

/* Logo en haut dans la section drainage */
.drainage-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  margin-top: -20px; /* ajuste selon le rendu */
}

body.soin-open .drainage-logo {
  display: flex !important;
}

.soin-wrapper {
  width: 100%;
  /* plus de scroll interne ni de snap ici */
}

.soin-block {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;  
  position : relative;
}



.soin-inner {
  width: min(900px, 92vw);
  margin: 0 auto;
  color: #010101;
  text-align: left;
}

.soin-block-title {
  font-family: 'Cormorant Garamond', serif
  font-size: clamp(2rem, 1rem + 3vw, 3rem);
  margin-bottom: 20px;
}

.soin-block-text {
  font-family: 'Aileron', sans-serif;
  line-height: 1.7;
  font-size: clamp(1rem, .5vw + 1rem, 1.2rem);
  opacity: 0.9;
}

.rdv-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 28px;
  background: #010101;
  border: 1px solid #010101;
  color: #ffffff;
  border-radius: 10px;
  text-decoration: none;
  font-family: 'Aileron', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: background .25s ease, transform .2s ease, box-shadow .25s ease;
}

/* Hover */
.rdv-btn:hover {
  background: #1a1a1a;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}

/* ======== SECTION MIRACLE FACE ======== */
#miracle-face.section-solid {
  background: #cbc4bc;
  position: relative;
}
#miracle-face.section-solid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  backdrop-filter: blur(4px);
}
#miracle-face .drainage-photo-wrapper::after {
  background: rgba(0, 0, 0, 0.15); /* intensité du voile (augmente la valeur si ton image est trop claire) */
  
  
}

/* === AVANT / APRES : afficher l'image en entier === */
#miracle-face .avant-apres-wrapper {
  width: 350px !important;      /* taille finale du bloc */
  max-width: 90% !important;    
  height: auto !important;
  border-radius: 18px;
  aspect-ratio: unset !important;
  overflow: visible !important;
  
}

#miracle-face .avant-apres-wrapper img {
  width: 100% !important;
  height: auto !important;
  border-radius: 18px;
  object-fit: contain !important; 
  object-position: center !important;
}






/* ======== MADERO ======== */
#madero.section-solid {
  background: #cbc4bc;
  position: relative;
}
#madero.section-solid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.0);
  backdrop-filter: blur(4px);
}

.drainage-inner{
  width: min(1100px, 92vw);
  margin: 0 auto;
  position: relative;       /* pour passer devant le ::before */
  z-index: 1;
  padding-block: clamp(10px, 3vh, 20px);
}

/* === Grille 2 colonnes : photo plus petite === */
.drainage-grid{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr; /* photo < texte */
  gap: clamp(18px, 3.5vw, 48px);
  align-items: center;
}

/* Colonne droite : titre au-dessus du texte */
.drainage-content{
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.6vw, 18px);
}

.drainage-title{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2rem;
  letter-spacing: .5px;
  margin: 0;
  text-align: left;
  color : #010101;
}

/* === Photo gauche (voile noir inclus) === */
.drainage-photo-wrapper{
  position: relative;
  width: 100%;
  max-width: 350px;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  justify-self: start;
}
.drainage-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(0.95);
  position: relative;
  z-index: 0;
}
/* Voile noir semi-transparent */
.drainage-photo-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

/* Texte droite */
.drainage-text{
  color: #010101;
  font-family: 'Manrope', system-ui, sans-serif;
  line-height: 1.7;
  font-size: clamp(1rem, .35vw + 1rem, 1.15rem);
  opacity: .95;
}

/* ===== Reveal on scroll — plus lent ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.6s ease, transform 1.6s ease; /* ← durée augmentée */
  will-change: opacity, transform;
}

/* Séquence : Titre → Photo → Texte (délais adaptés) */
.reveal-title { transition-delay: 300ms; }
.reveal-img   { transition-delay: 700ms; }
.reveal-text  { transition-delay: 1100ms; }

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

/* Séquencer l'apparition des cartes Soins */
.soins-grid .care-card:nth-child(1) {
  transition-delay: 0.2s;  /* Soin 1 : premier */
}
.soins-grid .care-card:nth-child(2) {
  transition-delay: 0.6s;  /* Soin 2 : 400 ms plus tard */
}
.soins-grid .care-card:nth-child(3) {
  transition-delay: 1s;    /* Soin 3 : encore 400 ms plus tard */
}

/* Pour que le reveal s’applique aussi aux cartes */
.care-card.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.6s ease, transform 1.6s ease;
}
.care-card.reveal.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}/* ===== Transition d'ouverture: blur progressif ===== */
.blur-fader {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  /* transparent pour laisser passer le backdrop-filter */
  background: rgba(0,0,0,0);
  animation: faderIn .45s ease forwards;
  /* le blur s’applique à ce qui est derrière l’overlay */
  backdrop-filter: blur(0px);
}

@keyframes faderIn {
  0%   { backdrop-filter: blur(0px);   background: rgba(0,0,0,0); }
  100% { backdrop-filter: blur(12px);  background: rgba(0,0,0,.55); }
}

/* Révélation de la section: net progressivement */
.section-reveal {
  animation: revealSharp .35s ease forwards;
  filter: blur(8px);
  opacity: 0;
}

@keyframes revealSharp {
  0%   { filter: blur(8px); opacity: 0; }
  100% { filter: blur(0px); opacity: 1; }
}

/* === Bouton fermeture (croix) en haut à gauche de la section === */
.section-close {
  position: fixed; /* reste en haut pendant le scroll interne */
  top: 18px;
  left: 18px;
  z-index: 10000;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.6);
  background: rgba(0,0,0,.35);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: transform .2s ease, background .2s ease, opacity .2s ease;
}

/* === États de visibilité pour les sections de soin === */
.is-hidden { display: none !important; }
.is-open   { display: block !important; }
.section-close:hover { transform: scale(1.06); background: rgba(0,0,0,.5); }
.section-close:active { transform: scale(0.98); }
/* === Masquer toutes les autres sections quand un soin est ouvert === */
body.soin-open section:not(.is-open) {
  display: none !important;
}

/* Quand un soin est ouvert, on masque l'accueil (header + scroll) et le menu + footer */
body.soin-open .content,
body.soin-open .content .scroll-indicator,  /* âÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ seulement le scroll de l'accueil */
body.soin-open .menu-container,
body.soin-open .menu,
body.soin-open .site-footer {
  display: none !important;
}


/* Optionnel : masquer aussi la vidéo d’accueil si tu veux un effet d’immersion total */
body.soin-open .video-background {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

/* =========================================================
   âÂÂÂÂÂÂÂÂ RESPONSIVE ONLY — SOINS INTERNES (snap conservé)
   Drainage / Miracle Face / Madero
   ========================================================= */

/* -------- Tablet -------- */
@media (max-width: 1024px) {
  .drainage-inner {
    width: min(980px, 92vw);
  }

  .drainage-grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(16px, 3vw, 34px);
  }

  .drainage-photo-wrapper {
    max-width: 320px;
    border-radius: 16px;
  }

  .drainage-title {
    font-size: clamp(1.8rem, 1.1rem + 3vw, 2.8rem);
  }

  .drainage-text {
    font-size: 1rem;
    line-height: 1.6;
  }

  /* Avant/après MF : limiter la largeur */
  #miracle-face .avant-apres-wrapper {
    width: min(340px, 90%) !important;
  }
}


/* -------- Mobile : 2 colonnes -> 1 colonne (stack) -------- */
@media (max-width: 768px) {
  .drainage-inner,
  .soin-inner {
    width: min(560px, 92vw);
  }

  .drainage-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
  }

  /* Image centrée et plus compacte */
  .drainage-photo-wrapper {
    justify-self: center;
    max-width: 320px;
    aspect-ratio: 16 / 18;
    border-radius: 14px;
  }

  .drainage-content {
    text-align: center;
    gap: 10px;
  }

  .drainage-title {
    text-align: center;
    font-size: clamp(1.55rem, 1rem + 4.2vw, 2.2rem);
  }

  .drainage-text {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  /* Scroll indicator plus discret dans les soins */
  #drainage .scroll-indicator,
  #miracle-face .scroll-indicator,
  #madero .scroll-indicator {
    bottom: 14px;
    font-size: 0.6rem;
    letter-spacing: 1.5px;
  }

  #drainage .scroll-line,
  #miracle-face .scroll-line,
  #madero .scroll-line {
    height: 32px;
  }

  /* Bouton RDV plus compact */
  .rdv-btn {
    font-size: 16px;
    padding: 12px 20px;
    border-radius: 10px;
  }

  /* Avant/après MF : éviter trop grand */
  #miracle-face .avant-apres-wrapper {
    width: min(320px, 92vw) !important;
  }
}


/* -------- Très petit mobile -------- */
@media (max-width: 480px) {
  .drainage-photo-wrapper {
    max-width: 300px;
    aspect-ratio: 16 / 19;
  }

  .drainage-text {
    font-size: 0.9rem;
  }

  #drainage .scroll-line,
  #miracle-face .scroll-line,
  #madero .scroll-line {
    height: 28px;
  }
}


/* ======== SECTION TARIFS (nouvelle charte épurée) ======== */
#tarifs.section-solid{
  background: #f4efe9;
  position: relative;
  color: #010101; /* texte beige clair */
}

/* overlay plus doux */
#tarifs.section-solid::before{
  content:"";
  position:absolute; inset:0;
  background: #f4efe9; /* moins sombre */
}

#tarifs .tarifs-inner{
  width: min(980px, 92vw);
  margin: 0 auto;
  padding-block: clamp(80px, 14vh, 140px);
  position: relative;
  z-index: 1;
}

/* Titre principal */
.tarifs-title{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2.2rem, 1.5rem + 2.8vw, 3rem);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 clamp(20px, 3vw, 30px);
  text-align: center; /* plus clean visuellement */
}

/* bloc global plus aéré */
.tarifs-group{
  display: grid;
  gap: clamp(26px, 4vw, 36px);
  padding: clamp(18px, 3vw, 28px);
  border-radius: 18px;
  background: #cbc4bc; /* voile très léger */
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

/* Titres catégories */
.tarifs-h3{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.3rem, .8rem + 1.2vw, 1.6rem);
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .95;
  margin: 0 0 8px;
  text-align: left;
}

/* Listes : +respiration, 2 colonnes desktop */
.tarifs-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

/* 2 colonnes sur écran large pour casser le bloc */
@media (min-width: 900px){
  .tarifs-list{
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
  }
}

/* ligne tarif */
.price-row{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  column-gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, .4rem + .9vw, 1.2rem);
  line-height: 1.4;
  padding-bottom: 4px;
  opacity: .98;
}

/* libellés pas trop gras */
.price-row .label{
  white-space: normal; /* autorise retour ligne si long */
  font-weight: 400;
  opacity: .95;
}

/* prix plus lisible sans dominer */
.price-row .price{
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: .02em;
}

/* pointillés plus fins et discrets */
.price-row .dots{
  height: 1px;
  align-self: center;
  background-image: radial-gradient(currentColor 0.7px, transparent 0.7px);
  background-size: 5px 2px;
  background-repeat: repeat-x;
  background-position: left center;
  opacity: .35;
}

/* reveal plus smooth */
#tarifs .reveal{ transition-duration: 1.1s; }
#tarifs .tarifs-title.reveal{ transition-delay: 180ms; }
#tarifs .tarifs-group.reveal{ transition-delay: 360ms; }

/* =========================================================
   âÂÂÂÂÂÂÂÂ RESPONSIVE — SECTION TARIFS
   ========================================================= */

/* Tablet */
@media (max-width: 1024px) {
  #tarifs .tarifs-inner{
    width: min(900px, 92vw);
    padding-block: clamp(70px, 12vh, 120px);
  }

  .tarifs-group{
    gap: 22px;
    padding: 18px;
    border-radius: 16px;
  }

  .price-row{
    font-size: 1.05rem;
    column-gap: 8px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Important : on force 1 colonne (override du @media min-width:900) */
  .tarifs-list{
    grid-template-columns: 1fr !important;
    column-gap: 0 !important;
  }

  #tarifs .tarifs-inner{
    width: min(560px, 92vw);
    padding-block: clamp(60px, 10vh, 105px);
  }

  .tarifs-title{
    font-size: clamp(1.7rem, 1.2rem + 3.8vw, 2.4rem);
    letter-spacing: .06em;
    margin-bottom: 16px;
  }

  .tarifs-h3{
    font-size: 1.15rem;
    text-align: center;
    margin-bottom: 6px;
  }

  .tarifs-group{
    gap: 18px;
    padding: 16px;
    border-radius: 14px;
  }

  /* Ligne tarif : dots plus discrets, alignement plus compact */
  .price-row{
    font-size: 0.98rem;
    grid-template-columns: 1fr auto; /* label | price */
    row-gap: 6px;
    column-gap: 10px;
    padding-bottom: 6px;
  }

  /* On masque la colonne dots sur mobile */
  .price-row .dots{
    display: none;
  }

  .price-row .label{
    opacity: .92;
  }

  .price-row .price{
    justify-self: end;
    font-weight: 500;
  }

  /* Scroll indicator plus discret sur Tarifs */
  #tarifs .scroll-indicator{
    bottom: 14px;
    font-size: 0.6rem;
    letter-spacing: 1.5px;
  }
  #tarifs .scroll-line{
    height: 30px;
  }
}

/* Très petit mobile */
@media (max-width: 480px) {
  #tarifs .tarifs-inner{
    width: min(520px, 92vw);
    padding-block: clamp(55px, 10vh, 95px);
  }

  .tarifs-group{
    padding: 14px;
  }

  .price-row{
    font-size: 0.94rem;
  }
}

/* =========================================================
   âÂÂÂÂÂÂÂÂ iOS Safari FIX — blur propre (si halos)
   ========================================================= */
@supports (-webkit-touch-callout: none) {
  #tarifs.section-solid::before{
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

/* ======== SECTION APPROCHE (charte épurée) ======== */
#approche.section-solid{
  background: #f4efe9;
  position: relative;
  color: #010101;
}

#approche.section-solid::before{
  content:"";
  position:absolute; inset:0;
  background: #f4efe9; /* léger et élégant */
}

.approche-inner{
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding-block: clamp(90px, 18vh, 150px);
  position: relative;
  z-index: 1;
}

/* GRID épuré */
.approche-grid{
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

/* PHOTO — cohérente avec Tarif */
.approche-photo-wrapper{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  max-width: 420px;
  justify-self: center;
  height: 560px;
}

.approche-photo{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.approche-photo-wrapper::after{
  content:"";
  position:absolute; inset:0;
  background: rgba(0,0,0,0.25); /* voile plus soft */
}

/* CONTENT */
.approche-content{
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, .35rem + 1vw, 1.2rem);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 24px);
}

/* TITRE */
.approche-title{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3.1rem);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* LISTE épurée */
.approche-text ul{
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.approche-text li{
  position: relative;
  padding-left: 1.1em;
  margin-bottom: 6px;
  font-size: 1.02em;
}

.approche-text li::before{
  content:"•";
  position:absolute;
  left: 0;
  color: #010101; /* vert sauge clair */
  font-size: 1.2em;
}

/* Reveal */
#approche .reveal{ transition-duration: 1.2s; }
#approche .approche-title.reveal{ transition-delay: 200ms; }
#approche .approche-content.reveal{ transition-delay: 350ms; }

/* =========================================================
   âÂÂÂÂÂÂÂÂ RESPONSIVE — SECTION APPROCHE
   ========================================================= */

/* Tablet */
@media (max-width: 1024px) {
  .approche-inner{
    width: min(980px, 92vw);
    padding-block: clamp(80px, 14vh, 130px);
  }

  .approche-grid{
    gap: clamp(22px, 4vw, 46px);
  }

  .approche-photo-wrapper{
    max-width: 380px;
    height: 520px;
    border-radius: 14px;
  }

  .approche-title{
    font-size: clamp(1.9rem, 1.2rem + 2.6vw, 2.8rem);
  }
}

/* Mobile : stack */
@media (max-width: 768px) {
  .approche-inner{
    width: min(560px, 92vw);
    padding-block: clamp(60px, 10vh, 110px);
  }

  .approche-grid{
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
  }

  .approche-photo-wrapper{
    width: min(360px, 92vw);
    max-width: 360px;
    height: auto;                 /* clé */
    aspect-ratio: 3 / 4;          /* garde un rendu élégant */
    justify-self: center;
    border-radius: 14px;
  }

  .approche-content{
    text-align: center;
    gap: 12px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .approche-title{
    text-align: center;
    margin-bottom: 4px;
    font-size: clamp(1.7rem, 1.1rem + 4vw, 2.3rem);
    letter-spacing: .05em;
  }

  /* Liste : centrée mais lisible */
  .approche-text ul{
    margin-top: 6px;
    text-align: left;             /* plus lisible que centré */
    width: min(520px, 92vw);
    margin-left: auto;
    margin-right: auto;
  }

  .approche-text li{
    font-size: 0.98em;
    margin-bottom: 8px;
  }

  /* Scroll indicator plus discret */
  #approche .scroll-indicator{
    bottom: 14px;
    font-size: 0.6rem;
    letter-spacing: 1.5px;
  }

  #approche .scroll-line{
    height: 30px;
  }
}

/* Très petit mobile */
@media (max-width: 480px) {
  .approche-photo-wrapper{
    width: min(320px, 92vw);
    aspect-ratio: 10 / 13;
  }

  .approche-content{
    font-size: 0.95rem;
  }

  .approche-text li{
    padding-left: 1em;
  }
}

/* =========================================================
   âÂÂÂÂÂÂÂÂ iOS Safari FIX — blur propre (si halos)
   ========================================================= */
@supports (-webkit-touch-callout: none) {
  #approche.section-solid::before{
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}


/* ======== SECTION CONTACT / PRENDRE RENDEZ-VOUS ======== */
#contact.section-solid {
  background: #cbc4bc; 
  position: relative;
  text-align: center;
}

#contact.section-solid::before {
  content: "";
  position: absolute;
  inset: 0;
  background:  #cbc4bc;
}

.contact-inner {
  width: min(900px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding-block: clamp(100px, 20vh, 160px);
  color: #010101;
}

.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2rem, 1.2rem + 3vw, 3.2rem);
  margin-bottom: clamp(24px, 3vw, 40px);
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.contact-item {
  font-family: 'Aileron', sans-serif;
  font-size: clamp(1.2rem, .6rem + 1vw, 1.6rem);
  color: #010101;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.contact-item:hover {
  color: #d4b89f;
  transform: scale(1.05);
}

.contact-extra {
  font-family: 'Aileron', sans-serif;
  font-size: clamp(1rem, .4rem + 1vw, 1.3rem);
  line-height: 1.6;
  opacity: 0.9;
}

/* ======== AVIS DANS CONTACT ======== */

/* bloc vos retours simple (sans card autour) */
.contact-avis{
  margin-bottom: clamp(30px, 5vw, 50px);
  padding: 0;
  background: none;
  box-shadow: none;
  margin-top : 50px;
}


.contact-avis-title{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.4rem, .9rem + 1.5vw, 1.8rem);
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 16px;
  color: inherit;
}

/* slider */
.contact-avis-slider{
  overflow: hidden;
  position: relative;
}

.contact-avis-track{
  display: flex;
  gap: 20px;
  animation: contactAvisSlide 50s linear infinite;
}

.contact-avis-card{
  min-width: 70%;
  max-width: 70%;
  margin: 0 auto;
  padding: 22px 26px;
  border-radius: 16px;
  background: rgba(245,243,238,0.08);
  backdrop-filter: blur(3px);
  color : #010101 !important;

  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, .4rem + 1vw, 1.3rem);
  line-height: 1.55;
  text-align: center;
  border: 1px solid rgba(245,243,238,0.18);
}


/* animation */
@keyframes contactAvisSlide{
  0%   { transform: translateX(0); }
  100% { transform: translateX(-400%); }
}

/* Centrer TOUS les liens dans le bloc contact */
.contact-links {
  display: flex;
  flex-direction: column;
  align-items: center; /* <--- CENTRAGE */
  gap: 14px;
}

/* Lien Instagram plus propre */
.contact-insta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center; /* <--- CENTRAGE INTERNE */
  gap: 8px;
  text-decoration: none;
  font-size: 1.3rem;
  color: inherit;
}

/* Icon size */
.contact-insta-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* =========================================================
   âÂÂÂÂÂÂÂÂ RESPONSIVE — SECTION CONTACT
   ========================================================= */

/* Tablet */
@media (max-width: 1024px) {
  .contact-inner{
    width: min(820px, 92vw);
    padding-block: clamp(85px, 16vh, 130px);
  }

  .contact-links{
    gap: 12px;
    margin-bottom: 32px;
  }

  .contact-avis-track{
    gap: 16px;
    animation-duration: 42s; /* un peu plus dynamique */
  }

  .contact-avis-card{
    min-width: 78%;
    max-width: 78%;
    padding: 20px 22px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  #contact.section-solid::before{
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .contact-inner{
    width: min(560px, 92vw);
    padding-block: clamp(60px, 10vh, 105px);
  }

  .contact-title{
    font-size: clamp(1.7rem, 1.1rem + 4vw, 2.4rem);
    margin-bottom: 18px;
  }

  .contact-item{
    font-size: 1.25rem;
  }

  .contact-item:hover{
    transform: none; /* évite le “zoom” un peu agressif sur mobile */
  }

  .contact-extra{
    font-size: 1.05rem;
    line-height: 1.55;
  }

  /* Avis : cartes plus petites + pas d'overflow */
  .contact-avis{
    margin-top: 34px;

  }


  .contact-avis-track{
    gap: 14px;
    animation-duration: 38s;

  }

  .contact-avis-card{
    min-width: 86%;
    max-width: 86%;
    padding: 18px 18px;
    border-radius: 14px;
    font-size: 1.05rem;
  }

  /* Insta : icône + texte plus compacts */
  .contact-insta-link{
    font-size: 1.15rem;
    gap: 8px;
  }

  .contact-insta-icon{
    width: 26px;
    height: 26px;
    
  }

  /* Scroll-safety global : le slider ne doit jamais créer un swipe horizontal */
  #contact .contact-avis-slider{
    overflow: hidden;
  }
}

/* Très petit mobile */
@media (max-width: 480px) {
  .contact-inner{
    width: min(520px, 92vw);
    padding-block: clamp(55px, 10vh, 95px);
  }

  .contact-item{
    font-size: 1.15rem;
  }

  .contact-avis-card{
    min-width: 90%;
    max-width: 90%;
    padding: 16px 16px;
    font-size: 1rem;
  }

  .contact-insta-link{
    font-size: 1.08rem;
  }
}

/* =========================================================
   âÂÂÂÂÂÂÂÂ ACCESSIBILITÉ / UX : pause animation au hover (desktop)
   ========================================================= */
@media (hover: hover) {
  .contact-avis-slider:hover .contact-avis-track{
    animation-play-state: paused;
  }
}


/* ======== FOOTER (version fine & élégante) ======== */
.site-footer {
  background: #91867A; /* vert sapin doux */
  color: #f5f5f5;
  text-align: center;
  padding: 18px 12px 14px; /* hauteur réduite */
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(0.75rem, .3rem + 0.6vw, 0.9rem); /* texte plus petit */
  letter-spacing: 0.3px;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.site-footer p {
  margin: 0;
  line-height: 1.4;
  opacity: 0.85;
}

.footer-dev {
  font-style: italic;
  color: rgba(255,255,255,0.8);
}

.site-footer strong {
  font-weight: 500;
  color: #fff;
  transition: color 0.3s ease;
}

.site-footer strong:hover {
  color: #d4b89f; /* accent doré léger */
}







/* iOS Safari : background-attachment fixed bug */
@supports (-webkit-touch-callout: none) {
  #soins.section-solid {
    background-attachment: scroll; /* au lieu de fixed */
  }
}

/* iOS Safari : backdrop-filter = artefacts (halos / bords flous) */
@supports (-webkit-touch-callout: none) {
  #soins.section-solid::before {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@supports (-webkit-touch-callout: none) {
  #introduction .video-overlay {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  /* petit trick: on scale très légèrement la vidéo pour masquer les bords */
  #introduction .video-background video {
    transform: scale(1.02);
  }
}

/* iPhone réel : 100vh bug + safe area bottom */
@supports (-webkit-touch-callout: none) {
  #introduction .content{
    height: 100svh; /* au lieu de 100vh sur iOS */
  }

  #introduction .scroll-indicator{
    bottom: calc(18px + env(safe-area-inset-bottom));
    z-index: 999;
  }
}


@supports (-webkit-touch-callout: none) {
  :root {
    --beige-main: #d2cbc2;
    --beige-light: #f7f3ee;
  }

  #soins.section-solid,
  #tarifs.section-solid,
  #approche.section-solid {
    background: var(--beige-light);
  }

  .care-card {
    background-color: var(--beige-main);
  }
}

