/* ==========================================================
   Kinésithérapie Richard — Esch-sur-Alzette — v2
   Identité conservée : Karla / PT Serif, orange #FF7B35, encre.
   Motif directeur : la colonne vertébrale en pointillés du logo,
   déclinée en fil conducteur (hero animé, séparateurs, puces).
   ========================================================== */

:root {
  /* Couleurs (palette complete, aucune couleur en dur ailleurs) */
  --orange: #FF7B35;
  --orange-dark: #D95E1E;
  --orange-soft: #FFEFE4;
  --ink: #1A1B1F;
  --ink-soft: #55565E;
  --cream: #FAF6F0;
  --white: #FFFFFF;
  --line: #EBE2D6;
  --green: #2FA36B;                /* semantique : disponibilite / ouvert */
  --inverse-text: #C9C9CE;         /* texte sur fond sombre (footer, CTA) */
  --inverse-text-dim: #8B8B92;     /* texte secondaire sur fond sombre */
  /* Rayons */
  --r-sm: 12px;
  --r-md: 16px;
  --radius: 20px;                  /* cartes principales */
  --arch: 160px 160px 20px 20px;
  /* Ombres (3 niveaux, diffuses) */
  --shadow: 0 10px 40px rgba(26, 27, 31, 0.10);
  --shadow-soft: 0 4px 16px rgba(26, 27, 31, 0.06);
  --shadow-lift: 0 30px 80px rgba(26, 27, 31, 0.35);
  /* Typo */
  --serif: "PT Serif", Georgia, serif;
  --sans: "Karla", "Segoe UI", sans-serif;
  /* Plan de superposition */
  --z-header: 60;
  --z-mobilebar: 70;
  --z-cookie: 80;
}

/* Focus clavier visible et coherent partout (souris = pas d'anneau) */
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }

/* Scrollbar discrete, aux couleurs du site */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--line); border-radius: 6px; border: 3px solid var(--cream); }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; overflow-x: hidden; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}

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

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

::selection { background: var(--orange); color: var(--white); }

/* ---------- Révélation au scroll (uniquement si JS actif) ---------- */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
html.js .reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .marquee-track { animation: none !important; }
  .hero-spine circle { opacity: 1 !important; animation: none !important; }
  .hero-enter { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 999px;
  padding: 15px 30px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  cursor: pointer;
  border: none;
}
.btn svg { flex: none; }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 22px rgba(255, 123, 53, 0.38);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255, 123, 53, 0.45); }
.btn-ghost { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--white); }
.btn-white { background: var(--white); color: var(--ink); box-shadow: var(--shadow-soft); }
.btn-white:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); transition-duration: 0.06s; }
.btn, .lang-switch button, .nav-toggle, .team-more, .km-close, .cookie-bar button { user-select: none; -webkit-user-select: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(250, 246, 240, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(26,27,31,0.07); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 13px 28px;
  max-width: 1320px;
  margin: 0 auto;
}
.logo img { height: 56px; width: auto; }
.main-nav { display: flex; gap: 30px; align-items: center; }
.main-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -7px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
  transform: translateX(-50%) scale(0);
  transition: transform 0.2s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { transform: translateX(-50%) scale(1); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--ink); border-radius: 2px; margin: 5px 0; transition: 0.2s; }

/* Sélecteur de langue */
.lang-switch { display: flex; gap: 2px; background: var(--cream); border: 1px solid var(--line); border-radius: 999px; padding: 3px; }
.lang-switch button {
  border: none; background: transparent; cursor: pointer;
  font-family: var(--sans); font-weight: 800; font-size: 12.5px; letter-spacing: 0.03em;
  color: var(--ink-soft); padding: 6px 11px; border-radius: 999px; transition: 0.15s;
}
.lang-switch button.active { background: var(--orange); color: var(--white); }
.lang-switch button:hover:not(.active) { color: var(--ink); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 84px 0 96px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 64px;
  align-items: center;
}
.hero-enter { opacity: 0; transform: translateY(24px); animation: heroUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.he-1 { animation-delay: 0.15s; }
.he-2 { animation-delay: 0.3s; }
.he-3 { animation-delay: 0.45s; }
.he-4 { animation-delay: 0.6s; }
.he-5 { animation-delay: 0.75s; }
@keyframes heroUp { to { opacity: 1; transform: none; } }

.overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-dark);
}
.overline::before {
  content: "";
  width: 26px; height: 5px;
  background-image: radial-gradient(circle, var(--orange) 2.2px, transparent 2.6px);
  background-size: 9px 5px;
  background-repeat: repeat-x;
}

h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin: 18px 0 22px;
  text-wrap: balance;
}
h1 em { font-style: italic; color: var(--orange-dark); }

.hero p.lead {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 50ch;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 42px; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.trust-item { display: flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 700; color: var(--ink-soft); }
.trust-item svg { flex: none; }

/* Photo en arche + colonne animée */
.hero-visual { position: relative; }
.hero-visual .photo {
  border-radius: var(--arch);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 4.9;
  object-fit: cover;
  width: 100%;
}
.hero-spine {
  position: absolute;
  top: -30px;
  left: -74px;
  height: calc(100% + 60px);
  width: 90px;
  pointer-events: none;
}
.hero-spine circle { fill: var(--orange); opacity: 0; animation: spineDot 0.5s ease forwards; }
@keyframes spineDot { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

.hero-badge {
  position: absolute;
  right: -16px; bottom: 30px;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow);
  padding: 15px 22px;
  display: flex;
  align-items: center;
  gap: 13px;
}
.hero-badge img { height: 42px; }
.hero-badge strong { display: block; font-size: 15px; line-height: 1.3; }
.hero-badge span { font-size: 13px; color: var(--ink-soft); }

/* fond décoratif du hero */
.hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -180px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--orange-soft) 0%, transparent 68%);
  z-index: -1;
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: 16px 0;
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee-track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
.marquee-track span::after {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  margin: 0 22px;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Bandeau accès rapide ---------- */
.quick { background: var(--white); border-bottom: 1px solid var(--line); padding: 40px 0; }
.quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.quick-item { display: flex; gap: 16px; align-items: flex-start; }
.quick-icon {
  flex: none;
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: var(--orange-soft);
  display: grid;
  place-items: center;
  color: var(--orange-dark);
}
.quick-item strong { display: block; font-size: 16px; margin-bottom: 2px; }
.quick-item p { font-size: 14.5px; color: var(--ink-soft); }
.quick-item a { color: var(--orange-dark); font-weight: 700; text-decoration: none; }
.quick-item a:hover { text-decoration: underline; }

/* ---------- Sections ---------- */
section { padding: 96px 0; }
.section-head { max-width: 660px; margin-bottom: 54px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .overline { justify-content: center; }
.section-head.center .overline::after {
  content: "";
  width: 26px; height: 5px;
  background-image: radial-gradient(circle, var(--orange) 2.2px, transparent 2.6px);
  background-size: 9px 5px;
  background-repeat: repeat-x;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.14;
  letter-spacing: -0.01em;
  margin: 12px 0 16px;
  text-wrap: balance;
}
h2 em { font-style: italic; color: var(--orange-dark); }
.section-head p { color: var(--ink-soft); font-size: 17.5px; }

/* ---------- Chiffres ---------- */
.stats { padding: 0 0 96px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}
.stat {
  padding: 40px 26px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat b {
  display: block;
  font-family: var(--serif);
  font-size: clamp(38px, 4.6vw, 58px);
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.stat b sup { font-size: 0.45em; color: var(--orange); top: -0.7em; }
.stat span { display: block; margin-top: 10px; font-size: 14.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); }

/* ---------- Thérapies ---------- */
.therapies { background: var(--white); border-block: 1px solid var(--line); }
.therapy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.therapy-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}
.therapy-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.therapy-card::after {
  content: "";
  position: absolute;
  top: 22px; right: 24px;
  width: 5px; height: 44px;
  background-image: radial-gradient(circle, var(--line) 2.2px, transparent 2.6px);
  background-size: 5px 11px;
  background-repeat: repeat-y;
  transition: background-image 0.2s ease;
}
.therapy-card:hover::after { background-image: radial-gradient(circle, var(--orange) 2.2px, transparent 2.6px); }
.therapy-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-sm);
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--orange-dark);
  margin-bottom: 18px;
}
.therapy-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 12px; line-height: 1.3; padding-right: 24px; }
.therapy-card ul { list-style: none; }
.therapy-card li {
  font-size: 14.5px;
  color: var(--ink-soft);
  padding: 4px 0 4px 19px;
  position: relative;
}
.therapy-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 12.5px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

/* ---------- Équipe ---------- */
/* Flex centré (et non grid) : avec 7 kinés, la dernière rangée de 3 se centre
   proprement au lieu de laisser une cellule vide. Une rangée pleine de 4
   remplit exactement la largeur, donc aucun décalage visible. */
.team-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.team-card {
  flex: 0 1 calc((100% - 3 * 24px) / 4);
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  padding-bottom: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.team-photo-wrap { position: relative; overflow: hidden; margin-bottom: 18px; }
.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}
.team-card:hover img { transform: scale(1.04); }
.team-card h3 { font-family: var(--serif); font-size: 19px; padding: 0 14px; }
.team-spec { font-size: 13px; color: var(--ink-soft); padding: 5px 16px 0; line-height: 1.45; }
.langs { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; margin-top: 9px; padding: 0 14px; }
.langs span {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.07em;
  color: var(--orange-dark);
  background: var(--orange-soft);
  border-radius: 999px;
  padding: 3px 9px;
}
.dispo {
  margin: 14px 14px 0;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  background: var(--cream);
  border: 1px dashed var(--line);
  font-size: 13.5px;
  color: var(--ink-soft);
  min-height: 66px; /* reserve la ligne "Prochaine dispo" -> zero decalage au chargement */
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dispo-slot { display: block; font-weight: 700; color: var(--ink); }
.dispo-slot:empty { display: none; }
.dispo-slot.dispo--ok::before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 7px;
}

/* Bouton parcours + modale kine */
.team-more {
  margin: 12px 14px 0;
  width: calc(100% - 28px);
  background: transparent;
  border: 1.5px solid var(--line);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13.5px;
  border-radius: 999px;
  padding: 9px 14px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.team-more:hover { border-color: var(--orange); background: var(--orange-soft); }

dialog.kine-modal {
  border: none;
  border-radius: var(--radius);
  padding: 0;
  max-width: 560px;
  width: calc(100% - 40px);
  box-shadow: var(--shadow-lift);
  background: var(--white);
  color: var(--ink);
}
dialog.kine-modal::backdrop { background: rgba(26,27,31,0.55); backdrop-filter: blur(3px); }
.km-head {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 26px 28px 20px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.km-head img { width: 78px; height: 78px; border-radius: 50%; object-fit: cover; object-position: top center; flex: none; border: 3px solid var(--orange-soft); }
.km-head h3 { font-family: var(--serif); font-size: 23px; margin-bottom: 4px; }
.km-head .km-role { font-size: 13.5px; color: var(--orange-dark); font-weight: 700; }
.km-close {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px; border-radius: 50%;
  border: none; background: var(--cream); cursor: pointer;
  font-size: 20px; line-height: 1; color: var(--ink-soft);
}
.km-close:hover { background: var(--orange-soft); color: var(--orange-dark); }
.km-body { padding: 22px 28px 26px; }
.km-body p.km-intro { font-size: 15.5px; color: var(--ink-soft); margin-bottom: 18px; }
.km-body h4 {
  font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft); margin: 18px 0 10px;
}
.km-langs { display: flex; gap: 6px; flex-wrap: wrap; }
.km-langs span { font-size: 12px; font-weight: 800; letter-spacing: 0.06em; color: var(--orange-dark); background: var(--orange-soft); border-radius: 999px; padding: 4px 11px; }
.km-form { list-style: none; }
.km-form li { font-size: 14.5px; color: var(--ink-soft); padding: 5px 0 5px 20px; position: relative; }
.km-form li::before { content: ""; position: absolute; left: 0; top: 12px; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.km-foot { padding: 0 28px 26px; }
.km-foot .btn { width: 100%; justify-content: center; }

/* Bandeau cookies */
.cookie-bar {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: var(--z-cookie);
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--r-md);
  box-shadow: 0 12px 40px rgba(26,27,31,0.35);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  max-width: 720px;
  margin: 0 auto;
}
.cookie-bar p { font-size: 14px; color: var(--inverse-text); flex: 1; min-width: 220px; }
.cookie-bar p a { color: var(--orange); }
.cookie-bar .cookie-actions { display: flex; gap: 10px; }
.cookie-bar button { font-size: 13.5px; padding: 10px 18px; border-radius: 999px; border: none; cursor: pointer; font-weight: 700; font-family: var(--sans); }
.cookie-accept { background: var(--orange); color: var(--white); }
.cookie-refuse { background: transparent; color: var(--cream); border: 1.5px solid rgba(255,255,255,0.3) !important; }
@media (max-width: 700px) {
  .cookie-bar { bottom: 88px; flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-bar .cookie-actions { justify-content: center; }
}
.dispo a { color: var(--orange-dark); font-weight: 700; text-decoration: none; }
.dispo a:hover { text-decoration: underline; }

/* ---------- Domicile / bandeau photo ---------- */
.domicile { background: var(--white); border-block: 1px solid var(--line); }
.domicile-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.domicile-visual img {
  border-radius: var(--arch);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
}
.domicile ul.checks { list-style: none; margin-top: 22px; }
.domicile ul.checks li {
  padding: 9px 0 9px 36px;
  position: relative;
  font-size: 16.5px;
}
.domicile ul.checks li::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--orange-soft) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23D95E1E" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6 9 17l-5-5"/></svg>') center / 12px no-repeat;
}

/* ---------- Infos pratiques ---------- */
.infos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.info-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.info-card h3 { font-family: var(--serif); font-size: 22px; margin-bottom: 18px; display: flex; align-items: center; gap: 11px; }
.info-card h3 svg { color: var(--orange-dark); flex: none; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:last-child { text-align: right; font-weight: 700; font-variant-numeric: tabular-nums; }
.hours-table .closed td:last-child { color: var(--ink-soft); font-weight: 400; }
.hours-note { margin-top: 14px; font-size: 14px; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; }
.hours-note .pulse {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--green); flex: none;
  box-shadow: 0 0 0 0 rgba(47,163,107,0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(47,163,107,0); } 100% { box-shadow: 0 0 0 0 rgba(47,163,107,0); } }
.info-card p { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 9px; }
.info-card p strong { color: var(--ink); }
.info-card p a { color: var(--orange-dark); font-weight: 700; text-decoration: none; }
.map-frame {
  grid-column: 1 / -1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.map-frame iframe { display: block; width: 100%; height: 400px; border: 0; }

/* ---------- FAQ ---------- */
.faq { background: var(--white); border-top: 1px solid var(--line); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r-md); background: var(--cream); margin-bottom: 12px; overflow: hidden; transition: border-color 0.2s; }
.faq-item[open] { border-color: var(--orange); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 800;
  font-size: 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 26px;
  font-weight: 400;
  color: var(--orange-dark);
  transition: transform 0.25s ease;
  flex: none;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 20px; color: var(--ink-soft); font-size: 15.5px; max-width: 65ch; }

/* ---------- CTA final ---------- */
.cta-final {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 100px 0;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,123,53,0.16) 2.4px, transparent 3px);
  background-size: 34px 34px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 72%);
}
.cta-final .container { position: relative; }
.cta-final h2 { color: var(--white); }
.cta-final p { max-width: 54ch; margin: 0 auto 34px; font-size: 18px; color: var(--inverse-text); }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-final .btn-ghost { border-color: var(--cream); color: var(--cream); }
.cta-final .btn-ghost:hover { background: var(--cream); color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--inverse-text); padding: 0; font-size: 15px; }
.site-footer .container { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 56px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 44px; }
.footer-logo { height: 62px; width: auto; filter: brightness(0) invert(1); margin-bottom: 14px; }
.site-footer h4 { color: var(--white); font-size: 13.5px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer a { color: var(--inverse-text); text-decoration: none; }
.site-footer a:hover { color: var(--orange); }
.site-footer li { list-style: none; padding: 3px 0; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13.5px;
  color: var(--inverse-text-dim);
}

/* ---------- Barre mobile collante ---------- */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: var(--z-mobilebar);
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px rgba(26,27,31,0.1);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.mobile-bar a {
  flex: 1;
  text-align: center;
  justify-content: center;
  padding: 13px 10px;
  font-size: 14.5px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero-spine { display: none; }
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { order: -1; max-width: 560px; }
  .hero-visual .photo { aspect-ratio: 16 / 11; border-radius: 110px 110px 20px 20px; }
  .therapy-grid { grid-template-columns: repeat(2, 1fr); }
  .team-card { flex-basis: calc((100% - 2 * 24px) / 3); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .quick-grid { grid-template-columns: 1fr; gap: 22px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .domicile-grid { grid-template-columns: 1fr; gap: 40px; }
  .domicile-visual { max-width: 480px; }
}
@media (max-width: 700px) {
  section { padding: 64px 0; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 28px 26px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    gap: 18px;
    align-items: flex-start;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .therapy-grid { grid-template-columns: 1fr; }
  .team-card { flex-basis: calc((100% - 24px) / 2); }
  .infos-grid { grid-template-columns: 1fr; }
  .hero { padding: 44px 0 60px; }
  .hero-badge { right: 10px; bottom: 14px; padding: 11px 15px; }
  .hero-badge img { height: 34px; }
  .logo img { height: 46px; }
  /* Zone tactile >= 44px sur mobile */
  .lang-switch button { padding: 11px 13px; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 76px; }
  .map-frame iframe { height: 300px; }
}
@media (max-width: 460px) {
  .team-card { flex-basis: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 26px 12px; }
}
