/* ==========================================================================
   Lumen Dentaire — système « liquid glass »
   Fond nacré vivant + panneaux de verre + encre bleue profonde.
   ========================================================================== */

@font-face {
  font-family: 'Outfit Variable';
  src: url('/assets/fonts/outfit.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope Variable';
  src: url('/assets/fonts/manrope.woff2') format('woff2-variations');
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --nacre: #f3f7f9;
  --nacre-2: #e9f1f4;
  --encre: #0b2233;
  --encre-60: rgba(11, 34, 51, 0.62);
  --encre-40: rgba(11, 34, 51, 0.42);
  --turquoise: #17aec6;
  --turquoise-fonce: #0d8ba3;
  --menthe: #6fdec0;
  --violet: #8b9bf5;
  --verre: rgba(255, 255, 255, 0.42);
  --verre-fort: rgba(255, 255, 255, 0.62);
  --verre-bord: rgba(255, 255, 255, 0.75);
  --verre-bord-bas: rgba(120, 160, 180, 0.25);
  --ombre-verre:
    0 1px 1px rgba(255, 255, 255, 0.7) inset,
    0 -1px 1px rgba(90, 130, 150, 0.12) inset,
    0 12px 30px -12px rgba(13, 60, 80, 0.25),
    0 40px 80px -40px rgba(13, 60, 80, 0.28);
  --rayon: 26px;
  --display: 'Outfit Variable', 'Segoe UI', system-ui, sans-serif;
  --texte: 'Manrope Variable', 'Segoe UI', system-ui, sans-serif;
  --transition: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: light;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--texte);
  font-size: 17px;
  line-height: 1.65;
  color: var(--encre);
  background: var(--nacre);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
[hidden] { display: none !important; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: rgba(23, 174, 198, 0.25); }

.enveloppe { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

h1, h2, h3, .chiffre {
  font-family: var(--display);
  font-weight: 560;
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 6.2vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.18rem; font-weight: 600; }
p { max-width: 62ch; }
.surtitre {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--turquoise-fonce);
  margin-bottom: 18px;
}
.surtitre::before {
  content: '';
  width: 26px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--turquoise), var(--menthe));
}

/* --------------------------------------------------------------------------
   Ciel : mesh gradient animé, fixe derrière tout le site
   -------------------------------------------------------------------------- */
.ciel {
  position: fixed; inset: -20%;
  z-index: -1;
  filter: blur(70px) saturate(1.15);
  pointer-events: none;
}
.ciel-blob { position: absolute; border-radius: 50%; opacity: 0.55; will-change: transform; }
.ciel-blob--turquoise {
  width: 55vw; height: 55vw; left: -8vw; top: -12vh;
  background: radial-gradient(circle at 40% 40%, #9fe6ef, transparent 65%);
  animation: derive-a 26s ease-in-out infinite alternate;
}
.ciel-blob--menthe {
  width: 46vw; height: 46vw; right: -10vw; top: 8vh;
  background: radial-gradient(circle at 60% 40%, #b7f3de, transparent 65%);
  animation: derive-b 31s ease-in-out infinite alternate;
}
.ciel-blob--violet {
  width: 50vw; height: 50vw; left: 24vw; bottom: -18vh;
  background: radial-gradient(circle at 50% 60%, #ccd3fb, transparent 68%);
  animation: derive-c 37s ease-in-out infinite alternate;
}
.ciel-blob--nacre {
  width: 60vw; height: 40vw; right: 4vw; bottom: -6vh;
  background: radial-gradient(circle at 50% 50%, #ffffff, transparent 70%);
  opacity: 0.8;
  animation: derive-a 41s ease-in-out infinite alternate-reverse;
}
@keyframes derive-a { to { transform: translate(9vw, 7vh) scale(1.12); } }
@keyframes derive-b { to { transform: translate(-7vw, 10vh) scale(0.92) rotate(20deg); } }
@keyframes derive-c { to { transform: translate(6vw, -9vh) scale(1.15); } }
.ciel-grain {
  position: absolute; inset: 0; opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  filter: none;
}

/* --------------------------------------------------------------------------
   Curseur personnalisé (pointeurs fins seulement)
   -------------------------------------------------------------------------- */
.curseur { display: none; }
@media (pointer: fine) {
  .curseur { display: block; opacity: 0; transition: opacity .3s; position: fixed; inset: 0; z-index: 9999; pointer-events: none; }
  .curseur-point, .curseur-halo {
    position: absolute; top: 0; left: 0; border-radius: 50%;
    transform: translate(-50%, -50%);
  }
  .curseur-point { width: 7px; height: 7px; background: var(--turquoise-fonce); }
  .curseur-halo {
    width: 38px; height: 38px;
    border: 1.5px solid rgba(23, 174, 198, 0.5);
    background: rgba(23, 174, 198, 0.06);
    backdrop-filter: blur(2px);
    transition: width 0.3s var(--transition), height 0.3s var(--transition),
      border-radius 0.3s var(--transition), background 0.3s;
  }
  .curseur.curseur--actif .curseur-halo {
    width: 62px; height: 62px;
    border-radius: 46% 54% 55% 45% / 48% 44% 56% 52%;
    background: rgba(111, 222, 192, 0.16);
    animation: blob-tourne 3.2s linear infinite;
  }
  @keyframes blob-tourne { to { rotate: 360deg; } }
}

/* --------------------------------------------------------------------------
   Voile de transition entre pages
   -------------------------------------------------------------------------- */
.voile {
  position: fixed; inset: 0; z-index: 998;
  background: linear-gradient(120deg, rgba(233, 244, 247, 0.96), rgba(214, 240, 238, 0.96));
  backdrop-filter: blur(14px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.42s ease;
}
body.voile-actif .voile { opacity: 1; pointer-events: all; }
main { animation: page-entre 0.7s cubic-bezier(0.22, 1, 0.36, 1) both; }
@keyframes page-entre { from { opacity: 0; transform: translateY(18px); } }

/* --------------------------------------------------------------------------
   En-tête de verre
   -------------------------------------------------------------------------- */
.entete {
  position: fixed; top: 14px; left: 0; right: 0; z-index: 900;
  transition: top 0.4s var(--transition);
}
.entete-verre {
  width: min(1180px, calc(100% - 28px));
  margin-inline: auto;
  display: flex; align-items: center; gap: 26px;
  padding: 10px 12px 10px 20px;
  border-radius: 999px;
  background: var(--verre);
  backdrop-filter: blur(26px) saturate(1.5);
  -webkit-backdrop-filter: blur(26px) saturate(1.5);
  border: 1px solid var(--verre-bord);
  border-bottom-color: var(--verre-bord-bas);
  box-shadow: var(--ombre-verre);
  transition: background 0.4s;
}
.entete--roule .entete-verre { background: var(--verre-fort); }
.logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); }
.logo-gemme {
  width: 30px; height: 30px; border-radius: 10px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.95), transparent 45%),
    linear-gradient(135deg, var(--turquoise), var(--violet));
  box-shadow: 0 6px 14px -6px rgba(23, 174, 198, 0.6);
}
.logo-mot { font-weight: 650; font-size: 1.12rem; letter-spacing: -0.01em; }
.logo-mot em { font-style: normal; font-weight: 350; color: var(--encre-60); }
.nav { display: flex; gap: 4px; margin-left: auto; }
.nav a {
  padding: 8px 14px; border-radius: 999px;
  font-size: 0.92rem; font-weight: 600; color: var(--encre-60);
  transition: color 0.25s, background 0.25s;
}
.nav a:hover { color: var(--encre); background: rgba(255, 255, 255, 0.6); }
.nav a[aria-current='page'] { color: var(--turquoise-fonce); background: rgba(255, 255, 255, 0.72); box-shadow: 0 4px 12px -6px rgba(13, 60, 80, 0.25); }
.entete-cta { white-space: nowrap; }
.burger { display: none; }

/* --------------------------------------------------------------------------
   Boutons
   -------------------------------------------------------------------------- */
.bouton {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 24px; border-radius: 999px;
  font-weight: 700; font-size: 0.95rem;
  transition: transform 0.35s var(--transition), box-shadow 0.35s var(--transition), background 0.3s;
  overflow: hidden;
  isolation: isolate;
}
.bouton--grand { padding: 16px 32px; font-size: 1.02rem; }
.bouton--plein {
  color: #fff;
  background: linear-gradient(135deg, var(--turquoise), #35c3d8 45%, var(--violet) 130%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 10px 24px -10px rgba(23, 174, 198, 0.7);
}
.bouton--plein:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,0.55) inset, 0 16px 34px -12px rgba(23, 174, 198, 0.85); }
.bouton--verre {
  background: var(--verre-fort);
  border: 1px solid var(--verre-bord);
  backdrop-filter: blur(16px);
  box-shadow: var(--ombre-verre);
}
.bouton--verre:hover { transform: translateY(-2px); background: #fff; }
@media (pointer: fine) {
  .bouton:hover { filter: url('#verre-liquide'); }
}
.bouton .onde {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0) 60%);
  transform: translate(-50%, -50%) scale(0);
  animation: onde 0.7s ease-out forwards;
  z-index: -1;
}
@keyframes onde { to { transform: translate(-50%, -50%) scale(1); opacity: 0; } }

/* --------------------------------------------------------------------------
   Panneaux de verre génériques
   -------------------------------------------------------------------------- */
.verre {
  background: var(--verre);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid var(--verre-bord);
  border-bottom-color: var(--verre-bord-bas);
  border-radius: var(--rayon);
  box-shadow: var(--ombre-verre);
  position: relative;
  overflow: hidden;
}
.verre::before {
  /* reflet de bord supérieur */
  content: '';
  position: absolute; inset: 0 0 auto 0; height: 42%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent);
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
section { padding: clamp(70px, 9vw, 130px) 0; }
.section-tete { max-width: 640px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-tete p { color: var(--encre-60); font-size: 1.06rem; }

/* Héros ------------------------------------------------------------------ */
.heros {
  min-height: 100svh;
  display: grid; align-items: center;
  padding: 150px 0 80px;
  position: relative;
}
.heros-grille { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.heros h1 em { font-style: normal; background: linear-gradient(100deg, var(--turquoise-fonce), var(--violet)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.heros-texte p { margin: 26px 0 34px; font-size: 1.14rem; color: var(--encre-60); }
.heros-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.heros-preuves { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 44px; }
.heros-preuve { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 600; color: var(--encre-60); }
.heros-preuve svg { color: var(--turquoise-fonce); flex: none; }
.heros-scene { position: relative; min-height: 460px; }
.scene3d { position: absolute; inset: -40px; }
.scene3d canvas { width: 100% !important; height: 100% !important; }
.scene3d-repli {
  position: absolute; inset: 10%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,0.95), rgba(255,255,255,0) 42%),
    radial-gradient(circle at 68% 75%, rgba(111,222,192,0.75), rgba(111,222,192,0) 55%),
    linear-gradient(135deg, rgba(23,174,198,0.55), rgba(139,155,245,0.55));
  filter: blur(0.5px);
  box-shadow: 0 60px 120px -50px rgba(13, 60, 80, 0.45), 0 2px 2px rgba(255,255,255,0.8) inset;
  animation: respire 7s ease-in-out infinite;
}
@keyframes respire { 50% { transform: scale(1.045) translateY(-8px); } }
.heros-carte {
  position: absolute; z-index: 2;
  padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
  border-radius: 20px;
  font-size: 0.88rem; font-weight: 600;
}
.heros-carte strong { display: block; font-size: 1rem; }
.heros-carte small { color: var(--encre-60); font-weight: 500; }
.heros-carte--a { top: 8%; right: 2%; animation: flotte 9s ease-in-out infinite; }
.heros-carte--b { bottom: 6%; left: -4%; animation: flotte 11s ease-in-out 1.2s infinite; }
@keyframes flotte { 50% { transform: translateY(-14px); } }
.heros-carte .pastille {
  width: 42px; height: 42px; flex: none; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(23,174,198,0.16), rgba(139,155,245,0.16));
  color: var(--turquoise-fonce);
}
.etoiles { color: #f5a623; letter-spacing: 2px; }

/* Cartes de service ------------------------------------------------------- */
.grille-soins { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.carte-soin {
  padding: 30px 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.45s var(--transition), box-shadow 0.45s var(--transition);
}
.carte-soin:hover { transform: translateY(-8px) rotate(-0.35deg); box-shadow: 0 1px 1px rgba(255,255,255,0.7) inset, 0 30px 60px -24px rgba(13, 60, 80, 0.4); }
.carte-soin .icone {
  width: 54px; height: 54px; border-radius: 18px;
  display: grid; place-items: center;
  color: var(--turquoise-fonce);
  background: linear-gradient(135deg, rgba(23,174,198,0.14), rgba(111,222,192,0.2));
  border: 1px solid rgba(255, 255, 255, 0.7);
  transition: transform 0.4s var(--transition);
}
.carte-soin:hover .icone { transform: scale(1.08) rotate(-4deg); }
.carte-soin p { font-size: 0.96rem; color: var(--encre-60); }
.carte-soin .suite { margin-top: auto; font-weight: 700; font-size: 0.9rem; color: var(--turquoise-fonce); display: inline-flex; gap: 8px; align-items: center; }
.carte-soin .suite::after { content: '→'; transition: transform 0.3s var(--transition); }
.carte-soin:hover .suite::after { transform: translateX(5px); }

/* Statistiques ------------------------------------------------------------ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat { text-align: center; padding: 34px 18px; }
.chiffre { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 620; color: var(--turquoise-fonce); }
.stat p { margin-inline: auto; font-size: 0.92rem; font-weight: 600; color: var(--encre-60); margin-top: 6px; }

/* Témoignages ------------------------------------------------------------- */
.carrousel { position: relative; overflow: hidden; padding: 6px; margin: -6px; }
.carrousel-piste { display: flex; gap: 22px; transition: transform 0.8s var(--transition); }
.temoignage {
  flex: 0 0 min(420px, 88%);
  padding: 30px;
  display: flex; flex-direction: column; gap: 16px;
}
.temoignage blockquote { font-size: 1.02rem; line-height: 1.6; }
.temoignage-pied { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 650; color: #fff;
  background: linear-gradient(135deg, var(--turquoise), var(--violet));
}
.temoignage-pied strong { display: block; font-size: 0.95rem; }
.temoignage-pied small { color: var(--encre-60); }
.carrousel-nav { display: flex; gap: 10px; margin-top: 26px; }
.carrousel-nav button {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--verre-fort); border: 1px solid var(--verre-bord);
  box-shadow: var(--ombre-verre);
  transition: transform 0.3s var(--transition), background 0.3s;
}
.carrousel-nav button:hover { transform: translateY(-2px); background: #fff; }

/* Bande CTA + pied -------------------------------------------------------- */
.bande-cta-verre {
  text-align: center; padding: clamp(44px, 6vw, 76px) 30px;
  background: var(--verre);
  backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid var(--verre-bord);
  border-radius: 34px;
  box-shadow: var(--ombre-verre);
}
.bande-cta-verre p { margin: 14px auto 30px; color: var(--encre-60); }
.bande-cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

.pied { padding: 70px 0 34px; }
.pied-grille { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 40px; }
.pied h3 { font-size: 0.86rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--encre-60); margin-bottom: 16px; }
.pied li { margin-bottom: 10px; font-size: 0.95rem; }
.pied a:hover { color: var(--turquoise-fonce); }
.pied-note { margin-top: 16px; font-size: 0.92rem; color: var(--encre-60); max-width: 34ch; }
.pied-sociaux { display: flex; gap: 10px; margin-top: 18px; }
.pied-sociaux a {
  width: 40px; height: 40px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--verre-fort); border: 1px solid var(--verre-bord);
  box-shadow: var(--ombre-verre);
  transition: transform 0.3s var(--transition), color 0.3s;
}
.pied-sociaux a:hover { transform: translateY(-3px); color: var(--turquoise-fonce); }
.pied-heures li { display: flex; justify-content: space-between; gap: 12px; }
.pied-heures span:first-child { color: var(--encre-60); }
.pied-legal {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid rgba(11, 34, 51, 0.1);
  font-size: 0.84rem; color: var(--encre-60);
}
.pied-legal a { text-decoration: underline; text-underline-offset: 3px; }

/* --------------------------------------------------------------------------
   Bulle de contact
   -------------------------------------------------------------------------- */
.bulle { position: fixed; right: 22px; bottom: 22px; z-index: 950; }
.bulle-bouton {
  width: 60px; height: 60px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, var(--turquoise), var(--violet));
  box-shadow: 0 14px 30px -10px rgba(23, 174, 198, 0.8);
  transition: transform 0.35s var(--transition);
  animation: bulle-pouls 4s ease-in-out infinite;
}
@keyframes bulle-pouls { 50% { box-shadow: 0 14px 40px -6px rgba(23, 174, 198, 0.95); } }
.bulle-bouton:hover { transform: scale(1.08) rotate(-6deg); }
.bulle-menu {
  position: absolute; right: 0; bottom: 74px;
  min-width: 240px; padding: 12px;
  border-radius: 22px;
  background: var(--verre-fort);
  backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid var(--verre-bord);
  box-shadow: var(--ombre-verre);
  display: flex; flex-direction: column; gap: 4px;
  opacity: 0; transform: translateY(12px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.3s var(--transition), transform 0.3s var(--transition);
}
.bulle--ouverte .bulle-menu { opacity: 1; transform: none; pointer-events: all; }
.bulle-menu a, .bulle-menu button {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; border-radius: 14px;
  font-size: 0.94rem; font-weight: 600; text-align: left;
  transition: background 0.25s;
}
.bulle-menu a:hover, .bulle-menu button:hover { background: rgba(255, 255, 255, 0.85); }

/* --------------------------------------------------------------------------
   Modale de rendez-vous
   -------------------------------------------------------------------------- */
.modale { position: fixed; inset: 0; z-index: 990; display: grid; place-items: center; padding: 20px; }
.modale[hidden] { display: none; }
.modale-fond { position: absolute; inset: 0; background: rgba(11, 34, 51, 0.35); backdrop-filter: blur(10px); }
.modale-verre {
  position: relative; width: min(640px, 100%);
  max-height: calc(100svh - 40px); overflow: auto;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(30px) saturate(1.5);
  border: 1px solid var(--verre-bord);
  box-shadow: var(--ombre-verre);
  animation: modale-entre 0.5s var(--transition);
}
@keyframes modale-entre { from { opacity: 0; transform: translateY(26px) scale(0.97); } }
.modale-fermer {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.7); border: 1px solid var(--verre-bord);
  transition: transform 0.3s, background 0.3s;
}
.modale-fermer:hover { transform: rotate(90deg); background: #fff; }
.modale-note { color: var(--encre-60); margin: 10px 0 24px; font-size: 0.98rem; }
.modale form { display: flex; flex-direction: column; gap: 16px; }
.champ-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.modale label { display: flex; flex-direction: column; gap: 7px; font-size: 0.86rem; font-weight: 700; color: var(--encre-60); }
.modale input, .modale select {
  font: inherit; color: var(--encre);
  padding: 13px 16px; border-radius: 15px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(120, 160, 180, 0.35);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.modale input:focus, .modale select:focus { border-color: var(--turquoise); box-shadow: 0 0 0 4px rgba(23, 174, 198, 0.16); }
.modale input.invalide { border-color: #e2617a; box-shadow: 0 0 0 4px rgba(226, 97, 122, 0.14); }
.modale-assurances { font-size: 0.8rem; color: var(--encre-60); text-align: center; }
.modale-merci { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.merci-cercle {
  width: 76px; height: 76px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 2rem; color: #fff;
  background: linear-gradient(135deg, var(--menthe), var(--turquoise));
  box-shadow: 0 20px 44px -16px rgba(23, 174, 198, 0.8);
  animation: merci-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes merci-pop { from { transform: scale(0.3); opacity: 0; } }

/* --------------------------------------------------------------------------
   Éléments de contenu partagés par les pages intérieures
   -------------------------------------------------------------------------- */
.heros-page { padding: 190px 0 30px; }
.heros-page p.grande { font-size: 1.15rem; color: var(--encre-60); margin-top: 20px; }

.fiche-soin { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(26px, 4vw, 56px); align-items: center; padding: 40px 0; }
.fiche-soin:nth-child(even) .fiche-visuel { order: 2; }
.fiche-visuel { min-height: 300px; border-radius: var(--rayon); position: relative; overflow: hidden; }
.fiche-visuel .verre-photo { position: absolute; inset: 0; }
.fiche-texte h2 { margin-bottom: 14px; }
.fiche-texte p { color: var(--encre-60); margin-bottom: 14px; }
.fiche-points { display: flex; flex-direction: column; gap: 10px; margin: 18px 0 24px; }
.fiche-points li { display: flex; gap: 12px; align-items: baseline; font-size: 0.98rem; }
.fiche-points li::before { content: '✦'; color: var(--turquoise-fonce); font-size: 0.8rem; }

.verre-photo {
  background:
    radial-gradient(circle at 25% 20%, rgba(255,255,255,0.9), transparent 45%),
    linear-gradient(135deg, rgba(23,174,198,0.35), rgba(111,222,192,0.3) 50%, rgba(139,155,245,0.35));
}
.verre-photo--b { background: radial-gradient(circle at 70% 25%, rgba(255,255,255,0.9), transparent 45%), linear-gradient(160deg, rgba(139,155,245,0.35), rgba(23,174,198,0.32)); }
.verre-photo--c { background: radial-gradient(circle at 45% 70%, rgba(255,255,255,0.9), transparent 45%), linear-gradient(120deg, rgba(111,222,192,0.4), rgba(139,155,245,0.3)); }
.verre-photo .legende {
  position: absolute; left: 18px; bottom: 18px;
  padding: 8px 16px; border-radius: 999px;
  font-size: 0.8rem; font-weight: 700;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid var(--verre-bord);
}

.grille-equipe { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.carte-membre { padding: 26px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.portrait {
  width: 120px; height: 120px; border-radius: 42% 58% 55% 45% / 52% 44% 56% 48%;
  margin-bottom: 12px;
  display: grid; place-items: center;
  font-family: var(--display); font-size: 2rem; font-weight: 650; color: #fff;
  background: linear-gradient(135deg, var(--turquoise), var(--violet));
  box-shadow: 0 24px 40px -20px rgba(23, 174, 198, 0.75), 0 2px 2px rgba(255,255,255,0.6) inset;
  animation: morphe 12s ease-in-out infinite;
}
@keyframes morphe {
  50% { border-radius: 55% 45% 42% 58% / 45% 55% 45% 55%; }
}
.carte-membre .role { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--turquoise-fonce); }
.carte-membre p { font-size: 0.93rem; color: var(--encre-60); }

.grille-valeurs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.valeur { padding: 28px; }
.valeur h3 { margin: 12px 0 8px; }
.valeur p { font-size: 0.95rem; color: var(--encre-60); }

.grille-galerie { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; gap: 18px; }
.grille-galerie .verre-photo { border-radius: 22px; position: relative; overflow: hidden; transition: transform 0.5s var(--transition); }
.grille-galerie .verre-photo:hover { transform: scale(1.025); }
.grille-galerie .large { grid-column: span 2; }

.accordeon { display: flex; flex-direction: column; gap: 14px; max-width: 780px; }
.accordeon details { border-radius: 22px; overflow: hidden; }
.accordeon summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  padding: 22px 26px;
  font-family: var(--display); font-weight: 600; font-size: 1.05rem;
}
.accordeon summary::-webkit-details-marker { display: none; }
.accordeon summary::after {
  content: '+'; flex: none;
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.2rem; font-weight: 400; color: var(--turquoise-fonce);
  background: rgba(255, 255, 255, 0.7); border: 1px solid var(--verre-bord);
  transition: transform 0.35s var(--transition);
}
.accordeon details[open] summary::after { transform: rotate(45deg); }
.accordeon .reponse { padding: 0 26px 24px; color: var(--encre-60); }

.contact-grille { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 26px; align-items: start; }
.contact-panneau { padding: clamp(26px, 4vw, 40px); }
.contact-panneau form { display: flex; flex-direction: column; gap: 16px; }
.contact-panneau label { display: flex; flex-direction: column; gap: 7px; font-size: 0.86rem; font-weight: 700; color: var(--encre-60); }
.contact-panneau input, .contact-panneau select, .contact-panneau textarea {
  font: inherit; color: var(--encre);
  padding: 13px 16px; border-radius: 15px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(120, 160, 180, 0.35);
  outline: none; resize: vertical;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.contact-panneau input:focus, .contact-panneau select:focus, .contact-panneau textarea:focus { border-color: var(--turquoise); box-shadow: 0 0 0 4px rgba(23, 174, 198, 0.16); }
.contact-infos { display: flex; flex-direction: column; gap: 18px; }
.contact-ligne { display: flex; gap: 16px; align-items: flex-start; padding: 20px 22px; }
.contact-ligne .pastille { width: 46px; height: 46px; flex: none; border-radius: 16px; display: grid; place-items: center; color: var(--turquoise-fonce); background: linear-gradient(135deg, rgba(23,174,198,0.15), rgba(139,155,245,0.15)); }
.contact-ligne strong { display: block; margin-bottom: 2px; }
.contact-ligne p, .contact-ligne a { font-size: 0.95rem; color: var(--encre-60); }
.carte-plan { min-height: 280px; border-radius: var(--rayon); overflow: hidden; position: relative; }
.carte-plan svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.paiements { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.paiements span {
  padding: 8px 16px; border-radius: 999px;
  font-size: 0.8rem; font-weight: 700;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--verre-bord);
  box-shadow: 0 6px 14px -8px rgba(13, 60, 80, 0.3);
}

.prose { max-width: 760px; }
.prose h2 { margin: 44px 0 14px; font-size: 1.5rem; }
.prose p, .prose li { color: var(--encre-60); margin-bottom: 12px; }
.prose ul { padding-left: 20px; list-style: disc; }

/* --------------------------------------------------------------------------
   Révélations au défilement
   -------------------------------------------------------------------------- */
.rideau { opacity: 0; transform: translateY(34px); }
.rideau--vu { opacity: 1; transform: none; transition: opacity 0.9s var(--transition), transform 0.9s var(--transition); }
.rideau[data-retard='1'].rideau--vu { transition-delay: 0.08s; }
.rideau[data-retard='2'].rideau--vu { transition-delay: 0.16s; }
.rideau[data-retard='3'].rideau--vu { transition-delay: 0.24s; }
.rideau[data-retard='4'].rideau--vu { transition-delay: 0.32s; }
.rideau[data-retard='5'].rideau--vu { transition-delay: 0.4s; }

/* --------------------------------------------------------------------------
   Adaptations
   -------------------------------------------------------------------------- */
@media (max-width: 1020px) {
  .grille-soins, .grille-equipe, .grille-valeurs { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .heros-grille { grid-template-columns: 1fr; }
  .heros-scene { min-height: 380px; order: -1; margin-top: -30px; }
  .fiche-soin { grid-template-columns: 1fr; }
  .fiche-soin:nth-child(even) .fiche-visuel { order: 0; }
  .contact-grille { grid-template-columns: 1fr; }
  .pied-grille { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav {
    position: fixed; inset: 76px 14px auto 14px;
    flex-direction: column; padding: 14px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(26px);
    border: 1px solid var(--verre-bord);
    box-shadow: var(--ombre-verre);
    opacity: 0; transform: translateY(-12px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.3s var(--transition), transform 0.3s var(--transition);
  }
  body.menu-ouvert .nav { opacity: 1; transform: none; pointer-events: all; }
  .nav a { padding: 13px 18px; font-size: 1rem; }
  .burger {
    display: grid; gap: 5px; place-content: center;
    width: 44px; height: 44px; margin-left: auto;
  }
  .burger span { width: 20px; height: 2px; border-radius: 2px; background: var(--encre); transition: transform 0.3s var(--transition); }
  body.menu-ouvert .burger span:first-child { transform: translateY(3.5px) rotate(45deg); }
  body.menu-ouvert .burger span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .entete-cta { display: none; }
  .grille-soins, .grille-equipe, .grille-valeurs, .grille-galerie { grid-template-columns: 1fr; }
  .grille-galerie .large { grid-column: auto; }
  .champ-duo { grid-template-columns: 1fr; }
  .heros { padding-top: 120px; }
  .heros-carte--b { left: 2%; }
  /* Le verre lourd coûte cher sur mobile : on allège. */
  .ciel { filter: blur(46px) saturate(1.1); }
  .verre, .entete-verre, .bande-cta-verre { backdrop-filter: blur(14px) saturate(1.3); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
  html { scroll-behavior: auto; }
  .rideau { opacity: 1; transform: none; }
}
