/* ==========================================
   ZOWE — Kinésithérapeute
   style.css
========================================== */

/* --- Reset & Variables --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bordeaux:       #6B1F2A;
  --bordeaux-dark:  #4A1520;
  --bordeaux-alpha: rgba(107, 31, 42, 0.06);
  --or:             #C9A96E;
  --or-alpha:       rgba(201, 169, 110, 0.12);
  --or-border:      rgba(201, 169, 110, 0.2);
  --noir:           #0F0F0F;
  --off-white:      #F5F0E8;
  --cream:          #EDE8DF;
  --dark:           #1A1A1A;
  --mid:            #5C5C5C;
  --light:          #AAAAAA;
  --border:         rgba(0, 0, 0, 0.08);
  --white:          #FFFFFF;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  --max-w: 1200px;
  --pad:   2rem;
  --section-y: 8rem;
}

html {
  scroll-behavior: smooth;
}

/* ── Curseur custom doré (desktop uniquement) ── */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, input, textarea, select,
  [role="button"], label[for],
  .beltra-card, .faq-item summary,
  .lang-btn, .testimonials-btn,
  .cadeau-card, .loc-social-btn,
  .localisation-cta, .nav-cta, .sticky-cta { cursor: none; }
}
.cursor-dot,
.cursor-circle {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: left, top;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: #C9A96E;
  transition: transform 0.15s ease-out, opacity 0.2s;
  opacity: 0.9;
}
.cursor-circle {
  width: 32px; height: 32px;
  border: 1px solid rgba(201,169,110,0.55);
  transition: width 0.2s ease-out, height 0.2s ease-out,
              opacity 0.2s ease-out, background 0.2s ease-out;
  opacity: 0.4;
}
.cursor-circle.is-hover {
  width: 52px; height: 52px;
  opacity: 0.65;
  background: rgba(201,169,110,0.08);
}
.cursor-dot.is-hover {
  transform: translate(-50%,-50%) scale(0);
  opacity: 0;
}
/* Masqué sur mobile/tactile et reduced-motion */
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-circle { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .cursor-dot, .cursor-circle { display: none; }
}

body {
  font-family: var(--sans);
  background-color: var(--off-white);
  color: var(--dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* --- Container --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ==========================================
   NAVIGATION
========================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 3rem;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}

.nav.scrolled {
  padding: 1.1rem 3rem;
  background: rgba(248, 245, 241, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  color: var(--bordeaux);
  transition: opacity 0.2s;
  text-decoration: none;
}
.nav-logo:hover { opacity: 0.72; }
.nav-monogram {
  height: 34px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--bordeaux); }

.nav-cta {
  border: 1px solid var(--bordeaux) !important;
  padding: 0.55rem 1.35rem !important;
  color: var(--bordeaux) !important;
}
.nav-cta:hover {
  background: var(--bordeaux) !important;
  color: var(--off-white) !important;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  z-index: 300;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--dark);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:first-child {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

/* Sélecteur de langue fixe — toutes les pages sans nav */
.lang-selector-fixed {
  display: none;
  position: fixed;
  top: 1.2rem;
  right: 2rem;
  z-index: 500;
  align-items: center;
  gap: 0.3rem;
  background: rgba(248,245,241,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,0.07);
  padding: 0.38rem 0.85rem;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}
.lang-selector-fixed.active { display: flex; }
.lang-selector-fixed .lang-btn  { color: var(--mid); }
.lang-selector-fixed .lang-btn:hover,
.lang-selector-fixed .lang-btn.active { color: var(--bordeaux); }
.lang-selector-fixed > span { color: var(--light); font-size: 0.62rem; }

/* Language selector — desktop */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 1.5rem;
}

/* Sur le fond sombre du hero (nav non scrollée) — desktop uniquement, pas le menu mobile */
.nav:not(.scrolled) .lang-selector .lang-btn { color: rgba(245,240,232,0.6); }
.nav:not(.scrolled) .lang-selector .lang-btn:hover,
.nav:not(.scrolled) .lang-selector .lang-btn.active { color: var(--or); }
.nav:not(.scrolled) .lang-selector > span { color: rgba(245,240,232,0.25); }

/* Sur le fond clair (nav scrollée) */
.nav.scrolled .lang-selector .lang-btn { color: var(--mid); }
.nav.scrolled .lang-btn:hover,
.nav.scrolled .lang-btn.active { color: var(--bordeaux); }
.nav.scrolled .lang-selector > span { color: var(--light); }

/* Language selector — mobile (dans le menu déroulant) */
.nav-lang-mobile {
  display: none;
  list-style: none;
}
.lang-btn {
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--mid, #5C5C5C);
  cursor: pointer;
  padding: 0.2rem 0.15rem;
  transition: color 0.2s;
  line-height: 1;
}
.lang-btn:hover,
.lang-btn.active {
  color: var(--bordeaux, #6B1F2A);
}
.lang-selector > span {
  color: var(--light, #AAAAAA);
  font-size: 0.62rem;
  line-height: 1;
  user-select: none;
}

/* ==========================================
   HERO
========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #0F0F0F 0%, #2A0A10 60%, #1A0508 100%);
}

/* Grain subtil en overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.07;
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 0;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.hero-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.6);
  font-weight: 400;
}

.hero-title {
  margin: 0;
  line-height: 1;
  color: var(--off-white);
}
.hero-logo-svg {
  width: clamp(240px, 46vw, 560px);
  height: auto;
  display: block;
  color: var(--off-white);
  opacity: 0.82;
}

.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(1rem, 2.2vw, 1.45rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.55;
  max-width: 380px;
}

/* CTA hero sur fond sombre — style outline or */
.hero-inner > .btn-primary {
  background: transparent;
  border: 1px solid rgba(201, 169, 110, 0.45);
  color: var(--off-white);
  box-shadow: none;
}
.hero-inner > .btn-primary:hover {
  background: rgba(201, 169, 110, 0.08);
  border-color: var(--or);
  color: var(--or);
  box-shadow: 0 0 28px rgba(201, 169, 110, 0.18);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.28);
  animation: heroFade 0.6s ease 1.1s both, floatDown 2.2s ease-in-out 1.7s infinite;
}
@keyframes heroFade {
  from { opacity: 0; }
  to   { opacity: 0.6; }
}

@keyframes floatDown {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50%       { transform: translateX(-50%) translateY(9px); opacity: 1; }
}

/* ==========================================
   BUTTONS
========================================== */
/* Fallback tactile iOS — scale au tap */
@keyframes tap-feedback {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(0.96); }
}
@media (hover: none) and (pointer: coarse) {
  .btn:active,
  .sticky-cta:active,
  .lang-btn:active,
  .nav-cta:active,
  a[href*="wa.me"]:active,
  .localisation-cta:active {
    animation: tap-feedback 150ms ease-out;
  }
}

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1rem 2.75rem;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.btn-primary {
  background: var(--bordeaux);
  color: var(--off-white);
}
.btn-primary:hover {
  background: var(--bordeaux-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(107, 31, 42, 0.22), 0 0 0 1px rgba(201, 169, 110, 0.25);
}

/* ==========================================
   SECTIONS — SHARED
========================================== */
.section {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--or-border);
}

.section-header {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 4.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.section-number {
  font-family: var(--serif);
  font-size: 0.8rem;
  color: var(--bordeaux);
  letter-spacing: 0.1em;
  opacity: 0.55;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  line-height: 1;
}

/* ==========================================
   SCROLL ANIMATIONS
========================================== */
[data-anim] {
  opacity: 1;
  transform: none;
  transition: opacity 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.js-ready [data-anim]         { opacity: 0; transform: translateY(32px); }
.js-ready [data-anim="left"]  { opacity: 0; transform: translateX(-52px); }
.js-ready [data-anim="right"] { opacity: 0; transform: translateX(52px); }
.js-ready [data-anim="fade"]  { opacity: 0; transform: none; }
.js-ready [data-anim].visible { opacity: 1 !important; transform: none !important; }

/* Stagger — seulement avant l'entrée en viewport */
.js-ready [data-delay="1"]:not(.visible) { transition-delay: 0.12s; }
.js-ready [data-delay="2"]:not(.visible) { transition-delay: 0.24s; }
.js-ready [data-delay="3"]:not(.visible) { transition-delay: 0.36s; }
.js-ready [data-delay="4"]:not(.visible) { transition-delay: 0.48s; }

/* Mobile : réduire les translations latérales */
@media (max-width: 860px) {
  .js-ready [data-anim="left"]  { transform: translateX(-24px); }
  .js-ready [data-anim="right"] { transform: translateX(24px); }
}

/* ==========================================
   HERO ENTRANCE — CSS only, no scroll
========================================== */
.hero-inner > * {
  animation: heroReveal 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.hero-label   { animation-delay: 0.25s; }
.hero-title   { animation-delay: 0.42s; }
.hero-tagline { animation-delay: 0.62s; }
.hero-inner > .btn { animation-delay: 0.80s; }

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   ABOUT
========================================== */
.about {
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
}

.about-lead {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--bordeaux);
  line-height: 1.4;
  margin-bottom: 1.75rem;
}

.about-text p:not(.about-lead) {
  font-size: 0.93rem;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.about-quote {
  padding: 1.75rem 2rem;
  border-left: 2px solid var(--bordeaux);
  margin-bottom: 3.5rem;
}

.about-quote blockquote {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.6;
}

.about-formation {
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin-bottom: 0.6rem;
}

.formation-school {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.formation-degree {
  font-size: 0.82rem;
  color: var(--mid);
  font-style: italic;
}

/* ==========================================
   SERVICES
========================================== */
.services {
  background: var(--cream);
}

.services-intro {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--mid);
  margin-bottom: 4rem;
  max-width: 480px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-item {
  padding: 2rem 2rem 1.75rem;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.service-item:hover {
  background: rgba(107, 36, 55, 0.03);
}

.service-item:nth-child(3n)        { border-right: none; }
.service-item:nth-last-child(-n+3) { border-bottom: none; }

.service-dot {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--bordeaux);
  margin-bottom: 1rem;
  opacity: 0.6;
}

.service-item h3 {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--dark);
  line-height: 1.4;
}

.service-item p {
  font-size: 0.73rem;
  color: var(--light);
  font-style: italic;
  margin-top: 0.3rem;
}

/* ==========================================
   BELTRA — CARTES SOINS
========================================== */
.beltra-philosophy {
  max-width: 680px;
  margin-bottom: 4rem;
  padding: 2rem 2.5rem;
  border-left: 2px solid var(--bordeaux);
}
.beltra-philosophy p {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--mid);
  line-height: 1.85;
}

.beltra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.beltra-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.beltra-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.beltra-card--featured {
  background: var(--bordeaux);
  border-color: var(--bordeaux);
}

.beltra-card__header {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.beltra-card--featured .beltra-card__header {
  border-bottom-color: rgba(255,255,255,0.15);
}

.beltra-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.beltra-card__duration {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bordeaux);
  font-weight: 500;
}
.beltra-card--featured .beltra-card__duration {
  color: rgba(255,255,255,0.6);
}

.beltra-card__price {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--bordeaux);
  line-height: 1;
}
.beltra-card--featured .beltra-card__price {
  color: var(--off-white);
}

.beltra-card__name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}
.beltra-card--featured .beltra-card__name {
  color: var(--off-white);
}

.beltra-card__tagline {
  font-size: 0.72rem;
  color: var(--light);
  letter-spacing: 0.05em;
  font-style: italic;
}
.beltra-card--featured .beltra-card__tagline {
  color: rgba(255,255,255,0.5);
}

.beltra-card__body {
  padding: 1.75rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.beltra-card__desc {
  font-size: 0.87rem;
  color: var(--mid);
  line-height: 1.75;
}
.beltra-card--featured .beltra-card__desc {
  color: rgba(255,255,255,0.75);
}

.beltra-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.beltra-card--featured .beltra-label {
  color: rgba(255,255,255,0.5);
}

.beltra-card__tools ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.beltra-card__tools li {
  font-size: 0.8rem;
  color: var(--mid);
  padding-left: 1rem;
  position: relative;
}
.beltra-card__tools li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--bordeaux);
  font-size: 0.7rem;
}
.beltra-card--featured .beltra-card__tools li,
.beltra-card--featured .beltra-card__ideal p {
  color: rgba(255,255,255,0.7);
}
.beltra-card--featured .beltra-card__tools li::before {
  color: rgba(255,255,255,0.4);
}

.beltra-card__ideal p {
  font-size: 0.8rem;
  color: var(--mid);
  line-height: 1.65;
  font-style: italic;
}

.beltra-card .btn {
  margin: 0 2rem 2rem;
  text-align: center;
}

.btn-light {
  background: rgba(255,255,255,0.12);
  color: var(--off-white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-light:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
  box-shadow: none;
}

/* Responsive BELTRA */
@media (max-width: 900px) {
  .beltra-grid { grid-template-columns: 1fr; max-width: 480px; }
}

/* ==========================================
   INFOS PRATIQUES
========================================== */
.infos {
  background: var(--off-white);
}

.infos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.info-card {
  padding: 2.75rem 2.5rem;
  background: var(--white);
  border: 1px solid var(--border);
}

.info-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin-bottom: 1rem;
}

.info-value {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.info-value a { color: var(--blue); transition: color 0.2s; }
.info-value a:hover { color: var(--bordeaux); }

.info-sub {
  font-size: 0.8rem;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 0.3rem;
}
.info-sub a { color: var(--blue); transition: color 0.2s; }
.info-sub a:hover { color: var(--bordeaux); }

.info-zones {
  margin-top: 0.5rem;
  color: var(--light);
  font-size: 0.75rem;
}

/* ==========================================
   CONTACT
========================================== */
.contact {
  background: var(--cream);
}

.contact-intro {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--mid);
  margin-bottom: 3rem;
  max-width: 540px;
}

.contact-form {
  max-width: 660px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.75rem;
}

.form-group label {
  font-size: 0.62rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--bordeaux);
}

.form-group label span { opacity: 0.6; }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 0.9rem 1.1rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--dark);
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s, background 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--light); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--bordeaux);
  background: var(--white);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpolyline points='1,1 6,6 11,1' fill='none' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  padding-right: 2.75rem;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.65;
}

/* ==========================================
   FORMULAIRE MULTI-ÉTAPES
========================================== */
.mf-wrapper { max-width: 780px; }

/* Progress */
.mf-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 3rem;
}
.mf-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.mf-progress__step p {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light);
  transition: color 0.3s;
}
.mf-progress__step.active p,
.mf-progress__step.done p { color: var(--bordeaux); }

.mf-progress__dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  background: var(--off-white);
  transition: all 0.3s;
}
.mf-progress__dot span {
  font-size: 0.75rem;
  color: var(--light);
  font-weight: 500;
  transition: color 0.3s;
}
.mf-progress__step.active .mf-progress__dot {
  background: var(--bordeaux);
  border-color: var(--bordeaux);
}
.mf-progress__step.active .mf-progress__dot span { color: var(--off-white); }
.mf-progress__step.done .mf-progress__dot {
  background: var(--bordeaux);
  border-color: var(--bordeaux);
}
.mf-progress__step.done .mf-progress__dot span {
  color: var(--off-white);
  font-size: 0.9rem;
}
.mf-progress__step.done .mf-progress__dot span::before { content: '✓'; }
.mf-progress__step.done .mf-progress__dot span { font-size: 0; }
.mf-progress__step.done .mf-progress__dot::after {
  content: '✓';
  font-size: 0.85rem;
  color: var(--off-white);
}

.mf-progress__line {
  flex: 1;
  height: 1px;
  background: var(--border);
  margin-bottom: 1.5rem;
}

/* Panels */
.mf-panel { animation: mfIn 0.35s ease; }
.mf-panel--hidden { display: none !important; }
.mf-panel--entering { opacity: 0; transform: translateY(12px); }
@keyframes mfIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Nav */
.mf-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  gap: 1rem;
}
.mf-nav--right { justify-content: flex-end; }
.mf-back {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0;
  transition: color 0.2s;
}
.mf-back:hover { color: var(--bordeaux); }

/* Soin cards */
.soin-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 0.5rem;
}
.soin-card {
  border: 1px solid var(--border);
  padding: 1.75rem 1.5rem;
  cursor: pointer;
  background: var(--white);
  position: relative;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
  user-select: none;
}
.soin-card:hover {
  border-color: rgba(107,36,55,0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.soin-card.selected {
  border-color: var(--bordeaux);
  box-shadow: 0 0 0 2px var(--bordeaux);
}
.soin-card--premium {
  background: var(--bordeaux);
  border-color: var(--bordeaux);
}
.soin-card--premium:hover { border-color: var(--bordeaux); }

.soin-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.soin-card__duration {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bordeaux);
  font-weight: 500;
}
.soin-card--premium .soin-card__duration { color: rgba(255,255,255,0.6); }

.soin-card__price {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--bordeaux);
  line-height: 1;
}
.soin-card--premium .soin-card__price { color: var(--off-white); }

.soin-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.soin-card--premium h3 { color: var(--off-white); }

.soin-card p {
  font-size: 0.78rem;
  color: var(--mid);
  line-height: 1.7;
}
.soin-card--premium p { color: rgba(255,255,255,0.7); }

.soin-card__check {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--bordeaux);
  color: var(--off-white);
  font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  transform: scale(0.6);
}
.soin-card--premium .soin-card__check {
  background: rgba(255,255,255,0.25);
}
.soin-card.selected .soin-card__check {
  opacity: 1;
  transform: scale(1);
}

/* Calendar */
.cal-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 1.5rem;
}
.cal-box {
  border: 1px solid var(--border);
  background: var(--white);
  padding: 1.5rem;
}
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.cal-title {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--dark);
}
.cal-nav {
  background: none;
  border: 1px solid var(--border);
  width: 30px; height: 30px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--mid);
  transition: background 0.2s, color 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.cal-nav:hover { background: var(--bordeaux); color: white; border-color: var(--bordeaux); }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-dh {
  text-align: center;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light);
  padding: 0.4rem 0;
}
.cal-d {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  color: var(--dark);
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.15s, color 0.15s;
}
.cal-d:not(.cal-d--off):hover { background: var(--bordeaux-alpha); color: var(--bordeaux); }
.cal-d--off { color: var(--light); cursor: default; opacity: 0.4; }
.cal-d--sel { background: var(--bordeaux) !important; color: var(--off-white) !important; }

/* Slots */
.slots-box {
  border: 1px solid var(--border);
  background: var(--white);
  padding: 1.5rem;
}
.slots-date {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--bordeaux);
  margin-bottom: 1rem;
  text-transform: capitalize;
}
.slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.slot {
  padding: 0.5rem 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: 1px solid var(--border);
  background: var(--off-white);
  color: var(--mid);
  cursor: pointer;
  transition: all 0.15s;
  font-family: var(--sans);
}
.slot:hover { border-color: var(--bordeaux); color: var(--bordeaux); background: var(--white); }
.slot--sel { background: var(--bordeaux); color: var(--off-white); border-color: var(--bordeaux); }

/* Note calendrier */
.cal-note {
  padding: 1rem 1.25rem;
  background: rgba(107,36,55,0.05);
  border-left: 2px solid var(--bordeaux);
  margin-bottom: 1rem;
}
.cal-note p {
  font-size: 0.78rem;
  color: var(--mid);
  line-height: 1.65;
}
.cal-note strong { color: var(--bordeaux); }

/* Responsive */
@media (max-width: 760px) {
  .soin-cards { grid-template-columns: 1fr; }
  .cal-layout  { grid-template-columns: 1fr; }
  .slots-grid  { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 480px) {
  .slots-grid { grid-template-columns: repeat(3, 1fr); }
  .mf-progress__step p { display: none; }
}

/* ==========================================
   EXPERIENCE BELTRA
========================================== */
.experience { background: var(--cream); }

.experience-subtitle {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-style: italic;
  color: var(--bordeaux);
  margin-bottom: 1.5rem;
}
.experience-intro {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.85;
  max-width: 640px;
  margin-bottom: 4rem;
}
.experience-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.experience-block {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  background: var(--white);
  transition: background 0.25s, border-color 0.25s;
}
.experience-block:last-child { border-right: none; }
.experience-block:hover {
  background: var(--bordeaux);
  border-color: var(--bordeaux);
}
.experience-block:hover .experience-block__num,
.experience-block:hover h3,
.experience-block:hover p {
  color: rgba(245, 240, 232, 0.9);
}

.experience-block__num {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--bordeaux);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 1rem;
}
.experience-block h3 {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.experience-block p {
  font-size: 0.87rem;
  color: var(--mid);
  line-height: 1.75;
}

/* ==========================================
   ABOUT — QUI SUIS-JE
========================================== */
.about { background: var(--off-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}

.about-photo {
  position: sticky;
  top: 6rem;
}
.about-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-photo__placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.about-photo__placeholder span {
  font-size: 0.78rem;
  color: var(--light);
  letter-spacing: 0.08em;
  line-height: 1.8;
}

.about-content { display: flex; flex-direction: column; gap: 1rem; }
.about-lead {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--bordeaux);
  line-height: 1.45;
  margin-bottom: 0.5rem;
}
.about-content p:not(.about-lead):not(.label):not(.formation-school):not(.formation-degree) {
  font-size: 0.93rem;
  color: var(--mid);
  line-height: 1.85;
}

.about-signature {
  margin: 1.25rem 0;
}
.about-signature-img {
  width: 200px;
  max-width: 100%;
  height: auto;
  opacity: 0.9;
  mix-blend-mode: multiply;
  display: block;
}

@media (max-width: 860px) {
  .about-signature-img { width: 160px; }
}

.about-formation {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.formation-school {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.2rem;
}
.formation-degree {
  font-size: 0.82rem;
  color: var(--mid);
  font-style: italic;
}

/* ==========================================
   SKELETONS
========================================== */
@keyframes shimmer {
  0%   { background-position: -1000px 0; }
  100% { background-position:  1000px 0; }
}

/* Skeleton carte */
.skeleton-map {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1A0508 0%, #2A0A10 40%, #1A0508 100%);
  background-image: linear-gradient(90deg, #1A0508 0px, #2D0C12 500px, #1A0508 1000px);
  background-size: 1000px 100%;
  animation: shimmer 2.2s infinite linear;
  transition: opacity 0.4s ease;
}
.skeleton-map--hidden { opacity: 0; pointer-events: none; }
.skeleton-map__pin {
  width: 40px; height: 40px;
  color: var(--or);
  opacity: 0.3;
}

/* Skeleton lignes (avis) */
.skeleton-line {
  height: 10px;
  border-radius: 3px;
  background: linear-gradient(90deg, #EFE9DD 0px, #F5F0E8 400px, #EFE9DD 800px);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite linear;
  margin-bottom: 0.6rem;
}
.skeleton-card { pointer-events: none; }

@media (prefers-reduced-motion: reduce) {
  .skeleton-map,
  .skeleton-line { animation: none !important; }
}

/* ==========================================
   TÉMOIGNAGES — CARROUSEL
========================================== */
.testimonials { background: var(--cream); overflow: hidden; }

.testimonials-track-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  padding: 0.5rem 0 1rem;
}
.testimonials-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  will-change: transform;
}

/* Navigation manuelle */
.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  padding-top: 1.5rem;
}
.testimonials-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.testimonials-btn:hover {
  border-color: var(--bordeaux);
  color: var(--bordeaux);
  transform: scale(1.08);
}

.testimonial-card {
  width: 320px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-stars {
  font-size: 0.85rem;
  color: var(--bordeaux);
  letter-spacing: 2px;
}
.testimonial-text {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.7;
  flex: 1;
}
.testimonial-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
}
.testimonial-name {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--dark);
  text-transform: uppercase;
}
.testimonial-date {
  font-size: 0.72rem;
  color: var(--light);
  font-style: italic;
}

/* ==========================================
   FAQ — ACCORDÉON
========================================== */
.faq-section { background: var(--off-white); }

.faq-list {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question span:first-child {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.5;
  transition: color 0.2s;
}
.faq-item[open] .faq-question span:first-child { color: var(--bordeaux); }

.faq-icon {
  font-size: 1.2rem;
  color: var(--bordeaux);
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  transition: transform 0.25s;
  font-weight: 300;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }

.faq-answer {
  font-size: 0.87rem;
  color: var(--mid);
  line-height: 1.8;
  padding-bottom: 1.4rem;
  max-width: 620px;
}

.faq-item--extra {
  display: none;
}
.faq-item--extra.faq-item--visible {
  display: block;
}

.faq-more-wrap {
  text-align: center;
  padding-top: 2rem;
}
.faq-more-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--mid);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  padding: 0.75rem 2rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.faq-more-btn:hover {
  border-color: var(--bordeaux);
  color: var(--bordeaux);
}

/* ==========================================
   LOCALISATION
========================================== */
.localisation {
  background: var(--dark);
}
.localisation-inner {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  min-height: 520px;
}
.localisation-map {
  overflow: hidden;
  position: relative;
}
.localisation-map iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  filter: grayscale(100%) contrast(1.08) brightness(0.78);
}
.localisation-info {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.75rem;
}
.localisation-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bordeaux);
}
.localisation-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--off-white);
  line-height: 1.15;
}
.localisation-address {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.localisation-address p {
  font-size: 0.86rem;
  color: var(--mid);
  line-height: 1.7;
}

.btn-outline-light {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--off-white);
  background: transparent;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.45);
  transform: translateY(-2px);
}

@media (max-width: 860px) {
  .localisation-inner { grid-template-columns: 1fr; min-height: auto; }
  .localisation-map iframe { min-height: 300px; }
  .localisation-info { padding: 3.5rem 2rem; }
}

/* ==========================================
   FOOTER
========================================== */
.footer {
  background: var(--dark);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--off-white);
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  font-style: italic;
}
.footer-col__title {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin-bottom: 1rem;
  opacity: 0.9;
}
.footer-col p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}
.footer-col a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col a:hover { color: var(--off-white); }
.footer-social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6) !important;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-social-link:last-of-type { margin-bottom: 0; }
.footer-social-link:hover { color: var(--off-white) !important; }
.footer-social-link svg { flex-shrink: 0; opacity: 0.7; }
.footer-zones { font-size: 0.72rem !important; color: rgba(255,255,255,0.3) !important; }
.footer-tarif { color: rgba(255,255,255,0.45) !important; font-style: italic; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
}
.footer-bottom__social .instagram-link {
  color: rgba(201, 169, 110, 0.55);
  font-size: 0.65rem;
}
.footer-bottom__social .instagram-link:hover { opacity: 0.9; }

.about-kine-mention {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--light);
  font-style: italic;
  line-height: 1.6;
}

/* Responsive nouvelles sections */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 860px) {
  .experience-blocks { grid-template-columns: 1fr; }
  .experience-block  { border-right: none; border-bottom: 1px solid var(--border); }
  .experience-block:last-child { border-bottom: none; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo { position: static; max-width: 340px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .testimonial-card { width: 280px; }
}


/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 1024px) {
  :root { --section-y: 6rem; }
  .nav { padding: 1.5rem 2rem; }
  .nav.scrolled { padding: 1rem 2rem; }
  .about-grid { gap: 4rem; }
  .infos-grid { gap: 1.5rem; }
}

@media (max-width: 860px) {
  :root { --section-y: 5rem; }

  .nav-toggle { display: flex; }
  .lang-selector { display: none; }

  /* Sur mobile, backdrop-filter sur la nav crée un nouveau bloc contenant
     pour position:fixed — le menu overlay ne couvre plus la fenêtre entière.
     On le désactive pour que .nav-links.open reste positionné par rapport au viewport. */
  .nav.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  /* Nav non scrollée sur le hero sombre — monogramme + hamburger en doré */
  .nav:not(.scrolled) .nav-logo { color: var(--or); }
  .nav:not(.scrolled) .nav-toggle span { background: var(--or); }

  .nav-lang-mobile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
  }
  .nav-lang-mobile .lang-btn {
    font-size: 0.78rem;
    padding: 0.3rem 0.5rem;
  }
  .nav-lang-mobile > span {
    color: var(--light);
    font-size: 0.78rem;
  }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--off-white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    z-index: 250;
    overflow-y: auto;
    padding: 5.5rem 2rem 3rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 0.9rem; letter-spacing: 0.18em; color: var(--bordeaux); }
  .nav-links a:hover { color: var(--bordeaux-dark, #4A1520); }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-item:nth-child(3n)          { border-right: 1px solid var(--border); }
  .service-item:nth-last-child(-n+3)   { border-bottom: 1px solid var(--border); }
  .service-item:nth-child(2n)          { border-right: none; }
  .service-item:nth-last-child(-n+2)   { border-bottom: none; }

  .infos-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .footer-inner { flex-direction: column; text-align: center; gap: 1.25rem; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 540px) {
  :root { --section-y: 4rem; --pad: 1.25rem; }

  .nav { padding: 1.25rem var(--pad); }
  .nav.scrolled { padding: 0.9rem var(--pad); }
  .hero { padding: 6rem 1.25rem 4rem; }

  .services-grid { grid-template-columns: 1fr; }
  .service-item { border-right: none !important; }
  .service-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border) !important; }
  .service-item:last-child           { border-bottom: none !important; }

  .info-card { padding: 2rem 1.5rem; }
  .section-header { margin-bottom: 3rem; }
}

/* ==========================================
   FAQ — CARTE LOCALISATION
========================================== */
.faq-map-card {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 860px;
}
.faq-map-card__map {
  overflow: hidden;
}
.faq-map-card__map iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: block;
  filter: grayscale(100%) contrast(1.08) brightness(0.85);
}
.faq-map-card__info {
  padding: 2.5rem 2.25rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}
.faq-map-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bordeaux);
}
.faq-map-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.3;
}
.faq-map-detail {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.65;
}
.faq-map-zones {
  font-size: 0.72rem;
  color: var(--light);
  line-height: 1.6;
}
.faq-map-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bordeaux);
  font-weight: 500;
  transition: opacity 0.2s;
}
.faq-map-link:hover { opacity: 0.65; }

@media (max-width: 640px) {
  .faq-map-card { grid-template-columns: 1fr; max-width: 100%; }
  .faq-map-card__map iframe { min-height: 200px; }
  .faq-map-card__info { padding: 1.75rem; }
}

/* ==========================================
   NOUS TROUVER
========================================== */
.localisation-section {
  /* hérite du padding standard .section */
}
.localisation-section .localisation-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3.5rem;
}
.localisation-section .localisation-info {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 0;
  background: none;
}
.localisation-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--dark);
  font-weight: 400;
  margin-bottom: 0.15rem;
}
.localisation-street {
  font-size: 0.86rem;
  color: var(--mid);
  line-height: 1.65;
}
.localisation-home-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin-bottom: 0.35rem;
}
.localisation-zones {
  font-size: 0.74rem;
  color: var(--light);
  line-height: 1.65;
  letter-spacing: 0.02em;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.2rem;
}
.localisation-social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.loc-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--mid);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.1rem;
  transition: color 0.2s, border-color 0.2s;
}
.loc-social-btn:hover {
  color: var(--bordeaux);
  border-color: var(--bordeaux);
}
.loc-social-btn--wa,
.loc-social-btn--ig { background: none; }
.localisation-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.localisation-contacts a {
  font-size: 0.86rem;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}
.localisation-contacts a:hover { color: var(--bordeaux); }
.localisation-cta { align-self: flex-start; margin-top: 0.25rem; }

.localisation-map-col {
  border: 1px solid var(--or-border);
  overflow: hidden;
  background: #0F0F0F;
}
#mapbox-map {
  width: 100%;
  height: 400px;
}
#mapbox-map iframe {
  width: 100%;
  height: 400px;
  display: block;
}
/* Navigation Mapbox — couleur or */
.mapboxgl-ctrl-group {
  background: rgba(15,15,15,0.85) !important;
  border: 1px solid rgba(201,169,110,0.2) !important;
}
.mapboxgl-ctrl-group button { background: transparent !important; }
.mapboxgl-ctrl-icon { filter: invert(80%) sepia(20%) saturate(500%) hue-rotate(5deg); }

@media (max-width: 860px) {
  .localisation-section .localisation-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .localisation-map-col { order: -1; }
  #mapbox-map,
  #mapbox-map iframe { height: 280px; }
}

/* ==========================================
   CONTACT META (téléphone · email · instagram)
========================================== */
.contact-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--or-border);
}
.contact-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-meta__item:hover { color: var(--bordeaux); }
.contact-meta__item--icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  justify-content: center;
  color: var(--mid);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.contact-meta__item--icon:hover {
  border-color: var(--bordeaux);
  color: var(--bordeaux);
  background: rgba(107,31,42,0.04);
}

/* ==========================================
   FORMULAIRE SIMPLE — FLOATING LABELS
========================================== */
.simple-form {
  max-width: 680px;
}
.ff-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.ff {
  position: relative;
  margin-bottom: 1.25rem;
}
.ff input,
.ff textarea {
  width: 100%;
  padding: 1.55rem 1rem 0.55rem;
  background: var(--off-white);
  border: 1px solid var(--or-border);
  font-family: var(--sans);
  font-size: 0.93rem;
  color: var(--dark);
  outline: none;
  resize: vertical;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s;
}
.ff input:focus,
.ff textarea:focus { border-color: var(--or); }
.ff input.field-valid,
.ff textarea.field-valid { border-color: rgba(201,169,110,0.55); }
.ff input.field-error,
.ff textarea.field-error { border-color: rgba(160,60,60,0.4); }
.field-hint {
  display: none;
  font-size: 0.68rem;
  color: rgba(150,50,50,0.75);
  margin-top: 0.2rem;
}
.field-hint.is-visible { display: block; }

.ff label {
  position: absolute;
  left: 1rem;
  top: 1.05rem;
  font-size: 0.88rem;
  color: var(--light);
  pointer-events: none;
  transition: top 0.18s ease, font-size 0.18s ease, color 0.18s ease, letter-spacing 0.18s ease;
}
.ff input:focus ~ label,
.ff input:not(:placeholder-shown) ~ label,
.ff textarea:focus ~ label,
.ff textarea:not(:placeholder-shown) ~ label {
  top: 0.38rem;
  font-size: 0.58rem;
  color: var(--or);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Newsletter opt-in */
.newsletter-opt {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0.5rem 0 1.75rem;
}
.newsletter-opt input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  accent-color: var(--bordeaux);
  cursor: pointer;
}
.newsletter-opt label {
  font-size: 0.78rem;
  color: var(--mid);
  line-height: 1.55;
  cursor: pointer;
}
.newsletter-opt__sub {
  display: block;
  font-size: 0.7rem;
  color: var(--light);
  margin-top: 0.2rem;
}

/* ── Spinner bouton ── */
@keyframes spin { to { transform: rotate(360deg); } }
.btn-spinner {
  display: none;
  animation: spin 0.8s linear infinite;
  flex-shrink: 0;
  vertical-align: middle;
}
#submitBtn { display: inline-flex; align-items: center; gap: 0.5rem; }

/* ── Erreur formulaire ── */
.form-error {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-left: 2px solid rgba(107,31,42,0.3);
  background: rgba(107,31,42,0.04);
}
.form-error__msg {
  font-size: 0.82rem;
  color: var(--bordeaux);
  line-height: 1.7;
  margin: 0 0 0.6rem;
}
.form-error__wa {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--bordeaux);
  text-decoration: none;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(107,31,42,0.25);
  padding-bottom: 0.05rem;
  transition: border-color 0.2s;
}
.form-error__wa:hover { border-color: var(--bordeaux); }

/* ── Succès formulaire ── */
.form-success {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  margin-top: 2rem;
  text-align: center;
  padding: 2rem 1rem;
}
.form-success.is-visible { opacity: 1; transform: none; }
.form-success__inner {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.form-success__inner p {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--bordeaux);
  line-height: 1.65;
  margin: 0;
}
/* Checkmark animée */
@keyframes checkDraw {
  from { stroke-dashoffset: 60; }
  to   { stroke-dashoffset: 0; }
}
.form-success__tick {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
}
.form-success.is-visible .form-success__tick {
  animation: checkDraw 0.55s ease-out 0.3s forwards;
}

.simple-form__footer {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.simple-form__footer .mf-note {
  flex: 1;
  min-width: 200px;
  margin: 0;
}

@media (max-width: 640px) {
  .ff-row { grid-template-columns: 1fr; gap: 0; }
  .simple-form__footer { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .ff input, .ff textarea { font-size: 16px; } /* évite zoom iOS */
}

/* ==========================================
   FORMULAIRE — NOTE DISPONIBILITÉS
========================================== */
.mf-note {
  font-size: 0.82rem;
  color: var(--mid);
  font-style: italic;
  line-height: 1.7;
  padding: 1rem 1.25rem;
  background: rgba(107,36,55,0.04);
  border-left: 2px solid rgba(107,36,55,0.22);
  margin-bottom: 0.5rem;
}

/* ==========================================
   STICKY CTA — MOBILE UNIQUEMENT
========================================== */
.sticky-cta { display: none; }

@media (max-width: 860px) {
  .sticky-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 150;
    background: var(--bordeaux);
    color: var(--off-white);
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1.15rem 2rem;
    box-shadow: 0 -2px 20px rgba(107,36,55,0.2);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }
  .sticky-cta--hidden {
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
  }

  /* Espace sous le contenu pour éviter que le sticky masque le footer */
  body { padding-bottom: 3.5rem; }

  /* Éviter le zoom iOS sur les champs */
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; }

  /* Soin cards : colonne unique */
  .soin-cards { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  /* Raccourcir le CTA nav quand l'espace est limité */
  .nav-cta {
    font-size: 0.58rem !important;
    padding: 0.45rem 0.85rem !important;
    letter-spacing: 0.08em !important;
  }
}

/* ==========================================
   WHATSAPP — BOUTON FLOTTANT
========================================== */
.whatsapp-float {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 145;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--off-white);
  border: 1px solid var(--or-border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 14px rgba(0,0,0,0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(201, 169, 110, 0.2);
}
.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: var(--bordeaux);
}
@media (max-width: 860px) {
  .whatsapp-float { bottom: 4.5rem; right: 1rem; }
}

/* ==========================================
   INSTAGRAM — LIEN ICÔNE
========================================== */
.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--or);
  text-decoration: none;
  transition: opacity 0.2s;
}
.instagram-link:hover { opacity: 0.7; }
.instagram-link svg { width: 16px; height: 16px; fill: currentColor; }

/* Lien kinésithérapie conventionnelle */
.kine-link {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--or);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 169, 110, 0.35);
  transition: border-color 0.2s, color 0.2s;
}
.kine-link:hover { color: var(--bordeaux); border-color: var(--bordeaux); }

/* Bouton partage protocoles */
.share-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--or);
  opacity: 0.6;
  transition: opacity 0.2s, transform 0.2s;
  padding: 0;
}
.share-btn:hover { opacity: 1; transform: scale(1.1); }
.share-btn svg { width: 16px; height: 16px; fill: currentColor; }
.beltra-card { position: relative; }

/* Horaires section contact + footer */
.hours-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hours-pill {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--mid);
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--or-border);
  background: rgba(201, 169, 110, 0.04);
}

/* ==========================================
   GALERIE APERÇU (homepage preview)
========================================== */
.gallery-preview { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.gallery-grid--preview .gallery-card { text-decoration: none; }
.gallery-card {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  display: block;
}
.gallery-card img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-card:hover img { transform: scale(1.04); }
.gallery-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(107,31,42,0.88) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.35s ease;
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 1.5rem;
  gap: 0.4rem;
}
.gallery-card:hover .gallery-card__overlay { opacity: 1; }
.gallery-card__badge {
  display: inline-block; align-self: flex-start;
  font-size: 0.55rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.4);
  color: var(--or); padding: 0.2rem 0.6rem;
}
.gallery-card__title {
  font-family: var(--serif);
  font-size: 1.1rem; font-style: italic;
  color: var(--off-white); line-height: 1.2;
}
.gallery-card__desc {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.65); line-height: 1.6;
}
@media (max-width: 860px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ==========================================
   COOKIE BANNER
========================================== */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 400;
  max-width: 380px;
  background: var(--dark);
  border: 1px solid var(--or-border);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__text {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin: 0;
}
.cookie-banner__text a {
  color: var(--or);
  text-decoration: none;
}
.cookie-banner__text a:hover { text-decoration: underline; }
.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.cookie-btn {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  padding: 0.6rem 1.25rem;
}
.cookie-btn--accept {
  background: var(--bordeaux);
  color: var(--off-white);
}
.cookie-btn--accept:hover { background: var(--bordeaux-dark); }
.cookie-btn--refuse {
  background: transparent;
  color: rgba(255,255,255,0.4);
  padding-left: 0;
}
.cookie-btn--refuse:hover { color: var(--off-white); }

@media (max-width: 480px) {
  .cookie-banner { left: 1rem; right: 1rem; max-width: none; bottom: 5rem; }
}

/* Liens légaux footer */
.footer-legal-links {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.5rem;
}
.footer-legal-links a {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: rgba(255,255,255,0.7); }
.footer-legal-links span { color: rgba(255,255,255,0.15); font-size: 0.6rem; }

/* ==========================================
   PREFERS-REDUCED-MOTION
========================================== */
@media (prefers-reduced-motion: reduce) {
  [data-anim] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-inner > * {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-scroll { animation: none !important; }
  .testimonials-track { will-change: auto; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
