:root {
  --vert-ophta: #2F5540;
  --vert-profond: #1C3B28;
  --vert-noir: #0A1B12;
  --creme: #F5F1EA;
  --blanc-lin: #FAFAF7;
  --encre: #1A1A1A;
  --sauge: #7A9381;
  --sable: #D4C5A9;
  --jade: #B8CCB5;
  --urgence: #B85C4A;
  --urgence-dark: #9a4a3a;
  --smooth: cubic-bezier(0.16, 1, 0.3, 1);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--blanc-lin);
  color: var(--encre);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === ACCESSIBILITÉ — focus clavier + skip link === */
/* On masque l'outline par défaut (pour la souris), on ne le rend visible
   QUE pour la navigation clavier via :focus-visible (RGAA 10.7). */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--sauge);
  outline-offset: 3px;
  border-radius: 6px;
}
/* Surfaces dark : focus en jade pour contraster */
.search-modal__panel :focus-visible,
footer :focus-visible,
.urgence-block :focus-visible,
.silent-cta :focus-visible,
.phare-cta :focus-visible {
  outline-color: var(--jade);
}
/* Skip link — RGAA 12.7. Caché à l'œil, révélé au focus clavier. */
.skip-link {
  position: fixed;
  top: 0; left: 50%;
  transform: translate(-50%, -120%);
  z-index: 1000;
  background: var(--vert-ophta);
  color: var(--creme);
  padding: 0.85rem 1.5rem;
  border-radius: 0 0 12px 12px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(28,59,40,0.25);
  transition: transform 0.2s var(--smooth);
}
.skip-link:focus { transform: translate(-50%, 0); }
@media (prefers-reduced-motion: reduce) {
  .skip-link { transition: none; }
}
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 2rem; }
.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--sauge);
  font-weight: 600;
}
.serif { font-family: 'Fraunces', Georgia, serif; font-weight: 300; }
em.accent { font-style: italic; color: var(--vert-ophta); font-weight: 300; }

/* HEADER */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1.25rem 0;
  backdrop-filter: blur(12px);
  background: rgba(250, 250, 247, 0.85);
  border-bottom: 1px solid rgba(47, 85, 64, 0.08);
}
header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-mark {
  width: 44px; height: 44px;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  color: var(--vert-profond);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.logo-text strong { font-weight: 800; font-size: 0.82rem; letter-spacing: 0.1em; }
nav ul { list-style: none; display: flex; gap: 2.25rem; }
nav a {
  color: var(--encre);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.3s var(--smooth);
}
nav a:hover { opacity: 1; color: var(--vert-ophta); }
nav a.active { opacity: 1; color: var(--vert-ophta); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s var(--smooth);
  border: none;
  cursor: pointer;
}
.btn-primary { background: var(--vert-ophta); color: var(--creme); }
.btn-primary:hover { background: var(--vert-profond); transform: translateY(-2px); }
.btn-secondary {
  background: transparent;
  color: var(--vert-profond);
  border: 1.5px solid var(--vert-ophta);
}
.btn-secondary:hover { background: var(--vert-ophta); color: var(--creme); }
.btn-urgence { background: var(--urgence); color: var(--creme); }
.btn-urgence:hover { background: var(--urgence-dark); transform: translateY(-2px); }
.btn-ghost-light {
  background: transparent; color: var(--creme); border: 1.5px solid rgba(245,241,234,0.4);
}
.btn-ghost-light:hover { background: rgba(245,241,234,0.12); }

/* BLUR */
.blur-circle {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
}

/* SECTIONS */
section.band { padding: 8rem 0; }
.band-creme { background: var(--creme); }
.band-lin { background: var(--blanc-lin); }
.section-head { display: flex; align-items: end; justify-content: space-between; flex-wrap: wrap; gap: 2rem; margin-bottom: 4rem; }
.h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--vert-profond);
  letter-spacing: -0.015em;
  max-width: 32ch;
}
.h2 em { color: var(--vert-ophta); font-style: italic; }

/* PAGE HERO */
.page-hero { position: relative; overflow: hidden; padding: 10rem 0 5rem; }
.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 1.05;
  color: var(--vert-profond);
  max-width: 1000px;
  margin-top: 1.5rem;
  letter-spacing: -0.02em;
}
.page-hero h1 em { color: var(--vert-ophta); font-style: italic; }
.page-hero .lead { margin-top: 2rem; font-family: 'Fraunces', serif; font-size: 1.25rem; color: rgba(26,26,26,0.7); max-width: 800px; line-height: 1.6; }

/* ARROW LINK */
.arrow-link { color: var(--vert-ophta); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: gap 0.3s var(--smooth); }
.arrow-link:hover { gap: 1rem; }

/* BACK LINK */
.back-link { color: var(--sauge); text-decoration: none; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 0.5rem; transition: color 0.3s; }
.back-link:hover { color: var(--vert-ophta); }

/* FOOTER */
footer {
  background: var(--vert-profond);
  color: var(--creme);
  padding: 5rem 0 3rem;
  border-radius: 32px 32px 0 0;
  margin-top: 4rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
footer h4 { font-family: 'Fraunces', serif; font-weight: 400; font-size: 1rem; margin-bottom: 1rem; color: rgba(245,241,234,0.6); text-transform: uppercase; letter-spacing: 0.1em; }
footer a { color: rgba(245,241,234,0.85); text-decoration: none; display: block; margin-bottom: 0.5rem; font-size: 0.95rem; }
footer a:hover { color: var(--creme); }
.footer-bottom { margin-top: 4rem; padding-top: 2rem; border-top: 1px solid rgba(245,241,234,0.15); display: flex; justify-content: space-between; font-size: 0.8rem; color: rgba(245,241,234,0.5); flex-wrap: wrap; gap: 1rem; }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; font-family: 'Inter', sans-serif; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; line-height: 1.3; color: var(--creme); }
.footer-lead { color: rgba(245,241,234,0.65); font-size: 0.95rem; line-height: 1.7; max-width: 32ch; }

/* CHIPS */
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip { padding: 0.4rem 1rem; border-radius: 999px; background: rgba(184,204,181,0.3); color: var(--vert-profond); font-size: 0.85rem; }

/* CARDS */
.card {
  background: var(--blanc-lin);
  border-radius: 28px;
  padding: 2.5rem;
  border: 1px solid rgba(47,85,64,0.08);
  transition: all 0.5s var(--smooth);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -20px rgba(47,85,64,0.15); }

/* FAQ */
details {
  border-bottom: 1px solid rgba(47,85,64,0.15);
  padding: 1.5rem 0;
}
details summary {
  cursor: pointer;
  list-style: none;
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  color: var(--vert-profond);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: '+';
  color: var(--vert-ophta);
  font-size: 1.5rem;
  transition: transform 0.3s;
}
details[open] summary::after { transform: rotate(45deg); }
details p { margin-top: 1rem; color: rgba(26,26,26,0.75); line-height: 1.7; }

/* Override: pages spécialités utilisant un <span class="plus"> custom dans <summary>.
   Évite l'affichage en double du signe + (default ::after + span manuel). */
.faq-item summary::after { content: none; }

/* HEADER SEARCH BUTTON (loupe) */
.nav-search-btn {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: none; cursor: pointer;
  color: var(--vert-profond); border-radius: 999px;
  transition: background 0.2s var(--smooth), color 0.2s var(--smooth);
  flex-shrink: 0;
}
.nav-search-btn:hover { background: rgba(47,85,64,0.08); color: var(--vert-ophta); }
.nav-search-btn:focus-visible { outline: 2px solid var(--sauge); outline-offset: 2px; }

/* SEARCH MODAL (overlay centré) */
.search-modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: flex-start; justify-content: center;
  padding: 7vh 1.25rem 1.25rem;
}
.search-modal[hidden] { display: none; }
.search-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(15, 31, 21, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: fadeIn 0.2s var(--smooth);
}
.search-modal__panel {
  position: relative;
  width: 100%; max-width: 600px;
  background: var(--blanc-lin);
  border-radius: 24px;
  box-shadow: 0 30px 80px -20px rgba(15,31,21,0.5);
  overflow: hidden;
  animation: panelIn 0.25s var(--smooth);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes panelIn { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
.search-modal__head {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid rgba(47,85,64,0.1);
}
.search-modal__icon { color: var(--sauge); flex-shrink: 0; }
.search-modal__input {
  flex: 1; min-width: 0;
  background: transparent; border: none; outline: none;
  font-family: inherit; font-size: 1.05rem;
  color: var(--encre);
}
.search-modal__input::placeholder { color: rgba(26,26,26,0.4); }
.search-modal__close {
  width: 36px; height: 36px; flex-shrink: 0;
  background: transparent; border: none; cursor: pointer;
  color: var(--sauge); border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.search-modal__close:hover { background: rgba(47,85,64,0.08); color: var(--vert-ophta); }
.search-modal__results {
  max-height: 50vh; overflow-y: auto;
  padding: 0.5rem 0;
}
.search-modal__results:empty { display: none; }
.search-modal__item {
  display: flex; flex-direction: column; gap: 0.2rem;
  padding: 0.85rem 1.25rem;
  text-decoration: none; color: var(--encre);
  border-bottom: 1px solid rgba(47,85,64,0.06);
  transition: background 0.15s;
}
.search-modal__item:last-child { border-bottom: none; }
.search-modal__item:hover, .search-modal__item:focus { background: var(--creme); outline: none; }
.search-modal__item-title {
  font-family: 'Fraunces', serif; font-weight: 400; font-size: 1rem;
  color: var(--vert-profond);
}
.search-modal__item-meta {
  font-size: 0.78rem; color: rgba(26,26,26,0.55);
  letter-spacing: 0.01em;
}
.search-modal__empty {
  padding: 1.5rem 1.25rem;
  text-align: center;
  color: rgba(26,26,26,0.5);
  font-size: 0.92rem;
}
.search-modal__hint {
  padding: 0.75rem 1.25rem;
  border-top: 1px solid rgba(47,85,64,0.08);
  font-size: 0.72rem; color: rgba(26,26,26,0.5);
  background: rgba(47,85,64,0.03);
}
.search-modal__hint kbd {
  display: inline-block;
  padding: 0.1rem 0.4rem;
  background: var(--blanc-lin);
  border: 1px solid rgba(47,85,64,0.15);
  border-radius: 4px;
  font-family: inherit; font-size: 0.7rem;
  color: var(--vert-profond);
}

/* ============== SCROLL REVEALS ============== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s var(--smooth), transform 1s var(--smooth);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-fade {
  opacity: 0;
  transition: opacity 1.2s var(--smooth);
}
.reveal-fade.is-visible { opacity: 1; }

.reveal-stagger [data-reveal-child] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--smooth), transform 0.9s var(--smooth);
}
.reveal-stagger.is-visible [data-reveal-child] {
  opacity: 1;
  transform: translateY(0);
}

.reveal-mask {
  position: relative;
  overflow: hidden;
}
.reveal-mask > * {
  transform: translateY(110%);
  transition: transform 1.1s var(--smooth);
  display: inline-block;
}
.reveal-mask.is-visible > * { transform: translateY(0); }

/* --- Word-by-word reveal (MyHealthPrac style) --- */
.reveal-words .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  line-height: inherit;
  /* Avoid clipping ascenders / accents / italic overshoots */
  padding: 0.18em 0.05em 0.08em;
  margin: -0.18em -0.05em -0.08em;
}
.reveal-words .word-inner {
  display: inline-block;
  transform: translateY(105%);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.9s ease;
  will-change: transform, opacity;
}
.reveal-words.is-visible .word-inner {
  transform: translateY(0);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-fade, .reveal-mask > *, .reveal-stagger [data-reveal-child] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============== VIDEO BACKGROUND SECTION ============== */
.video-quote {
  position: relative;
  overflow: hidden;
  margin: 5rem 2rem;
  border-radius: 32px;
  min-height: 520px;
  display: flex;
  align-items: center;
  isolation: isolate;
}
.video-quote video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  background: var(--vert-profond);
}
.video-quote .vq-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(28,59,40,0.78) 0%, rgba(28,59,40,0.55) 55%, rgba(28,59,40,0.82) 100%);
  z-index: 1;
}
.video-quote .vq-content {
  position: relative;
  z-index: 2;
  padding: 6rem 4rem;
  max-width: 900px;
  color: var(--creme);
}
.video-quote .vq-content .eyebrow { color: var(--jade); }
.video-quote blockquote {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  line-height: 1.2;
  margin-top: 1.5rem;
  letter-spacing: -0.01em;
}
.video-quote cite {
  display: block;
  margin-top: 2.5rem;
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,241,234,0.75);
}
@media (max-width: 700px) {
  .video-quote { margin: 3rem 1rem; min-height: 420px; }
  .video-quote .vq-content { padding: 3rem 2rem; }
}

/* Variante sans vidéo — fond vert profond texturé (dégradé sobre + halos) */
.video-quote--solid {
  background:
    radial-gradient(ellipse at 88% 12%, rgba(184, 204, 181, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 88%, rgba(122, 147, 129, 0.12) 0%, transparent 50%),
    linear-gradient(135deg, #1C3B28 0%, #15301F 55%, #1A3724 100%);
}
.video-quote--solid .vq-overlay { display: none; }
/* Ligne décorative fine (accent jade) */
.video-quote--solid::before {
  content: '';
  position: absolute;
  top: 3rem;
  left: 4rem;
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, var(--jade), transparent);
  z-index: 2;
}
/* Halo diffus supplémentaire côté titre */
.video-quote--solid::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--vert-ophta) 0%, transparent 65%);
  opacity: 0.35;
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 700px) {
  .video-quote--solid::before { top: 1.5rem; left: 2rem; }
  .video-quote--solid::after { width: 260px; height: 260px; top: -80px; right: -80px; }
}

/* Variante avec chiffres clés intégrés */
.video-quote--with-stats { min-height: 620px; }
.video-quote--with-stats .vq-content { max-width: 1180px; width: 100%; padding: 5rem 4rem; }
.video-quote--with-stats blockquote { font-size: clamp(1.5rem, 2.8vw, 2.5rem); max-width: 800px; }

.vq-stats {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(245, 241, 234, 0.18);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.vq-stats .trust-num {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1;
  color: var(--jade);
  letter-spacing: -0.01em;
}
.vq-stats .trust-label {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: rgba(245, 241, 234, 0.7);
  letter-spacing: 0.02em;
}
@media (max-width: 900px) {
  .vq-stats { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
}
@media (max-width: 700px) {
  .video-quote--with-stats { min-height: 0; }
  .video-quote--with-stats .vq-content { padding: 3rem 2rem; }
  .vq-stats { margin-top: 2.5rem; padding-top: 2rem; }
}

/* ============== CABINET BANNER (Google rating + Ouvert/Fermé fusionnés) ============== */
.cabinet-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: var(--blanc-lin);
  border: 1px solid rgba(47, 85, 64, 0.14);
  border-radius: 999px;
  text-decoration: none;
  color: var(--vert-profond);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s var(--smooth), transform 0.2s var(--smooth), box-shadow 0.2s var(--smooth);
}
.cabinet-banner:hover {
  background: var(--creme);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(47, 85, 64, 0.1);
}
.cb-google { display: inline-flex; align-items: center; gap: 0.3rem; }
.cb-g-logo { display: block; flex-shrink: 0; }
.cb-rating { font-weight: 700; font-size: 0.88rem; color: var(--vert-profond); }
.cb-star { color: var(--vert-ophta); font-size: 0.85rem; line-height: 1; }
.cb-count { color: rgba(26, 26, 26, 0.55); font-size: 0.74rem; font-weight: 400; }
.cb-sep { color: rgba(26, 26, 26, 0.28); font-weight: 400; }
.cb-status { display: inline-flex; align-items: center; gap: 0.4rem; }
.cb-status .status-dot,
.cabinet-banner--solo .status-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #B8B8B8;
  flex-shrink: 0;
}
.cb-status.is-open .status-dot,
.cabinet-banner--solo.is-open .status-dot {
  background: #2F9E5F;
  box-shadow: 0 0 0 3px rgba(47, 158, 95, 0.18);
  animation: status-pulse 2.4s ease-in-out infinite;
}
.cb-status.is-closed .status-dot,
.cabinet-banner--solo.is-closed .status-dot {
  background: #C44536;
}
.cb-status .status-label,
.cabinet-banner--solo .status-label {
  font-weight: 500;
  color: var(--vert-profond);
}
@keyframes status-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(47, 158, 95, 0.18); }
  50%      { box-shadow: 0 0 0 6px rgba(47, 158, 95, 0.05); }
}
@media (prefers-reduced-motion: reduce) {
  .cb-status.is-open .status-dot { animation: none; }
}
/* Sur écran un peu étroit : on cache le compteur d'avis pour libérer de la place */
@media (max-width: 1180px) {
  .cabinet-banner .cb-count { display: none; }
}
/* Sur mobile : la banderole est masquée du header (le burger + le FAB RDV
   prennent le relais). L'info Google reste accessible via le footer. */
@media (max-width: 860px) {
  header .cabinet-banner { display: none; }
}

/* ============== FAB — Prendre RDV (visible uniquement sur mobile) ============== */
.fab-rdv {
  display: none; /* masqué par défaut, activé en mobile */
  position: fixed;
  z-index: 110;
  bottom: 1.1rem;
  right: 1.1rem;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.25rem;
  background: var(--vert-ophta);
  color: var(--creme);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 10px 28px -6px rgba(28, 59, 40, 0.45), 0 4px 10px rgba(28, 59, 40, 0.18);
  transition: transform 0.2s var(--smooth), box-shadow 0.2s var(--smooth), background 0.2s var(--smooth);
}
.fab-rdv:hover,
.fab-rdv:focus-visible {
  background: var(--vert-profond);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -6px rgba(28, 59, 40, 0.55), 0 6px 12px rgba(28, 59, 40, 0.22);
}
.fab-rdv svg { display: block; flex-shrink: 0; }
.fab-rdv__dot {
  position: absolute;
  top: 8px; right: 14px;
  width: 8px; height: 8px;
  border-radius: 999px;
  background: #2F9E5F;
  box-shadow: 0 0 0 2px var(--vert-ophta);
}
.fab-rdv.is-closed .fab-rdv__dot { background: #C44536; }
@media (max-width: 860px) {
  .fab-rdv { display: inline-flex; }
}
@media (max-width: 380px) {
  .fab-rdv { padding: 0.75rem 1rem; font-size: 0.82rem; }
  .fab-rdv__label-long { display: none; }
}

/* ============== COOKIE BANNER (RGPD/CNIL — V2-2) ============== */
.cookie-banner {
  position: fixed;
  z-index: 200;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  background: var(--vert-profond);
  color: var(--creme);
  border-radius: 14px;
  box-shadow: 0 18px 48px -12px rgba(10, 27, 18, 0.55), 0 6px 18px rgba(10, 27, 18, 0.25);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s var(--smooth), transform 0.35s var(--smooth);
}
.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.15rem 1.4rem;
}
.cookie-banner__text { flex: 1; min-width: 0; }
.cookie-banner__title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  color: var(--creme);
}
.cookie-banner__desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(245, 241, 234, 0.85);
}
.cookie-banner__desc a {
  color: var(--jade);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__desc a:hover,
.cookie-banner__desc a:focus-visible { color: var(--creme); }
.cookie-banner__actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}
.cookie-banner__btn {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s var(--smooth), color 0.2s var(--smooth), border-color 0.2s var(--smooth), transform 0.2s var(--smooth);
}
.cookie-banner__btn--primary {
  background: var(--creme);
  color: var(--vert-profond);
}
.cookie-banner__btn--primary:hover,
.cookie-banner__btn--primary:focus-visible {
  background: var(--blanc-lin);
  transform: translateY(-1px);
}
.cookie-banner__btn--secondary {
  background: transparent;
  color: var(--creme);
  border-color: rgba(245, 241, 234, 0.45);
}
.cookie-banner__btn--secondary:hover,
.cookie-banner__btn--secondary:focus-visible {
  background: rgba(245, 241, 234, 0.08);
  border-color: rgba(245, 241, 234, 0.75);
}
@media (max-width: 720px) {
  .cookie-banner { bottom: 0.6rem; left: 0.6rem; right: 0.6rem; }
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
    padding: 1rem 1.1rem;
  }
  .cookie-banner__actions { justify-content: flex-end; }
  .cookie-banner__btn { flex: 1; padding: 0.7rem 0.9rem; }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-banner { transition: opacity 0.2s linear; transform: none; }
  .cookie-banner.is-visible { transform: none; }
}

/* ============== BURGER / NAV MOBILE ============== */
.nav-burger {
  display: none;
  background: transparent;
  border: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  z-index: 120;
}
.nav-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--vert-profond);
  border-radius: 2px;
  transition: transform 0.3s var(--smooth), opacity 0.2s;
  transform-origin: center;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
.nav-cta-mobile { display: none; }

/* ============== MOBILE RESPONSIVE ============== */
@media (max-width: 860px) {
  .container { padding: 0 1.25rem; }
  .container-narrow { padding: 0 1.25rem; }

  /* Nav: burger + drawer */
  .nav-burger { display: flex; }
  .nav-cta-desktop { display: none; }
  .nav-cta-mobile { display: block; margin-top: 1.5rem; }
  .nav-cta-mobile a {
    display: inline-block;
    background: var(--vert-ophta);
    color: var(--creme);
    padding: 1rem 2rem;
    border-radius: 999px;
    font-weight: 600;
  }
  header nav {
    position: fixed;
    top: 0; right: 0;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--blanc-lin);
    padding: 6rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.45s var(--smooth);
    box-shadow: -20px 0 60px -20px rgba(0,0,0,0.15);
    z-index: 110;
    overflow-y: auto;
  }
  header nav.is-open { transform: translateX(0); }
  header nav ul { flex-direction: column; gap: 0; }
  header nav ul li { border-bottom: 1px solid rgba(47,85,64,0.08); }
  header nav ul li:last-child { border-bottom: none; }
  header nav ul li a {
    display: block;
    padding: 1.1rem 0;
    font-size: 1.1rem;
    font-family: 'Fraunces', serif;
    font-weight: 400;
    color: var(--vert-profond);
    opacity: 1;
  }
  header { padding: 1rem 0; }
  .logo-text { font-size: 0.75rem; }
  .logo-mark { width: 36px; height: 36px; }
  .logo-text strong { display: block; }

  /* Sections */
  section.band { padding: 4.5rem 0; }
  .section-head { margin-bottom: 2.5rem; flex-direction: column; align-items: flex-start; }
  .h2 { font-size: clamp(1.75rem, 6vw, 2.25rem); }

  /* Page heroes (autres pages) */
  .page-hero { padding: 7rem 0 3rem; }

  /* Footer */
  footer { padding: 3.5rem 0 2rem; border-radius: 20px 20px 0 0; margin-top: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 2rem; }

  /* Buttons: full-width CTAs */
  .hero .ctas .btn { width: 100%; justify-content: center; }
  .btn { padding: 0.9rem 1.75rem; font-size: 0.9rem; }

  /* Search modal — full-bleed on mobile */
  .search-modal { padding: 1rem; align-items: flex-start; }
  .search-modal__panel { max-width: 100%; }
  .search-modal__head { padding: 0.9rem 1rem; }
  .search-modal__input { font-size: 1rem; }

  /* Cadre citation + stats */
  .video-quote--with-stats .vq-content { padding: 3rem 1.75rem; }
  .video-quote--solid::before { left: 1.75rem; top: 2rem; width: 32px; }

  /* FAQ / cards spacing */
  .spe-card { padding: 1.75rem !important; }
}

@media (max-width: 560px) {
  section.band { padding: 3.5rem 0; }
  .container { padding: 0 1rem; }
  .h2 { font-size: 1.75rem; line-height: 1.2; }
  .page-hero { padding: 6.5rem 0 2rem; }
  footer { padding: 3rem 0 1.5rem; }
}

/* Hero spécifique homepage — padding réduit mobile */
@media (max-width: 860px) {
  .hero { padding: 8rem 0 5rem !important; }
  .hero h1 { font-size: clamp(2.25rem, 8vw, 3rem) !important; }
  .hero .lead { font-size: 1.05rem !important; margin-top: 1.5rem !important; }
  .hero .ctas { margin-top: 2rem !important; flex-direction: column; }
  .hero-overlay { background: linear-gradient(180deg, rgba(28,59,40,0.85) 0%, rgba(28,59,40,0.75) 100%) !important; }
}

/* Urgence block padding mobile */
@media (max-width: 700px) {
  .urgence-block { padding: 2.5rem 1.75rem !important; border-radius: 24px !important; }
  .urgence-block .blur-u { width: 300px !important; height: 300px !important; top: -80px !important; right: -80px !important; }
}
