/* =========================================================
   1) VARIABLES GLOBALES
   ========================================================= */
:root{
  --primary: #4f7a6a;
  --primary-dark: #3e6254;
  --primary-soft: #6a8b7f;

  --secondary: #e6dccd;
  --secondary-dark: #cdbfa9;
  --secondary-soft: #e2ebe7;
  --secondary-bg: #f3f6f4;

  --bubble-bg: #f6f8f7;
  --bubble-border: #dde6e1;

  --bg-light: #f7f9f8;
  --bg-soft: #eef3f1;
  --bg-white: #ffffff;

  --text-main: #222;
  --text-dark: #333;
  --text-muted: #555;
  --text-light: #777;

  --border-light: #d9e2dd;
  --border-soft: #dde6e1;
  --border-mobile: rgba(0,0,0,0.06);
  --border-mobile-strong: rgba(0,0,0,0.08);

  --shadow-soft: 0 4px 12px rgba(0,0,0,0.05);
  --shadow-medium: 0 4px 15px rgba(0,0,0,0.08);
  --shadow-card: 0 8px 22px rgba(0,0,0,0.06);

  --container-width: 860px;
  --container-wide: 900px;
  --reading-width: 720px;
  --radius-card: 14px;
}

/* =========================================================
   2) RESET / BASE
   ========================================================= */
*{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  padding-top: 60px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
  color: var(--text-main);
  background: #fff;
}

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

.main{
  display: block;
}

/* =========================================================
   3) CONTENEURS / LARGEURS
   ========================================================= */
.container{
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 18px;
}

.container--wide{
  max-width: var(--container-wide);
}

.reading-column{
  max-width: var(--reading-width);
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
   4) TYPOGRAPHIE GLOBALE
   ========================================================= */
h1,
h2,
h3{
  color: var(--text-main);
}

h1{
  margin: 0 0 14px;
  font-size: 1.75rem;
  line-height: 1.2;
}

h2{
  margin: 0 0 22px;
  padding-bottom: 10px;
  font-size: 1.55rem;
  line-height: 1.25;
  letter-spacing: 0.2px;
  color: var(--primary-dark);
  border-bottom: 1px solid var(--border-soft);
}

h3{
  margin: 0 0 10px;
  font-size: 1.1rem;
  line-height: 1.3;
}

h4{
  margin: 18px 0 8px;
  font-size: 1rem;
  color: var(--text-dark);
}

p{
  margin: 0 0 18px;
  line-height: 1.75;
}

p:last-child{
  margin-bottom: 0;
}

ul,
ol{
  margin: 0 0 18px;
}

.section-lead{
  max-width: var(--reading-width);
  margin: -6px auto 18px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* =========================================================
   5) LIENS / FOCUS / ACCESSIBILITÉ
   ========================================================= */
a{
  color: var(--primary-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover{
  color: var(--primary);
}

:focus-visible{
  outline: 2px solid var(--border-mobile-strong);
  outline-offset: 3px;
}

:focus:not(:focus-visible){
  outline: none;
}

.skip-link{
  position: absolute;
  top: 10px;
  left: -9999px;
  z-index: 2000;
  padding: 10px 12px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

.skip-link:focus{
  left: 10px;
}

/* =========================================================
   6) STRUCTURE GÉNÉRALE DES SECTIONS
   ========================================================= */
section{
  padding: 60px 0;
  scroll-margin-top: 90px;
  border-bottom: 1px solid var(--border-soft);
}

.section-spacious{
  padding: 100px 0;
}

.section-compact{
  padding: 18px 0;
}

.section-no-divider{
  border-bottom: none !important;
}

/* =========================================================
   7) NAVIGATION PRINCIPALE
   ========================================================= */
/* 7A) BARRE */
.site-nav{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 10px 0;
  text-align: center;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.nav-mobile-bar,
.nav-rdv-mobile{
  display: none;
}

.site-nav .label-mobile{
  display: none;
}

/* 7B) LIENS */
.nav-links{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 18px;
}

.site-nav a{
  margin: 0 18px;
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.site-nav a:hover{
  color: var(--primary);
}

.site-nav a.active{
  color: var(--primary-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-links a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
}

/* 7C) ACTIONS */
.menu-toggle{
  display: none;
  padding: 8px 10px;
  font-size: 28px;
  line-height: 1;
  color: var(--text-main);
  background: none;
  border: none;
  cursor: pointer;
}

.nav-rdv-desktop{
  margin-left: 42px !important;
  padding-left: 18px;
  padding-right: 18px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(79,122,106,0.16);
  border-radius: 999px;
}

/* =========================================================
   8) HERO — BASE GLOBALE
   ========================================================= */
.hero{
  padding: 55px 20px 45px;
  text-align: center;
  background:
    linear-gradient(to bottom, rgba(243,246,244,0.68), rgba(243,246,244,0.26)),
    url("/images/herox.jpg");
  background-repeat: no-repeat;
  background-position: center 76%;
  background-size: cover;
  border-bottom: 1px solid var(--border-soft);
}

.hero h1{
  max-width: var(--reading-width);
  margin: 0 auto 10px;
  font-size: 1.6rem;
  line-height: 1.2;
}

.hero-subtitle{
  max-width: var(--reading-width);
  margin: 10px auto 5px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text-dark);
}

.hero-note{
  max-width: 700px;
  margin: 14px auto 0;
  font-size: 0.98rem;
  color: var(--text-muted);
  font-style: italic;
}

.hero-name{
  margin-top: 18px;
  font-weight: 600;
  color: #444;
}

.hero-meta{
  margin-top: 4px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.hero-rpps{
  font-size: 0.9em;
  color: var(--text-light);
}

.hero-cta-note{
  max-width: 700px;
  margin: 18px auto 0;
  padding: 6px 10px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4a4a4a;
  font-style: italic;
  text-align: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  box-shadow: none;
  text-shadow: none;
}

.hero .patient-phrase-intro{
  max-width: 650px;
  margin: 18px auto 0;
  padding: 16px 22px;
  background: var(--bg-white);
  border-left: 4px solid var(--secondary);
  border-radius: 10px;
}

/* =========================================================
   9) HERO — HOMEPAGE
   ========================================================= */
.hero-home{
  position: relative;
  padding-top: 64px;
  padding-bottom: 54px;
  background:
    linear-gradient(to bottom, rgba(243,246,244,0.60), rgba(243,246,244,0.14)),
    url("/images/hero.jpg");
  background-repeat: no-repeat;
  background-position: center 82%;
  background-size: cover;
}

.hero-home::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.02);
}

.hero-home .container{
  position: relative;
  z-index: 1;
}

.hero-home h1{
  max-width: 760px;
  margin: 0 auto 14px;
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-home .hero-subtitle{
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.hero-kicker{
  display: inline-block;
  margin: 0 auto 16px;
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--primary-dark);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(79,122,106,0.18);
  border-radius: 999px;
}

.hero-trust{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 860px;
  margin: 22px auto 0;
}

.hero-trust span{
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-muted);
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(79,122,106,0.14);
  border-radius: 999px;
}

.hero-home .hero-buttons{
  margin-top: 24px;
}

.hero-home .btn-primary,
.hero-home .btn-secondary{
  min-width: 250px;
}

.hero-home .hero-cta-note{
  max-width: 740px;
  padding: 10px 16px;
  text-align: center;
  background: rgba(255,255,255,0.30);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 6px 16px rgba(0,0,0,0.03);
}

/* =========================================================
   10) HERO — PAGE PRÉSENTATION
   ========================================================= */

/* =========================================================
   11) BOUTONS — BASE
   ========================================================= */
.btn,
.btn-primary,
.btn-secondary{
  display: inline-block;
  padding: 14px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition:
    transform 0.06s ease,
    background-color 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.btn-primary{
  color: #fff;
  background-color: var(--primary);
  box-shadow: 0 6px 16px rgba(79,122,106,0.25);
}

.btn-primary:hover{
  background-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(79,122,106,0.35);
}

.btn-secondary{
  color: var(--primary-dark);
  background: #fff;
  border: 2px solid var(--primary);
}

.btn-secondary:hover{
  color: var(--primary-dark);
  background: var(--secondary-bg);
  border-color: var(--primary-dark);
}

.btn-primary:active,
.btn-secondary:active{
  transform: translateY(1px);
}

.btn-primary:focus-visible,
.btn-secondary:focus-visible{
  outline: 2px solid rgba(79,122,106,0.35);
  outline-offset: 3px;
}

/* =========================================================
   12) BOUTONS — GROUPES / CTA
   ========================================================= */
.hero-buttons,
.cta-dual-actions,
.cta-end-actions{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.hero-buttons{
  margin-top: 20px;
  gap: 12px;
}

.cta-dual-actions{
  margin-top: 14px;
  gap: 12px;
}

.cta-end-actions{
  gap: 14px;
}

.section-frame .cta-dual-actions{
  width: 100%;
  margin-top: 18px;
  gap: 14px;
}

.section-frame .cta-dual-actions .btn-primary,
.section-frame .cta-dual-actions .btn-secondary,
.cta-end-actions .btn-primary,
.cta-end-actions .btn-secondary{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-call-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  text-align: center;
}

/* =========================================================
   13) CTA — BLOCS GLOBAUX
   ========================================================= */
.cta-text{
  margin: 40px 0 18px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-main);
}

.cta-inline{
  max-width: var(--reading-width);
  margin: 10px auto 0;
  padding: 32px 26px;
  text-align: center;
  background: #fff;
  border: 2px solid rgba(79,122,106,0.34);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.07);
}

.section-compact .cta-inline{
  margin-top: 0;
}

.cta-inline-text{
  margin: 0 0 14px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-main);
}

.cta-inline .btn-primary{
  display: inline-block;
  min-width: 260px;
  margin-top: 8px;
  margin-bottom: 6px;
}

.cta-links{
  margin-top: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.cta-links a{
  text-decoration: none;
  border-bottom: 1px solid rgba(79,122,106,0.4);
  transition: border-color 0.15s ease, color 0.15s ease;
}

.cta-links a:hover{
  color: var(--primary-dark);
  border-bottom: 1px solid var(--primary);
}

.cta-end{
  max-width: 760px;
  margin: 24px auto 20px;
  padding: 38px 30px;
  text-align: center;
  background: linear-gradient(to bottom, #ffffff, #f7f9f8);
  border: 2px solid rgba(79,122,106,0.36);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.08);
}

.cta-end.section-compact{
  padding-bottom: 34px;
}

.cta-end-inner{
  max-width: 640px;
  margin: 0 auto;
}

.cta-transition{
  margin-bottom: 18px;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--text-dark);
}

/* =========================================================
   14) BLOCS TEXTE / NOTES / LISTES
   ========================================================= */
/* 14A) NOTES */
.section-note,
.patient-cues{
  max-width: var(--reading-width);
  padding: 12px 14px;
  background: transparent;
  border: none;
  border-left: 3px solid rgba(79,122,106,0.35);
  border-radius: 0;
  box-shadow: none;
}

.section-note{
  margin: 28px auto 8px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.patient-cues{
  margin: 20px auto;
}

.patient-cues p{
  margin: 8px 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.patient-phrase,
.patient-phrase-intro{
  font-style: italic;
  color: var(--text-muted);
}

.patient-phrase{
  margin-top: 10px;
  font-size: 0.95em;
}

.patient-phrase-intro{
  max-width: 900px;
  margin: 30px auto 15px;
  padding: 10px 14px;
  font-size: 0.95em;
  background: var(--bg-soft);
  border-left: 4px solid var(--secondary);
  border-radius: 8px;
}

.note-center{
  max-width: var(--reading-width);
  margin: 12px auto 0;
  font-size: 0.98rem;
  line-height: 1.6;
  text-align: center;
  color: var(--text-muted);
}

/* 14B) LISTES */
.patient-list,
.work-list{
  max-width: var(--reading-width);
  margin: 12px auto 0;
  padding-left: 18px;
  color: var(--text-dark);
}

.patient-list{
  margin-top: 18px;
}

.patient-list li,
.work-list li{
  margin: 8px 0;
  line-height: 1.55;
}

.patient-recognition{
  max-width: var(--reading-width);
  margin: 22px auto 0;
  padding-left: 0;
}

.patient-recognition p{
  margin: 8px 0;
  font-size: 0.95rem;
  color: #444;
}

.impact-list{
  margin: 28px 0 30px;
  padding: 0;
  list-style: none;
}

.impact-list li{
  position: relative;
  margin: 14px 0;
  padding-left: 18px;
  font-weight: 500;
  line-height: 1.6;
}

.impact-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  background: var(--secondary);
  border-radius: 50%;
  opacity: 0.7;
}

.patient-cues .impact-list{
  margin: 0;
}

.patient-cues .impact-list li{
  margin: 10px 0;
  font-weight: 400;
}

.patient-cues .impact-list li::before{
  top: 0.75em;
  width: 5px;
  height: 5px;
  opacity: 0.45;
}

/* 14C) TITRES DE BLOCS */
.trust-line{
  margin: 10px 0 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.box-title{
  max-width: var(--reading-width);
  margin: 28px auto 10px;
  padding-left: 12px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  border-left: 3px solid rgba(0,0,0,0.10);
}

.box-title + p,
.box-title + ul,
.box-title + ol,
.box-title + p + p{
  max-width: var(--reading-width);
  margin-left: auto;
  margin-right: auto;
}

.box-title + ul,
.box-title + ol{
  margin-top: 10px;
  padding-left: 18px;
}

.box-title + p{
  margin-top: 10px;
}

.box-title + p + p{
  margin-top: 12px;
}

/* =========================================================
   15) BLOCS DE LECTURE / LARGEURS PAR SECTION
   ========================================================= */
.section-light .container,
.section-frame .container{
  max-width: var(--reading-width);
}

.section-public{
  margin: 0;
}

.section-frame p,
.section-public p,
.process-text{
  max-width: var(--reading-width);
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.section-process h3{
  margin-top: 28px;
  margin-bottom: 6px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.process-text p{
  margin: 14px 0;
  line-height: 1.75;
}

.section-process .process-cues{
  margin-top: 32px;
  background: transparent;
  border-left: 3px solid var(--border-soft);
}

.section-motifs .container > h2,
.section-motifs .container > h3,
.section-motifs .container > p,
.section-motifs .container > ul,
.section-motifs .container > ol,
.section-motifs .container > .patient-cues,
.section-motifs .container > .section-note,
.section-motifs .container > .note-center,
.section-cadre .container > h2,
.section-cadre .container > h3,
.section-cadre .container > p,
.section-cadre .container > ul,
.section-cadre .container > ol,
.section-cadre .container > .section-note,
.section-cadre .container > .cabinet-details,
.section-public .container > h2,
.section-public .container > h3,
.section-public .container > p,
.section-public .container > .patient-cues,
.section-frame .container > h2,
.section-frame .container > h3,
.section-frame .container > p,
.section-frame .container > .trust-line,
.section-frame .container > .patient-cues,
.section-process .container > h2,
.section-process .container > .process-text,
.section-process .container > .patient-cues,
.section-about .container > h2,
.section-about .container > p,
.section-about .container > .patient-cues,
.section-practical .container > h2,
.section-practical .container > h3,
.section-practical .container > p,
.section-practical .container > .cabinet-details,
.page-accompagnements section .container > h2,
.page-accompagnements section .container > h3,
.page-accompagnements section .container > p,
.page-accompagnements section .container > ul,
.page-accompagnements section .container > ol,
.page-accompagnements section .container > .patient-cues,
.page-accompagnements section .container > .section-note,
.page-accompagnements section .container > .trust-line,
.page-accompagnements section .container > .process-text,
.page-accompagnements section .container > .cta-inline,
.page-accompagnements section .container > .points-box{
  max-width: var(--reading-width);
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
   16) HOMEPAGE — BLOC D’ENTRÉE
   ========================================================= */
.section-entry{
  margin-bottom: 10px;
  padding: 36px 20px 24px;
  background: #f8f7f3;
  border-top: 1px solid rgba(79,122,106,0.12);
  border-bottom: 1px solid rgba(79,122,106,0.12);
}

.entry-title{
  margin: 0 0 10px;
  text-align: center;
}

.entry-intro{
  max-width: 680px;
  margin: 0 auto 22px;
  text-align: center;
  color: var(--text-muted);
}

.entry-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--container-wide);
  margin: 0 auto;
}

.entry-card{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 230px;
  padding: 26px 26px 24px;
  text-decoration: none;
  color: var(--text-main);
  background: #fff;
  border: 1.5px solid rgba(79,122,106,0.28);
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.entry-card:hover{
  transform: translateY(-4px);
  border-color: rgba(79,122,106,0.42);
  box-shadow: 0 16px 36px rgba(0,0,0,0.08);
}

.entry-label{
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  margin-bottom: 18px;
  padding: 0 16px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--primary-dark);
  background: #e9ede9;
  border-radius: 999px;
}

.entry-card h3{
  min-height: 48px;
  margin: 0 0 12px;
  font-size: 1.1rem;
  line-height: 1.32;
  color: var(--primary-dark);
}

.entry-card p{
  flex-grow: 1;
  min-height: 72px;
  margin: 0 0 16px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #4d4d4d;
}

.entry-link{
  margin-top: 18px;
  font-weight: 600;
  color: var(--primary);
}

/* =========================================================
   17) MINI-NAVIGATION / BULLES
   ========================================================= */
.page-nav{
  max-width: 900px;
  margin: 18px auto 0;
  padding: 0 20px;
  text-align: center;
}

.page-nav a{
  display: inline-block;
  margin: 8px 8px;
  padding: 9px 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-soft);
  text-decoration: none;
  text-underline-offset: 0;
  background: var(--bubble-bg);
  border: 1px solid var(--bubble-border);
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease;
}

.page-nav a:hover{
  color: var(--primary);
  background: #f0f2f6;
  border-color: #d8dee6;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
}

/* =========================================================
   18) BLOCS CADRE / SECTIONS BLANCHES
   ========================================================= */
.section-frame{
  margin: 28px 0;
  padding: 32px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
}

/* =========================================================
   19) INFOS PRATIQUES / CONTACT / CARTE
   ========================================================= */
/* 19A) WRAPPER */
.infos-pratiques-wrapper{
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 24px;
  background: #fbfcfb;
  border: 2px solid rgba(79,122,106,0.34);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.infos-pratiques-map{
  min-width: 0;
  border-radius: 12px;
  overflow: hidden;
}

.infos-pratiques-map h3{
  margin: 0 0 10px;
  font-size: 1rem;
  color: var(--text-muted);
}

/* 19B) CABINET */
.cabinet-details{
  margin-top: 18px;
  margin-bottom: 24px;
  padding: 20px 20px 18px;
  background: #fff;
  border: 2px solid rgba(79,122,106,0.30);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.04);
}

.cabinet-details h3{
  margin: 0 0 8px;
}

.cabinet-details ul{
  display: inline-block;
  margin: 0 auto 16px;
  padding-left: 18px;
  text-align: left;
}

.cabinet-details li{
  margin: 6px 0;
}

.cabinet-details .cta-inline-text{
  margin-top: 18px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.cabinet-details .cta-dual-actions{
  justify-content: center;
  margin-top: 12px;
  gap: 14px;
}

/* 19C) CONTACT */
.contact-note{
  display: inline-block;
  margin-top: 6px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.cta-contact-block{
  text-align: center;
}

.cta-contact-top{
  margin-bottom: 20px;
}

.cta-contact-bottom{
  max-width: 520px;
  margin: 0 auto;
  padding-top: 22px;
  text-align: left;
  border-top: 1px solid rgba(79,122,106,0.16);
}

.cta-contact-bottom h3{
  margin: 0 0 14px;
  font-size: 1.15rem;
  color: var(--text-main);
}

.contact-lines p,
.cta-contact-bottom p{
  margin: 0 0 10px;
}

.cta-contact-bottom .contact-note{
  display: block;
  margin-top: 14px;
}

.contact-urgent{
  margin-top: 8px;
  font-size: 0.95rem;
}

/* 19D) ZONE / CARTE */
.local-zone{
  max-width: var(--reading-width);
  margin: 30px auto 0;
  padding: 20px;
  background: #f8f9fb;
  border-radius: 8px;
}

.local-zone h2{
  margin-bottom: 10px;
  font-size: 1.4rem;
  color: var(--primary-dark);
}

.zone-desservie{
  margin-top: 8px;
  font-size: 0.95rem;
  color: #555;
}

.map-embed{
  position: relative;
  width: 100%;
  min-height: 450px;
  overflow: hidden;
  background: var(--bg-soft);
  border-radius: 14px;
}

.map-placeholder{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  border: 1px solid var(--border-soft);
}

.map-placeholder-inner{
  max-width: 420px;
  padding: 24px;
  text-align: center;
}

.map-placeholder-note{
  margin: 0 0 16px;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--text-muted);
}

.map-embed iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* =========================================================
   20) PHOTOS DU CABINET
   ========================================================= */
.cabinet-photos{
  padding: 68px 20px 76px;
  background: linear-gradient(to bottom, #fcfcfa, #f7f8f6);
  border-top: 1px solid rgba(79,122,106,0.10);
}

.cabinet-photos h2{
  margin-bottom: 12px;
  text-align: center;
}

.cabinet-photos-intro{
  max-width: 620px;
  margin: 0 auto 38px;
  text-align: center;
  color: var(--text-muted);
}

.photos-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.photo-card{
  margin: 0;
  overflow: hidden;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.photo-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.photo-card img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.photo-card:hover img{
  transform: scale(1.02);
}

.photo-card figcaption{
  padding: 16px 18px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary-dark);
  background: rgba(255,255,255,0.98);
  border-top: 1px solid rgba(79,122,106,0.08);
}

.photo-1{
  object-position: center 72%;
}

.photo-2{
  object-position: center 48%;
}

.photo-3{
  object-position: center 58%;
}

.cabinet-photos-note{
  max-width: 760px;
  margin: 22px auto 0;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
  color: var(--text-muted);
}

/* =========================================================
   21) STICKY CTA MOBILE
   ========================================================= */
.sticky-cta,
.sticky-cta.is-hidden{
  display: none;
}

/* =========================================================
   22) FOOTER / FAQ / 404
   ========================================================= */
.site-footer{
  padding-top: 8px;
  text-align: center;
}

.footer-note{
  margin-bottom: 10px;
  font-size: 0.85rem;
  text-align: center;
  color: #666;
}

.footer-line,
.footer-links{
  margin: 0 0 10px;
  text-align: center;
}

.faq-section h3{
  margin-top: 32px;
}

#faq-orientation h3,
#faq-orientation p,
.page-404 .cta-inline{
  max-width: var(--reading-width);
  margin-left: auto;
  margin-right: auto;
}

#faq-orientation h3{
  padding-left: 0;
}

/* =========================================================
   23) IMAGES INTERNES
   ========================================================= */
/* 23A) BASE */
.section-image{
  max-width: var(--reading-width);
  margin: 42px auto 34px;
}

.section-image img{
  width: 100%;
  height: 420px;
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.96);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
}

/* 23B) VARIANTES */
.section-image--framed{
  max-width: var(--reading-width);
  margin-left: auto;
  margin-right: auto;
}

.section-image--framed img{
  width: 100%;
  display: block;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.section-image--portrait-soft{
  max-width: 560px;
  margin: 32px auto 28px;
}

.section-image--portrait-soft img{
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 45%;
  opacity: 0.96;
}

/* 23C) CONTEXTES */
.cabinet-details .section-image,
.section-process .section-image{
  margin: 18px 0 0;
}

/* =========================================================
   24) BLOC EN SAVOIR PLUS
   ========================================================= */
.read-more-box{
  max-width: var(--reading-width);
  margin: 22px auto 0;
  padding: 0;
  overflow: hidden;
  background: #fbfcfb;
  border: 1px solid rgba(79,122,106,0.20);
  border-radius: 16px;
}

.read-more-box summary{
  list-style: none;
  padding: 16px 18px;
  font-weight: 600;
  color: var(--primary-dark);
  cursor: pointer;
  text-decoration: none;
  background: rgba(79,122,106,0.06);
  border-top: 1px solid rgba(79,122,106,0.10);
  transition: background 0.2s ease;
}

.read-more-box summary:hover{
  background: rgba(79,122,106,0.09);
}

.read-more-box summary::-webkit-details-marker{
  display: none;
}

.read-more-box summary::after{
  content: "+";
  float: right;
  font-size: 1.2rem;
  line-height: 1;
}

.read-more-box[open] summary::after{
  content: "−";
}

.section-intro-strong{
  margin-bottom: 16px;
  font-weight: 500;
  color: var(--primary-dark);
}

.read-more-content{
  padding: 18px 18px 6px;
}

.read-more-content p{
  margin-bottom: 16px;
}

/* =========================================================
   25) RESPONSIVE — DESKTOP INFOS PRATIQUES (≥ 900px)
   ========================================================= */
@media (min-width: 900px){
  .infos-pratiques-wrapper{
    flex-direction: row;
    align-items: stretch;
    gap: 22px;
  }

  .infos-pratiques-text,
  .infos-pratiques-map{
    width: 50%;
  }

  .infos-pratiques-map{
    display: flex;
    align-self: stretch;
  }

  .infos-pratiques-map iframe{
    width: 100%;
    height: 100%;
    min-height: 360px;
    display: block;
    border: 0;
  }
}

/* =========================================================
   26) RESPONSIVE — LARGE TABLETTE (≤ 899px)
   ========================================================= */
@media (max-width: 899px){
  .map-embed,
  .map-placeholder{
    min-height: 260px;
  }

  .infos-pratiques-map iframe{
    width: 100%;
    height: 260px !important;
    display: block;
    border: 0;
  }
}

/* =========================================================
   27) RESPONSIVE — TABLETTE / MOBILE LARGE (≤ 768px)
   ========================================================= */
@media (max-width: 768px){
  /* 27A) NAVIGATION */
  .site-nav{
    padding: 0;
    text-align: left;
  }

  .nav-mobile-bar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .menu-toggle{
    display: block;
  }

  .nav-rdv-mobile{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin: 0;
    padding: 10px 14px;
    font-weight: 700;
    color: var(--primary);
    background: #fff;
    border: 1px solid var(--border-mobile-strong);
    border-radius: 10px;
    text-decoration: none;
  }

  .nav-links{
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: none;
    padding: 0;
    background: #fff;
    border-top: 1px solid var(--border-soft);
    box-shadow: 0 10px 24px rgba(0,0,0,0.05);
  }

  .nav-links.is-open{
    display: flex;
  }

  .nav-links a{
    display: block;
    width: 100%;
    min-height: 52px;
    margin: 0;
    padding: 18px 20px;
    font-size: 1.08rem;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    border-radius: 0;
    text-decoration: none;
  }

  .nav-rdv-desktop{
    display: none !important;
  }

  /* 27B) HERO */
  .hero{
    background:
      linear-gradient(to bottom, rgba(243,246,244,0.58), rgba(243,246,244,0.22)),
      url("/images/herox-mobile.jpg");
    background-repeat: no-repeat;
    background-position: center 70%;
    background-size: cover;
  }

  .hero-home{
    padding-top: 38px;
    padding-bottom: 26px;
    background:
      linear-gradient(to bottom, rgba(243,246,244,0.52), rgba(243,246,244,0.12)),
      url("/images/hero-mobile.jpg");
    background-repeat: no-repeat;
    background-position: center 84%;
    background-size: cover;
  }

  .hero-home::before{
    background: rgba(255,255,255,0.01);
  }

  .hero-home h1{
    font-size: 1.7rem;
  }

  .hero-kicker{
    font-size: 0.86rem;
  }

  .hero-trust{
    margin-top: 18px;
    gap: 8px;
  }

  .hero-trust span{
    padding: 8px 10px;
    font-size: 0.84rem;
  }

  .hero-home .hero-buttons{
    margin-top: 18px;
  }

  .hero-home .hero-cta-note{
    margin-top: 12px;
  }

  .hero-home .btn-primary,
  .hero-home .btn-secondary{
    min-width: 100%;
  }

  .hero-cta-note{
    max-width: 300px;
    margin: 14px auto 0;
    padding: 12px 14px;
    font-size: 0.96rem;
    line-height: 1.5;
    color: #3f3f3f;
    text-align: center;
    background: rgba(255,255,255,0.58);
    border: 1px solid rgba(255,255,255,0.34);
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.05);
    text-shadow: none;
  }

  .hero-home .hero-cta-note{
    background: rgba(255,255,255,0.68);
    border: 1px solid rgba(255,255,255,0.40);
  }

  .hero:not(.hero-home) .hero-cta-note{
    background: rgba(255,255,255,0.64);
    border: 1px solid rgba(255,255,255,0.36);
  }

  .page-home .hero-subtitle,
  .page-accompagnements .hero-subtitle,
  .page-orientation .hero-note,
  .page-hero-readable .hero-subtitle,
  .page-hero-readable .hero-note{
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    color: #2f2f2f;
    position: relative;
    z-index: 1;
    text-shadow:
      0 1px 10px rgba(255,255,255,0.95),
      0 0 3px rgba(255,255,255,0.90);
  }

  .page-hero-readable .hero-subtitle,
  .page-hero-readable .hero-note{
    padding: 4px 8px;
  }

  .page-orientation .hero-note{
    margin-top: 12px;
  }

  /* 27C) HOMEPAGE ENTRY */
  .section-entry{
    padding: 42px 20px 22px;
  }

  .entry-intro{
    margin: 0 auto 24px;
    font-size: 1rem;
  }

  .entry-grid{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .entry-card{
    min-height: auto;
    padding: 18px 18px 16px;
    border: 1.5px solid rgba(79,122,106,0.30);
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  }

  .entry-label{
    margin-bottom: 12px;
    padding: 6px 11px;
    font-size: 0.78rem;
  }

  .entry-card h3{
    margin-bottom: 10px;
    font-size: 1.02rem;
    line-height: 1.28;
    min-height: 0;
  }

  .entry-card p{
    display: none;
  }

  .entry-link{
    display: block;
    margin-top: 0;
    font-size: 0.98rem;
    text-align: right;
  }

  /* 27D) CABINET PHOTOS */
  .cabinet-photos{
    padding: 52px 20px 56px;
  }

  .photos-grid{
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .photo-card{
    border-radius: 18px;
  }

  .photo-card img{
    height: 250px;
  }

  .photo-card figcaption{
    padding: 14px 16px;
    font-size: 0.9rem;
  }

  /* 27E) IMAGES INTERNES */
  .section-image{
    max-width: 100%;
    margin: 22px 16px 18px;
  }

  .section-image img,
  .section-image--framed img{
    height: 300px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }

  .section-image--portrait-soft img{
    height: 260px;
    object-position: center 35%;
  }
}

/* =========================================================
   28) RESPONSIVE — MOBILE (≤ 720px)
   ========================================================= */
@media (max-width: 720px){
  /* 28A) BASE MOBILE */
  body{
    padding-bottom: 74px;
  }

  .site-nav .label-desktop{
    display: none;
  }

  .site-nav .label-mobile{
    display: inline;
  }

  section{
    position: relative;
    padding: 16px 0;
  }

  section:not(:last-child)::after{
    content: "";
    display: block;
    width: 60px;
    height: 1px;
    margin: 40px auto 0;
    background: rgba(0,0,0,0.08);
  }

  h2{
    margin-top: 6px;
    margin-bottom: 0.9rem;
    line-height: 1.25;
  }

  h3{
    margin-top: 1.4rem;
    margin-bottom: 0.6rem;
    line-height: 1.3;
  }

  ul,
  ol{
    margin: 0 0 1rem;
    padding-left: 1.2rem;
  }

  li{
    margin-bottom: 0.5rem;
  }

  /* 28B) HERO / BOUTONS */
  .hero{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .hero-buttons{
    margin-top: 1.6rem;
    gap: 10px;
  }

  .btn,
  .btn-primary,
  .btn-secondary{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
  }

  /* 28C) MASQUAGES MOBILE */
  .page-nav,
  .cta-inline .cta-dual-actions,
  .cta-end .cta-dual-actions,
  .cta-inline .cta-actions,
  .cta-inline-btn{
    display: none;
  }

  /* 28D) HOMEPAGE ENTRY */
  .section-entry{
    padding: 16px 0 10px;
  }

  .entry-title{
    margin: 0 0 10px;
    font-size: 1.3rem;
  }

  .entry-grid{
    gap: 8px;
  }

  .entry-card{
    margin-bottom: 1.6rem;
    padding: 12px 14px;
    border-radius: 14px;
  }

  .entry-card:last-child{
    margin-bottom: 0;
  }

  .entry-card h3{
    margin: 0;
    font-size: 0.98rem;
  }

  /* 28E) STICKY CTA */
  .sticky-cta{
    display: flex;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 9999;
    gap: 10px;
    padding: 10px;
    background: rgba(255,255,255,0.92);
    border: 1px solid var(--border-mobile-strong);
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.3s ease;
  }

  .sticky-cta.visible{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .sticky-btn{
    flex: 1;
    padding: 12px;
    font-size: 0.98rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
  }

  .sticky-rdv{
    color: #fff;
    background: var(--primary);
  }

  .sticky-call{
    color: var(--primary);
    background: #fff;
    border: 1px solid var(--primary);
  }

  /* 28F) CTA / CONTACT */
  .impact-list{
    padding-left: 0;
  }

  .cta-inline{
    margin: 14px auto 10px;
    padding: 14px;
  }

  .cta-inline-text{
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .cta-contact-top{
    margin-bottom: 18px;
  }

  .cta-dual-actions,
  .cta-contact-block .cta-dual-actions{
    flex-direction: column;
    align-items: stretch;
  }

  .cta-call-btn{
    min-width: 0;
  }

  .cta-contact-bottom{
    max-width: 100%;
  }

  /* 28G) CARTE / READ MORE */
  .infos-pratiques-map iframe{
    height: 240px !important;
  }

  .read-more-box{
    margin-top: 18px;
    border-radius: 14px;
  }

  .read-more-box summary{
    padding: 14px 16px;
    font-size: 0.98rem;
  }

  .read-more-content{
    padding: 14px 16px 4px;
  }
}

/* =========================================================
   29) RESPONSIVE — PETIT MOBILE (≤ 600px)
   ========================================================= */
@media (max-width: 600px){
  body{
    padding-top: 70px;
  }

  section{
    scroll-margin-top: 105px;
  }

  .site-nav{
    padding: 0;
    white-space: normal;
    overflow: visible;
  }

  .site-nav a{
    font-size: 1rem;
    background: transparent;
    border: none;
    border-radius: 0;
  }

  .hero h1{
    max-width: 820px;
    margin-bottom: 12px;
    font-size: 1.35rem;
    line-height: 1.15;
  }

  .hero-subtitle{
    font-size: 1rem;
  }

  .patient-phrase-intro{
    margin: 10px auto;
    padding: 10px 12px;
  }
}

/* =========================================================
   30) RESPONSIVE — TRÈS PETIT MOBILE (≤ 480px)
   ========================================================= */
@media (max-width: 480px){
  .hero-buttons{
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary{
    text-align: center;
  }
}
