/* =========================================================
   EVASION BIEN-ÊTRE — Design System
   Palette: plum + sage tropical + or doux + crème chaude
   ========================================================= */

:root {
  /* Design tokens — nommés par usage, pas par teinte */
  --canvas:        #F9F7F3;   /* fond global crème chaud */
  --canvas-2:      #F3EFE7;   /* fond section secondaire */
  --sage-soft:     #EFEFE7;   /* sauge pâle — cartes, fonds secondaires */
  --sage:          #9FAE8F;   /* sauge végétal — icônes, bordures, accents */
  --sage-deep:     #7F9272;   /* sauge foncé — focus, hover */
  --plum:          #6B4E71;   /* aubergine doux — CTA, footer, tête de section */
  --plum-light:    #8C6E91;   /* plum hover */
  --plum-deep:     #53385A;   /* plum foncé — presse CTA */
  --ink:           #2B2A27;   /* charbon chaud — corps texte */
  --muted:         #7A7768;   /* taupe — textes secondaires */
  --muted-soft:    #A8A497;   /* bordures douces */
  --gold:          #A8864C;   /* or doux — signature, détails premium */
  --gold-soft:     #C6A97A;   /* or clair — subtil */
  --wa-green:      #25D366;   /* WhatsApp officiel — bouton contact */
  --wa-green-deep: #128C7E;   /* WhatsApp hover/focus — cohérence marque */

  /* Typo */
  --font-display:  "Fraunces", "Didot", "Times New Roman", serif;
  --font-body:     "Inter Tight", system-ui, -apple-system, sans-serif;
  --lh-body:       1.65;
  --lh-tight:      1.15;

  /* Espace — ratio 1.25 (échelle majeure) */
  --sp-1: 4px;   --sp-2: 8px;   --sp-3: 12px;
  --sp-4: 16px;  --sp-5: 20px;  --sp-6: 28px;
  --sp-7: 40px;  --sp-8: 60px;  --sp-9: 84px;
  --sp-10: 120px;

  /* Rayons — contrôlés, PAS excessifs */
  --r-xs: 4px;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;

  /* Ombres — douces, jamais fortes */
  --sh-1: 0 2px 8px rgba(43, 42, 39, 0.04);
  --sh-2: 0 8px 28px rgba(107, 78, 113, 0.08);
  --sh-3: 0 18px 50px rgba(43, 42, 39, 0.10);

  /* Layout */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius-img: 12px;

  /* Motion signature */
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast:   180ms;
  --dur-base:   350ms;
  --dur-slow:   650ms;
}

/* ---------- Reset léger & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: var(--lh-body);
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--dur-fast) var(--ease-out); }
a:hover { color: var(--plum); }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  line-height: var(--lh-tight);
  letter-spacing: -0.01em;
  margin: 0 0 var(--sp-4);
}
h1 em, h2 em, h3 em { font-style: italic; font-weight: 500; color: var(--plum); }
p { margin: 0 0 var(--sp-4); }
ul, ol { margin: 0; padding: 0; }
ul[role="list"], ol[role="list"] { list-style: none; }

:focus-visible {
  outline: 3px solid var(--plum-deep);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

::selection { background: var(--sage-soft); color: var(--ink); }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.reveal-section {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
  will-change: opacity, transform;
}
.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Signature visuelle — trait doré sous titres */
.title-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 0 0 var(--sp-6);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  max-width: 28ch;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 var(--sp-3);
  padding: 4px 10px;
  background: var(--sage-soft);
  border-radius: var(--r-xs);
}
.eyebrow-plum { color: var(--plum-deep); background: #F3EEF4; }
.eyebrow-light { color: var(--gold-soft); background: rgba(255,255,255,0.08); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  min-height: 48px;
  min-width: 48px;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.15;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--dur-fast) var(--ease-out);
  white-space: nowrap;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.btn-sm { padding: 10px 16px; font-size: 0.88rem; border-radius: var(--r-sm); }
.btn-lg { padding: 17px 28px; font-size: 1rem; border-radius: var(--r-md); }
.btn-block { width: 100%; }
.btn-center { margin-inline: auto; }

.btn-primary {
  background: var(--plum);
  color: #F9F7F3;
  border-color: var(--plum);
}
.btn-primary:hover {
  background: var(--plum-light);
  border-color: var(--plum-light);
  color: #F9F7F3;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(107, 78, 113, 0.22);
}
.btn-primary:active { transform: translateY(0); background: var(--plum-deep); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--muted-soft);
}
.btn-ghost:hover {
  color: var(--plum);
  border-color: var(--plum);
  background: rgba(107, 78, 113, 0.04);
  transform: translateY(-1px);
}

.btn-light {
  background: #F9F7F3;
  color: var(--plum);
  border-color: #F9F7F3;
  font-weight: 600;
}
.btn-light:hover {
  background: #fff;
  color: var(--plum-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.btn-whatsapp {
  background: var(--wa-green);
  color: #fff !important;
  border-color: var(--wa-green);
  font-weight: 600;
}
.btn-whatsapp:hover {
  background: var(--wa-green-deep);
  border-color: var(--wa-green-deep);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(18, 140, 126, 0.28);
}
.btn-whatsapp:focus-visible {
  background: var(--wa-green-deep);
  border-color: var(--wa-green-deep);
  color: #fff !important;
  outline: 2px solid #F9F7F3;
  outline-offset: 2px;
}
.btn-whatsapp:active { transform: translateY(0); background: #0E6F63; color: #fff !important; }

.btn-phone-soft {
  background: var(--sage-deep);
  color: #fff !important;
  border-color: var(--sage-deep);
  font-weight: 600;
}
.btn-phone-soft:hover {
  background: #556649;
  border-color: #556649;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(85, 102, 73, 0.24);
}
.btn-phone-soft:focus-visible {
  background: #556649;
  border-color: #556649;
  color: #fff !important;
  outline: 2px solid #F9F7F3;
  outline-offset: 2px;
}
.btn-phone-soft:active { transform: translateY(0); background: #445539; color: #fff !important; }

.contact-row {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--sp-5);
  padding-top: var(--sp-4);
  border-top: 1px dashed rgba(168, 164, 151, 0.38);
}
.contact-row-label {
  align-self: center;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-right: 4px;
}
.contact-row .btn { padding: 11px 16px; font-size: 0.86rem; border-radius: var(--r-sm); }

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
.cta-band-actions .btn { margin: 0; }

.mobile-contact-dock {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 950;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  background: rgba(249, 247, 243, 0.97);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-top: 1px solid rgba(168, 164, 151, 0.28);
  box-shadow: 0 -10px 30px rgba(43, 42, 39, 0.12);
  will-change: transform;
}
.mobile-contact-dock-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 580px;
  margin: 0 auto;
}
.mobile-contact-dock .btn {
  margin: 0;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 14px 14px;
  border-radius: var(--r-md);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.mobile-contact-dock .btn svg { width: 20px; height: 20px; flex-shrink: 0; }

.mobile-whatsapp-fab {
  display: none;
}

/* =========================================================
   MODALE — Formulaire WhatsApp (popup mobile + desktop)
   ========================================================= */
.wa-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(33, 28, 22, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: flex-end;
  justify-content: center;
  z-index: 2000;
  padding: 0;
  transition: opacity var(--dur-base, 200ms) var(--ease-out, ease-out);
  opacity: 0;
}
.wa-modal-backdrop.is-open {
  display: flex;
  opacity: 1;
}
@media (min-width: 768px) {
  .wa-modal-backdrop { align-items: center; padding: 24px; }
}
.wa-modal {
  width: 100%;
  max-width: 520px;
  background: #F9F7F3;
  border: 1px solid rgba(168, 164, 151, 0.28);
  box-shadow: 0 24px 80px rgba(33, 28, 22, 0.35);
  border-radius: var(--r-xl, 20px) var(--r-xl, 20px) 0 0;
  overflow: hidden;
  transform: translateY(16px) scale(0.98);
  opacity: 0;
  transition: transform var(--dur-base, 200ms) var(--ease-out, ease-out), opacity var(--dur-base, 200ms) var(--ease-out, ease-out);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  flex: 0 1 auto;
}
@media (min-width: 768px) {
  .wa-modal {
    border-radius: var(--r-xl, 20px);
    max-height: 86vh;
  }
}
.wa-modal-backdrop.is-open .wa-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.wa-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: linear-gradient(180deg, var(--plum-light, #8C6E91), var(--plum, #6B4E71));
  color: #fff;
  flex-shrink: 0;
}
.wa-modal-head h2 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-weight: 600;
}
.wa-modal-head p {
  margin: 2px 0 0;
  font-size: 0.82rem;
  opacity: 0.9;
  line-height: 1.3;
}
.wa-modal-close {
  appearance: none;
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 50%;
  width: 36px; height: 36px;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  line-height: 0;
  padding: 0;
  transition: background var(--dur-fast, 120ms) var(--ease-out), transform var(--dur-fast, 120ms) var(--ease-out);
}
.wa-modal-close:hover,
.wa-modal-close:focus-visible {
  background: rgba(255,255,255,0.24);
  transform: scale(1.05);
  outline: none;
}
.wa-modal-close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.wa-modal-close svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
}
.wa-modal-body {
  padding: 18px 20px 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.wa-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.wa-form-field label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #2A241E;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.wa-required {
  color: #C0392B;
  font-weight: 600;
  font-size: 0.95em;
  line-height: 1;
}
.wa-form-field input[type="text"],
.wa-form-field select,
.wa-form-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border-radius: var(--r-md, 10px);
  background: #fff;
  border: 1px solid #B9B3A5;
  color: #2A241E;
  font-size: 0.95rem;
  font-family: inherit;
  line-height: 1.35;
  box-sizing: border-box;
  transition: border-color var(--dur-fast, 120ms) var(--ease-out), box-shadow var(--dur-fast, 120ms) var(--ease-out);
  box-shadow: 0 1px 2px rgba(33, 28, 22, 0.03) inset;
}
.wa-form-field textarea {
  min-height: 68px;
  max-height: 120px;
  resize: vertical;
  padding-top: 12px;
}
.wa-form-field input::placeholder,
.wa-form-field textarea::placeholder {
  color: #898070;
}
.wa-form-field input:focus,
.wa-form-field select:focus,
.wa-form-field textarea:focus {
  outline: none;
  border-color: var(--plum, #6B4E71);
  box-shadow: 0 0 0 3px rgba(107, 78, 113, 0.14);
}
.wa-form-field.has-error input,
.wa-form-field.has-error select,
.wa-form-field.has-error textarea {
  border-color: #C0392B;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.10);
}
.wa-error-msg {
  color: #A9281C;
  font-size: 0.8rem;
  line-height: 1.25;
  min-height: 18px;
  margin: 2px 2px 0;
  display: block;
}
.wa-charcount {
  align-self: flex-end;
  font-size: 0.75rem;
  color: #898070;
  margin-top: -4px;
}
.wa-legal {
  margin: 10px 2px 14px;
  padding-top: 10px;
  border-top: 1px dashed rgba(168, 164, 151, 0.35);
  color: #6A6256;
  font-size: 12px;
  line-height: 1.35;
}
.wa-submit {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: var(--r-md, 10px);
  background: var(--plum, #6B4E71);
  color: #fff !important;
  border: 1.5px solid var(--plum, #6B4E71);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: background var(--dur-fast, 120ms) var(--ease-out), transform var(--dur-fast, 120ms) var(--ease-out), box-shadow var(--dur-fast, 120ms) var(--ease-out);
  box-shadow: 0 10px 24px rgba(107, 78, 113, 0.22);
}
.wa-submit:hover {
  background: var(--plum-light, #8C6E91);
  border-color: var(--plum-light, #8C6E91);
  transform: translateY(-1px);
  color: #fff !important;
  box-shadow: 0 14px 28px rgba(140, 110, 145, 0.28);
}
.wa-submit:focus-visible {
  outline: 3px solid #F9F7F3;
  outline-offset: 2px;
  background: var(--plum-light, #8C6E91);
  color: #fff !important;
}
.wa-submit:active {
  transform: translateY(0);
  background: var(--plum-deep, #53385A);
  border-color: var(--plum-deep, #53385A);
  color: #fff !important;
}
.wa-submit svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(249, 247, 243, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}
.site-header.is-scrolled {
  border-bottom-color: rgba(168, 164, 151, 0.22);
  background: rgba(249, 247, 243, 0.94);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-mark { width: 56px; height: 56px; flex-shrink: 0; display: block; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand-sub {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-top: 4px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.6vw, 24px);
  min-width: 0;
}
.nav-list li {
  min-width: 0;
  max-width: clamp(110px, 12.5vw, 180px);
}
.nav-list a {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  padding: 6px 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.nav-list a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1.5px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-fast) var(--ease-out);
}
.nav-list a:hover { color: var(--ink); }
.nav-list a:hover::after { transform: scaleX(1); }

.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 40px; height: 40px;
  padding: 10px 8px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
  padding: 4px var(--gutter) var(--sp-6);
  border-top: 1px solid rgba(168, 164, 151, 0.22);
  background: var(--canvas);
}
.mobile-nav ul {
  display: grid;
  gap: var(--sp-3);
  padding-top: var(--sp-4);
}
.mobile-nav a {
  display: block;
  padding: 10px 4px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid rgba(168, 164, 151, 0.15);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: clamp(44px, 7vw, var(--sp-9)) 0 clamp(60px, 9vw, 110px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -10%; right: -20%;
  width: 60%; height: 80%;
  background: radial-gradient(ellipse at top right,
              rgba(159, 174, 143, 0.18), transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(239, 239, 231, 0.55));
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.65rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 var(--sp-4);
}
.hero-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--plum);
  position: relative;
}
.hero-sub {
  color: var(--muted);
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  max-width: 42ch;
  margin: var(--sp-5) 0 var(--sp-6);
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-5);
  color: var(--muted);
  font-size: 0.86rem;
}
.hero-meta li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-meta svg { color: var(--sage); }

/* Hero media */
.hero-media {
  position: relative;
}
.hero-photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  aspect-ratio: 4 / 5;
  box-shadow: var(--sh-3);
}
.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 8s var(--ease-inout);
}
.hero:hover .hero-photo { transform: scale(1.06); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
              rgba(107,78,113,0) 50%,
              rgba(107,78,113,0.08) 100%);
  pointer-events: none;
}

/* Signature : carte info chevauchante */
.hero-info-card {
  position: absolute;
  left: -22px;
  bottom: -20px;
  width: min(310px, 76%);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(168, 164, 151, 0.25);
  border-radius: var(--r-lg);
  padding: 22px 22px 20px;
  box-shadow: var(--sh-2);
  backdrop-filter: blur(6px);
  animation: cardFloat 8s var(--ease-inout) infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}
.hero-info-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(168, 164, 151, 0.4);
}
.hero-info-head h3 {
  font-size: 1.08rem;
  margin: 2px 0 0;
  color: var(--sage-deep);
  font-family: var(--font-display);
  font-weight: 600;
}
.hero-info-list {
  display: grid;
  gap: 8px;
  padding-right: 30px;
}
.hero-info-list li {
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-info-list li span {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-info-heart {
  position: absolute;
  right: 20px; bottom: 18px;
  color: var(--plum);
  opacity: 0.85;
}

/* ---------- BENEFITS ---------- */
.benefits { padding: var(--sp-8) 0 var(--sp-7); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(18px, 3vw, 30px);
  text-align: center;
}
.benefit-item {
  margin: 0;
  padding: var(--sp-5) var(--sp-3) var(--sp-4);
  border-radius: var(--r-lg);
  transition: transform var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out);
}
.benefit-item:hover {
  transform: translateY(-4px);
  background: var(--sage-soft);
}
.benefit-ico {
  width: 148px; height: 148px;
  margin: 0 auto var(--sp-4);
  border-radius: 50%;
  background: linear-gradient(180deg, #fff, var(--sage-soft));
  border: 1px solid rgba(159, 174, 143, 0.25);
  display: grid;
  place-items: center;
  color: var(--sage-deep);
  box-shadow: inset 0 -4px 10px rgba(159, 174, 143, 0.08);
  transition: all var(--dur-base) var(--ease-out);
  overflow: hidden;
}
.benefit-ico svg, .benefit-ico img {
  max-width: 92%;
  max-height: 92%;
  object-fit: contain;
  display: block;
}
.benefit-item:hover .benefit-ico {
  color: #fff;
  background: linear-gradient(145deg, var(--sage), var(--sage-deep));
  box-shadow: 0 8px 18px rgba(127, 146, 114, 0.22);
}
.benefit-item:hover .benefit-ico img.glyph {
  filter: brightness(0) invert(1);
}
.benefit-subtle { background: var(--sage-soft); }
.benefit-highlight { background: var(--sage-soft); }
.benefit-highlight .benefit-ico {
  background: linear-gradient(145deg, var(--sage), var(--sage-deep));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 22px rgba(127, 146, 114, 0.28);
}
.benefit-highlight .benefit-ico img.glyph {
  filter: brightness(0) invert(1);
}
.benefit-item figcaption {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
}

/* ---------- PROGRAMME ---------- */
.programme {
  padding: clamp(56px, 8vw, var(--sp-10)) 0;
  background: var(--sage-soft);
  position: relative;
  overflow: hidden;
}
.programme::before {
  content: "";
  position: absolute;
  top: 10%; left: -10%;
  width: 35%; height: 55%;
  background: radial-gradient(ellipse at top left,
              rgba(168, 134, 76, 0.12), transparent 60%);
  pointer-events: none;
}
.programme-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.25fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: start;
  position: relative;
}
.programme-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-3);
}

.timeline {
  position: relative;
  margin: var(--sp-6) 0 var(--sp-6) 12px;
  padding: 0;
  list-style: none;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 12px; bottom: 12px;
  left: 20px;
  width: 1.5px;
  background: linear-gradient(180deg,
              var(--sage) 0%,
              rgba(159,174,143,0.3) 70%,
              transparent 100%);
}
.timeline-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  position: relative;
  padding-bottom: var(--sp-5);
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-step::after { display: none; }
.timeline-ico {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--sage);
  display: grid;
  place-items: center;
  color: var(--sage-deep);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px var(--sage-soft);
  transition: all var(--dur-base) var(--ease-out);
  overflow: hidden;
}
.timeline-ico svg, .timeline-ico img {
  max-width: 93%;
  max-height: 93%;
  object-fit: contain;
  display: block;
}
.timeline-step:hover .timeline-ico {
  background: var(--plum);
  border-color: var(--plum);
  color: #fff;
  transform: scale(1.08);
}
.timeline-step:hover .timeline-ico .timeline-glyph,
.timeline-final .timeline-ico .timeline-glyph {
  filter: brightness(0) invert(1);
}
.timeline-body h4 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
  margin: 6px 0 4px;
}
.timeline-body p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}
.timeline-final .timeline-ico {
  background: linear-gradient(145deg, var(--gold), var(--gold-soft));
  border-color: var(--gold);
  color: #fff;
}

/* Badges */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--sp-3);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 4px;
  font-size: 0.80rem;
  color: var(--muted);
  background: #fff;
  border: 1px solid rgba(168, 164, 151, 0.25);
  border-radius: 999px;
  transition: all var(--dur-fast) var(--ease-out);
}
.badge svg { color: var(--sage-deep); flex-shrink: 0; }
.badge img {
  width: 72px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
.badge:hover {
  border-color: var(--sage);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: var(--sh-1);
}
.note-geo {
  font-size: 0.76rem;
  color: var(--muted);
  font-style: italic;
  margin: 0;
}
.programme-cta-details { margin-top: 22px; }
@media (min-width: 768px) { .programme-cta-details { max-width: 320px; } }

/* ---------- MODALE DÉTAILS PROGRAMME RENAISSANCE ---------- */
.prog-modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(33, 28, 22, .55);
  backdrop-filter: blur(6px);
  display: none; align-items: flex-end; justify-content: center;
  z-index: 2000; opacity: 0;
  transition: opacity .2s var(--ease-out);
}
.prog-modal-backdrop.is-open { display: flex; opacity: 1; }
@media (min-width: 768px) {
  .prog-modal-backdrop { align-items: center; padding: 24px; }
}
.prog-modal {
  width: 100%;
  max-width: 760px;
  background: #F9F7F3;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  max-height: 92vh;
  transform: translateY(16px) scale(.98); opacity: 0;
  transition: transform var(--dur-base, 200ms) var(--ease-out),
              opacity var(--dur-base, 200ms) var(--ease-out);
  display: flex; flex-direction: column;
}
@media (min-width: 768px) {
  .prog-modal {
    border-radius: var(--r-xl);
    max-height: 86vh;
  }
}
.prog-modal-backdrop.is-open .prog-modal { transform: translateY(0) scale(1); opacity: 1; }

.prog-modal-head {
  background: linear-gradient(180deg, var(--plum-light, #8C6E91), var(--plum, #6B4E71));
  color: #fff;
  padding: 18px 20px;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
  border-radius: inherit;
  border-bottom-left-radius: 0; border-bottom-right-radius: 0;
}
.prog-modal-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 4.2vw, 1.55rem);
  line-height: 1.2;
  color: #fff;
}
.prog-modal-head p {
  margin: 6px 0 0;
  font-size: 0.86rem;
  opacity: .88;
  line-height: 1.4;
}
.prog-modal-close {
  appearance: none; width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
  display: grid; place-items: center;
  cursor: pointer; padding: 0; line-height: 0; flex-shrink: 0;
}
.prog-modal-close:hover { background: rgba(255,255,255,.24); transform: scale(1.05); }
.prog-modal-close:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

.prog-modal-body {
  padding: 20px 20px 22px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.prog-section { margin-bottom: 26px; }
.prog-section:last-child { margin-bottom: 6px; }
.prog-section-title {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  color: var(--plum-deep, #53385A);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.3;
}
.prog-num {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--plum);
  color: #fff;
  display: grid; place-items: center;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(107, 78, 113, .18);
}
.prog-kicker {
  display: inline-block;
  color: var(--sage-deep, #556649);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 0.7rem;
  margin-bottom: 8px;
}
.prog-lede {
  color: #3A332B;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 12px;
}
.prog-list {
  list-style: none; padding: 0; margin: 6px 0 0;
  display: flex; flex-direction: column; gap: 8px;
}
.prog-list li {
  position: relative;
  padding-left: 26px;
  color: #3A332B;
  font-size: 0.92rem;
  line-height: 1.5;
}
.prog-list li::before {
  content: "";
  position: absolute; left: 4px; top: 0.55em;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #A8864C, #8B6A38);
  box-shadow: 0 0 0 3px rgba(168, 134, 76, .10);
}
.prog-benefits-grid,
.prog-results-grid {
  list-style: none; padding: 0; margin: 6px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 520px) {
  .prog-benefits-grid, .prog-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
  }
}
.prog-benefits-grid li,
.prog-results-grid li {
  background: #fff;
  padding: 12px 14px 12px 40px;
  border-radius: var(--r-md, 10px);
  border: 1px solid #E6DFD3;
  color: #3A332B;
  font-size: 0.9rem;
  line-height: 1.45;
  position: relative;
  box-shadow: 0 1px 3px rgba(33, 28, 22, .03);
}
.prog-benefits-grid li::before,
.prog-results-grid li::before {
  content: "";
  position: absolute;
  left: 14px; top: 14px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--sage-deep, #556649);
  box-shadow: 0 0 0 3px rgba(85, 102, 73, .12);
}
.prog-benefits-grid li::after,
.prog-results-grid li::after {
  content: "";
  position: absolute; left: 19px; top: 18px;
  width: 4px; height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.prog-target-card {
  background: #fff;
  border: 1px solid #E6DFD3;
  border-left: 4px solid var(--plum);
  padding: 14px 16px;
  border-radius: var(--r-md, 10px);
  color: #3A332B;
  font-size: 0.92rem;
  line-height: 1.55;
  box-shadow: 0 6px 16px rgba(107, 78, 113, .05);
}
.prog-target-card .prog-target-title {
  color: var(--plum-deep, #53385A);
  font-weight: 700;
  margin-bottom: 6px;
}
.prog-target-list {
  list-style: none; margin: 6px 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.prog-target-list li {
  position: relative; padding-left: 24px;
  color: #3A332B;
  font-size: 0.9rem;
  line-height: 1.5;
}
.prog-target-list li::before {
  content: "✦";
  position: absolute; left: 2px; top: 0;
  color: var(--plum, #6B4E71);
  font-weight: 700;
  font-size: 0.95rem;
}
.prog-footer-cta {
  margin-top: 10px; padding-top: 18px;
  border-top: 1px dashed rgba(168,164,151,.4);
  display: flex; justify-content: center;
}
.prog-footer-cta .btn {
  min-width: 260px;
  width: 100%;
}
@media (min-width: 520px) { .prog-footer-cta .btn { width: auto; } }



/* ---------- SOINS ---------- */
.soins { padding: clamp(56px, 8vw, var(--sp-10)) 0; }
.section-head { margin-bottom: var(--sp-7); }
.soins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
.soin-card {
  background: #fff;
  border: 1px solid rgba(168, 164, 151, 0.2);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}
.soin-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-2);
  border-color: rgba(159, 174, 143, 0.45);
}
.soin-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--sage-soft);
}
.soin-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 6s var(--ease-inout);
}
.soin-card:hover .soin-img img { transform: scale(1.08); }
.soin-body { padding: var(--sp-5) var(--sp-5) var(--sp-5); }
.soin-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}
.soin-body p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: var(--sp-4);
}
.soin-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--plum);
  position: relative;
}
.soin-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}
.soin-link:hover::after { transform: scaleX(1); }

/* Carte CTA guide */
.cta-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(160deg,
              var(--sage-deep) 0%,
              var(--sage) 100%);
  color: #fff;
  border-radius: var(--r-lg);
  padding: var(--sp-6) var(--sp-6);
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: "";
  position: absolute;
  inset: -40% -30% auto auto;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 60%);
  pointer-events: none;
}
.cta-card::after {
  content: "";
  position: absolute;
  bottom: -20%; left: -10%;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(168, 134, 76, 0.18);
  filter: blur(20px);
  pointer-events: none;
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card-ico {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--sp-4);
  color: var(--gold-soft);
}
.cta-card-tag {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--r-xs);
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.28);
  font-weight: 600;
}
.cta-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.cta-card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  margin-bottom: var(--sp-5);
}
.cta-card .btn-primary {
  background: var(--plum);
  border-color: var(--plum);
}
.cta-card .btn-primary:hover {
  background: var(--plum-light);
  border-color: var(--plum-light);
}

/* CTA guide en pleine largeur */
.cta-card--fullwidth {
  width: 100%;
  max-width: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
}
.cta-card--fullwidth .cta-card-inner {
  padding-block: var(--sp-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 720px;
  margin-inline: auto;
}
.cta-card--fullwidth::before {
  inset: -40% -20% auto auto;
  width: 420px; height: 420px;
}
.cta-card--fullwidth::after {
  width: 320px; height: 320px;
}
.cta-card--fullwidth h3 { font-size: clamp(1.55rem, 2.5vw, 1.85rem); }
.cta-card--fullwidth p { font-size: 0.96rem; }
.cta-card--fullwidth .btn-primary {
  max-width: 320px;
  width: 100%;
}

@media (min-width: 768px) {
  .cta-card--fullwidth .cta-card-inner { padding-block: var(--sp-9); }
}

/* ---------- AUTRES PRESTATIONS ---------- */
.autres { padding: clamp(56px, 8vw, var(--sp-10)) 0; background: var(--canvas); position: relative; }
.autres-head .section-title em { color: var(--gold); }
.autres-intro {
  max-width: 62ch;
  margin: var(--sp-3) auto 0;
  color: var(--muted);
  line-height: 1.72;
  font-size: 0.98rem;
  text-align: center;
}
.autres-intro sup { color: var(--plum); font-weight: 700; font-size: 0.8em; }

.autres-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
  max-width: 1160px;
  margin: var(--sp-8) auto 0;
}
.autres-card {
  background: #fff;
  border-radius: 28px;
  padding: clamp(28px, 4vw, 44px) clamp(24px, 3.4vw, 40px);
  box-shadow: var(--sh-1);
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
  border: 1px solid rgba(42, 36, 30, 0.05);
}
.autres-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 28px 28px 0 0;
}
.autres-card--plum::before { background: linear-gradient(90deg, var(--plum-deep), var(--sage-deep)); }
.autres-card--gold::before { background: linear-gradient(90deg, var(--gold), #c98a74); }
.autres-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-2);
}

.autres-card-head {
  text-align: center;
  padding-bottom: var(--sp-4);
  margin-bottom: var(--sp-5);
}
.autres-card-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 var(--sp-2);
}
.autres-card-sub {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
}
.autres-card-rule {
  display: block;
  width: 72%;
  height: 1px;
  margin: var(--sp-5) auto 0;
  background: linear-gradient(90deg, transparent, rgba(42,36,30,0.12), transparent);
}

.autres-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--sp-3);
}
.autres-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: baseline;
  gap: 12px;
  padding: 4px 0;
}
.autres-libelle {
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.35;
}
.autres-libelle sup { color: var(--plum); font-weight: 700; font-size: 0.75em; margin-left: 2px; }
.autres-sep {
  display: block;
  height: 1px;
  background: rgba(42, 36, 30, 0.12);
  opacity: 1;
  margin-bottom: 0.35em;
}
.autres-prix {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--plum-deep);
  text-align: right;
}
.autres-prix strong { font-weight: 500; }
.autres-prix--gold { color: var(--gold-deep); }
.autres-prix--plum { color: var(--plum-deep); }
.autres-line--highlight .autres-libelle { font-weight: 600; }
.autres-line--highlight .autres-prix { font-size: 1.9rem; }

.autres-card-desc {
  margin: var(--sp-6) 0 0;
  padding-top: var(--sp-4);
  border-top: 1px dashed rgba(42,36,30,0.08);
  font-size: 0.92rem;
  line-height: 1.68;
  color: var(--muted);
}

.autres-legal {
  max-width: fit-content;
  margin: var(--sp-7) auto 0;
  padding: var(--sp-3) var(--sp-5);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(42,36,30,0.08);
  color: var(--muted);
  font-size: 0.9rem;
  box-shadow: var(--sh-0);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.autres-legal-ico { color: var(--plum); flex-shrink: 0; }
.autres-legal sup { color: var(--plum); font-weight: 700; }

/* ---------- ABOUT + TÉMOIGNAGES ---------- */
.about { padding: clamp(56px, 8vw, var(--sp-10)) 0; background: var(--canvas-2); }
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}
.about-copy { position: relative; }
.about-portrait {
  position: relative;
  width: min(320px, 80%);
  margin: 0 0 var(--sp-6);
}
.about-portrait img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 6px solid #fff;
  box-shadow: var(--sh-3);
}
.about-leaf {
  position: absolute;
  left: -16px;
  bottom: -12px;
  width: 72px; height: 72px;
  transform: rotate(-18deg);
}
.about-text p {
  color: var(--muted);
  font-size: 0.96rem;
  margin-bottom: var(--sp-5);
  max-width: 56ch;
  line-height: 1.72;
}
.about-text p strong {
  color: var(--ink);
  font-weight: 600;
}
.about-lead {
  color: var(--ink) !important;
  font-size: 1.02rem !important;
  margin-bottom: var(--sp-7) !important;
  padding-left: var(--sp-4);
  border-left: 3px solid var(--gold);
  font-family: var(--ff-serif);
  line-height: 1.78 !important;
}
.about-chapters {
  display: grid;
  gap: var(--sp-6);
  margin-bottom: var(--sp-6);
}
.about-chapter {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-4);
  align-items: flex-start;
  padding: var(--sp-4);
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid rgba(168, 164, 151, 0.18);
  box-shadow: 0 2px 10px rgba(45, 38, 56, 0.04);
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}
.about-chapter:hover {
  transform: translateY(-2px);
  border-color: rgba(168, 134, 76, 0.35);
  box-shadow: 0 6px 22px rgba(45, 38, 56, 0.07);
}
.chapter-num {
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--plum);
  background: linear-gradient(135deg, rgba(107, 78, 113, 0.08), rgba(168, 134, 76, 0.09));
  border: 1px solid rgba(107, 78, 113, 0.15);
  border-radius: 999px;
  padding: 8px 12px;
  letter-spacing: 0.02em;
  line-height: 1;
  min-width: 46px;
  text-align: center;
}
.about-chapter h3 {
  font-family: var(--ff-serif);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 var(--sp-2);
  line-height: 1.35;
}
.about-chapter p {
  margin: 0 !important;
  max-width: none !important;
  font-size: 0.94rem !important;
}
.about-cta {
  padding-top: var(--sp-2);
  border-top: 1px dashed rgba(168, 164, 151, 0.4);
  margin-top: var(--sp-2);
}

/* Carrousel témoignages */
.testimonials {
  background: #fff;
  border: 1px solid rgba(168, 164, 151, 0.22);
  border-radius: var(--r-xl);
  padding: var(--sp-7) var(--sp-6) var(--sp-6);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right,
              rgba(168, 134, 76, 0.06), transparent 50%);
  pointer-events: none;
}
.testimonial-slider {
  position: relative;
  min-height: 280px;
}
.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(16px);
  transition: opacity var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-4) var(--sp-2);
}
.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}
.quote {
  width: 34px; height: 34px;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: var(--sp-4);
}
.testimonial-slide blockquote {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 var(--sp-5);
  font-style: italic;
  font-weight: 400;
  max-width: 42ch;
}
.testimonial-slide figcaption {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--plum);
  letter-spacing: 0.02em;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--sp-5);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(168, 164, 151, 0.2);
}
.slider-nav {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--sage-soft);
  border: 1px solid rgba(159, 174, 143, 0.3);
  color: var(--sage-deep);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all var(--dur-fast) var(--ease-out);
}
.slider-nav:hover {
  background: var(--plum);
  color: #fff;
  border-color: var(--plum);
}
.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(168, 164, 151, 0.35);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: all var(--dur-fast) var(--ease-out);
}
.slider-dot.active {
  background: var(--plum);
  width: 22px;
  border-radius: 4px;
}

/* ---------- TRUST BAR ---------- */
.trust { padding: var(--sp-7) 0; border-top: 1px solid rgba(168, 164, 151, 0.15); border-bottom: 1px solid rgba(168, 164, 151, 0.15); background: #fff; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(18px, 3vw, 30px);
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  color: var(--muted);
}
.trust-item svg { color: var(--sage-deep); flex-shrink: 0; }
.trust-item p {
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.45;
  color: var(--muted);
}

/* ---------- TARIFS ---------- */
.tarifs {
  padding: clamp(56px, 8vw, var(--sp-10)) 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 15% 10%, rgba(232, 189, 198, 0.55), transparent 55%),
    radial-gradient(ellipse at 85% 90%, rgba(245, 210, 175, 0.55), transparent 55%),
    linear-gradient(180deg, #FDF5F2 0%, #FBEFE2 100%);
}
.tarifs::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent 0 120px,
      rgba(168, 134, 76, 0.04) 120px 121px
    );
  pointer-events: none;
}
.tarifs > * { position: relative; z-index: 1; }

.tarifs-head {
  text-align: center;
  margin-bottom: var(--sp-8);
}
.tarifs-head .eyebrow { margin-bottom: var(--sp-4); }
.tarifs-head .section-title {
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  letter-spacing: -0.02em;
}
.tarifs-head .title-rule {
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  width: 80px;
  height: 2.5px;
}
.tarifs-title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(120deg, var(--plum), var(--plum-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tarifs-intro {
  color: var(--muted);
  max-width: 58ch;
  margin: var(--sp-5) auto 0;
  font-size: 0.98rem;
  line-height: 1.7;
}

/* Stack des cartes pricing */
.pricing-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 44px);
  max-width: 1180px;
  margin: 0 auto;
}

/* Carte pricing — 3 colonnes */
.pricing {
  display: grid;
  grid-template-columns: 0.95fr 1fr 0.9fr;
  min-height: 420px;
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(107, 78, 113, 0.12),
    0 8px 24px rgba(168, 134, 76, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(168, 164, 151, 0.16);
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.pricing:hover {
  transform: translateY(-3px);
  box-shadow:
    0 32px 80px rgba(107, 78, 113, 0.16),
    0 12px 32px rgba(168, 134, 76, 0.1);
}

/* Variante carte unique (solo Renaissance) — max width élégant centré */
.pricing--solo {
  max-width: 1080px;
  margin-inline: auto;
}

/* COLONNE 1 — Features (fond coloré) */
.pricing-col--features {
  padding: clamp(28px, 3.5vw, 44px) clamp(22px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #FFF8F2;
  position: relative;
  overflow: hidden;
}
.pricing-col--features::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(255, 255, 255, 0.12), transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(0, 0, 0, 0.08), transparent 55%);
  pointer-events: none;
}
.pricing-col--plum {
  background: linear-gradient(160deg, #6B4E71 0%, #8A6488 55%, #A47B9A 100%);
}
.pricing-col--gold {
  background: linear-gradient(160deg, #A8864C 0%, #BE9A60 55%, #D4B17A 100%);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: clamp(14px, 1.8vw, 22px);
  position: relative;
  z-index: 1;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.96rem;
  line-height: 1.45;
  color: inherit;
  font-weight: 500;
  letter-spacing: 0.002em;
}
.feat-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  opacity: 0.92;
  color: inherit;
}

/* COLONNE 2 — Prix + CTA (blanc) */
.pricing-col--center {
  padding: clamp(28px, 3.5vw, 44px) clamp(20px, 2.8vw, 32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--sp-3);
  position: relative;
  background: #fff;
}

.pricing-label {
  font-size: 0.72rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin: 0;
}

.pricing-drop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: var(--sp-2) 0;
  color: var(--plum);
  opacity: 0.92;
}
.pricing-drop--alt { color: var(--gold); }

.pricing-amount {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(4rem, 8vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: var(--sp-1) 0 var(--sp-2);
  color: var(--plum-deep);
  position: relative;
}
.pricing-amount sup {
  font-size: 0.22em;
  color: var(--gold);
  top: -1.4em;
  margin-left: 2px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0;
}
.pricing-amount--alt {
  color: #8D6A38;
}

.pricing-topline {
  margin: var(--sp-2) 0 0;
  padding: 0;
  text-align: right;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sage-deep);
}
.pricing-bottomline {
  margin: var(--sp-1) 0 var(--sp-3);
  padding: 0;
  text-align: left;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
}
.pricing-bottomline strong {
  color: var(--plum);
  font-weight: 700;
}

.pricing-old {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.4;
  color: var(--plum);
  margin: 0 0 var(--sp-4);
  max-width: 24ch;
}
.pricing-old strong {
  font-weight: 600;
  font-size: 1.08em;
  letter-spacing: -0.01em;
}
.pricing-old--alt {
  color: #8D6A38;
}

.pricing-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--plum-deep);
  color: #F9F7F3;
  text-decoration: none;
  border-radius: 14px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
  box-shadow: 0 8px 22px rgba(107, 78, 113, 0.22);
  margin: var(--sp-1) 0 var(--sp-4);
}
.pricing-cta:hover {
  background: var(--plum);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(107, 78, 113, 0.28);
}
.pricing-cta:active { transform: translateY(0); }
.pricing-cta--alt {
  background: linear-gradient(145deg, #B98B48, #A8864C);
  box-shadow: 0 8px 22px rgba(168, 134, 76, 0.26);
}
.pricing-cta--alt:hover {
  background: linear-gradient(145deg, #C79A58, #B38850);
  box-shadow: 0 12px 28px rgba(168, 134, 76, 0.32);
}

.pricing-note {
  font-size: 0.78rem;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  letter-spacing: 0.01em;
  opacity: 0.95;
}
.pricing-note svg {
  color: var(--gold);
  opacity: 0.9;
}
.pricing-note--alt svg {
  color: var(--plum);
}

/* Logos CB · Visa · MC · Alma · SumUp */
.pay-logos {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 14px;
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(129, 90, 160, 0.07);
  border: 1px solid rgba(129, 90, 160, 0.18);
  border-radius: var(--r-lg, 16px);
}
.pay-logos > li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  min-height: 0;
  min-width: 0;
  flex-shrink: 0;
}
.pay-logos img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 36px;
  object-fit: contain;
}
.pay-logos .pay-logo--cb svg { filter: drop-shadow(0 1px 0 rgba(0,0,0,0.04)); }
.pay-sep {
  color: var(--plum);
  opacity: 0.35;
  font-size: 1.15rem;
  line-height: 1;
  padding: 0 2px;
}
.pay-proc {
  gap: 6px;
  font-size: 0.74rem;
  color: var(--plum);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.pay-proc img { max-height: 26px; }
.pay-proc span {
  line-height: 1;
}

@media (max-width: 959px) {
  .pay-logos { gap: 10px 12px; margin-top: 12px; padding: 11px 11px; }
  .pay-logos img { max-height: 32px; }
  .pay-proc img { max-height: 24px; }
}
@media (max-width: 679px) {
  .pay-logos { gap: 8px 10px; margin-top: 10px; padding: 10px 8px; }
  .pay-logos img { max-height: 28px; }
  .pay-logos .pay-logo--cb svg { transform: scale(0.92); transform-origin: center; }
  .pay-proc img { max-height: 22px; }
}

/* COLONNE 3 — Image */
.pricing-col--media {
  position: relative;
  background: var(--canvas-2);
  overflow: hidden;
  min-height: 420px;
}
.pricing-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform var(--dur-long) var(--ease-out);
}
.pricing:hover .pricing-img {
  transform: scale(1.07);
}
.pricing-col--media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(107, 78, 113, 0.15) 100%);
  pointer-events: none;
}

/* PRESTATIONS À L'UNITÉ (sous les cartes) */
.pricing-units {
  max-width: 1180px;
  margin: clamp(44px, 7vw, 72px) auto 0;
}
.pricing-units-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 var(--sp-5);
  padding-bottom: var(--sp-3);
  position: relative;
  display: inline-block;
}
.pricing-units-title::after {
  content: "";
  position: absolute;
  left: 0;
  right: -20px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--plum), var(--gold), transparent);
  border-radius: 2px;
}

.pricing-units-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 18px);
}
.unit {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(168, 164, 151, 0.18);
  border-radius: 18px;
  padding: var(--sp-4) var(--sp-4);
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: var(--sp-3);
  row-gap: 4px;
  align-items: center;
  transition: transform var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
}
.unit:hover {
  transform: translateY(-2px);
  border-color: rgba(168, 134, 76, 0.3);
  box-shadow: 0 10px 24px rgba(107, 78, 113, 0.08);
}
.unit-label {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.35;
  grid-column: 1 / 2;
}
.unit-prix {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--plum-deep);
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  align-self: center;
  justify-self: end;
  white-space: nowrap;
}
.unit-mod {
  font-size: 0.76rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  grid-column: 1 / 2;
}
.unit--spot {
  background: linear-gradient(145deg, rgba(168, 134, 76, 0.12), rgba(107, 78, 113, 0.06));
  border-color: rgba(168, 134, 76, 0.28);
}
.unit--spot .unit-prix { color: var(--plum); }

.tarifs-legal {
  margin: var(--sp-7) auto 0;
  max-width: 920px;
  padding: var(--sp-4) var(--sp-5);
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--muted);
  text-align: center;
  border-top: 1px dashed rgba(168, 164, 151, 0.4);
  border-bottom: 1px dashed rgba(168, 164, 151, 0.4);
}
.tarifs-legal sup {
  color: var(--gold);
  font-size: 0.8em;
  font-weight: 600;
  margin-right: 2px;
}
.prix-star sup {
  font-size: 0.7em;
  color: var(--gold);
  margin-left: 1px;
  font-family: var(--font-body);
  font-weight: 700;
}

.tarifs-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-4);
  margin-top: var(--sp-7);
}

/* ---------- FINAL CTA BAND ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--plum-deep) 0%, var(--plum) 60%, var(--plum-light) 100%);
  color: #F9F7F3;
  padding: var(--sp-7) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 40%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(168,134,76,0.25), transparent 60%);
  pointer-events: none;
}
.cta-band::after {
  content: "";
  position: absolute;
  bottom: -30%; left: 5%;
  width: 25%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 60%);
  pointer-events: none;
}
.cta-band-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr auto 1fr;
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}
.cta-band-copy { min-width: 0; }
.cta-band-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.35;
  color: #F9F7F3;
  margin: var(--sp-3) 0 0;
  font-weight: 500;
  max-width: 44ch;
}
.cta-band-text strong {
  color: var(--gold-soft);
  font-weight: 600;
}
.cta-band-note {
  text-align: right;
  position: relative;
  min-width: 0;
}
.mini-leaf {
  position: absolute;
  right: -4px; top: -30px;
  width: 80px; height: 80px;
  opacity: 0.9;
  pointer-events: none;
}
.cta-band-note p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}
.cta-band-note em { color: #fff; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: #F3EEE4;
  padding: var(--sp-9) 0 var(--sp-6);
  color: var(--muted);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent 0 80px,
      rgba(168,134,76,0.04) 80px 81px
    );
  pointer-events: none;
}
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 var(--sp-5);
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col li { font-size: 0.88rem; }
.footer-col a {
  color: var(--muted);
  display: block;
  overflow-wrap: anywhere;
  line-height: 1.45;
  padding-block: 2px;
}
.footer-col a:hover { color: var(--plum); }
.f-contact {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
}
.f-contact svg { color: var(--sage-deep); flex-shrink: 0; }

.footer-socials { position: relative; }
.footer-leaf {
  position: absolute;
  right: -20px; bottom: -20px;
  width: 110px; height: 110px;
  pointer-events: none;
  opacity: 0.6;
}
.social-row { display: flex; gap: var(--sp-3); }
.social {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(159, 174, 143, 0.18);
  color: var(--sage-deep);
  display: grid;
  place-items: center;
  transition: all var(--dur-fast) var(--ease-out);
}
.social:hover {
  background: var(--plum);
  color: #fff;
  transform: translateY(-2px);
}

.footer-bottom {
  position: relative;
  margin-top: var(--sp-8);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(168, 164, 151, 0.3);
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted-soft);
}
.footer-bottom p { margin: 0; }

/* =========================================================
   RESPONSIVE — Mobile-first breakdown
   ========================================================= */

/* XLarge et plus — 1200+ */
@media (min-width: 1200px) {
  .hero-info-card { left: -32px; bottom: -26px; }
}

/* Ordinateur intermédiaire — 1024 à 1199px */
@media (min-width: 1024px) and (max-width: 1199px) {
  .nav-list a { font-size: 0.82rem; }
  .nav-list li { max-width: clamp(90px, 11.5vw, 145px); }
  .nav-list { gap: 14px; }
  .header-cta.btn-sm { padding-inline: 14px; font-size: 0.82rem; }
}

/* Tablette — < 1024px */
@media (max-width: 1023px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 560px; margin: 0 auto; width: 100%; }

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

  .programme-grid { grid-template-columns: 1fr; }
  .programme-photo { max-width: 500px; margin: 0 auto; width: 100%; }

  .soins-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-card { grid-column: span 2; }

  .autres-grid { grid-template-columns: 1fr; max-width: 620px; }
  .autres-card { padding: var(--sp-6) var(--sp-5); }

  .pricing {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .pricing-col--features { order: 2; }
  .pricing-col--center   { order: 1; padding: var(--sp-7) var(--sp-6) var(--sp-5); }
  .pricing-col--media    { order: 3; min-height: 280px; }
  .pricing-units-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .about-grid { grid-template-columns: 1fr; }
  .about-portrait { margin: 0 auto var(--sp-6); }

  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-item:last-child { grid-column: span 3; }

  .cta-band-grid {
    grid-template-columns: 1fr auto;
    row-gap: var(--sp-6);
  }
  .cta-band-copy { grid-column: 1 / -1; }
  .cta-band-note { text-align: left; }
  .mini-leaf { left: auto; right: -4px; }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: var(--sp-7);
  }
  .footer-brand { grid-column: 1 / -1; }
}

/* Mobile — < 680px */
@media (max-width: 679px) {
  :root { --gutter: 20px; }

  .header-inner { height: 70px; }
  .brand-title { font-size: 1.3rem; }
  .brand-mark { width: 44px; height: 44px; }

  .hero { padding-top: var(--sp-6); padding-bottom: var(--sp-8); }
  .hero-title { font-size: clamp(2rem, 9vw, 2.6rem); }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .hero-photo-wrap { aspect-ratio: 3 / 4; }
  .hero-info-card {
    position: relative;
    inset: auto;
    margin: var(--sp-5) auto 0;
    width: 100%;
    max-width: 360px;
    animation: none;
    transform: translateY(-4px);
  }
  .hero-info-heart { display: none; }

  .about-lead {
    font-size: 0.98rem !important;
    padding-left: var(--sp-3);
    margin-bottom: var(--sp-6) !important;
  }
  .about-chapter {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
    padding: var(--sp-3);
  }
  .chapter-num {
    justify-self: flex-start;
  }
  .hero-meta { flex-direction: column; gap: var(--sp-3); }

  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
  .benefit-item { padding: var(--sp-4) var(--sp-3); }
  .benefit-ico { width: 110px; height: 110px; }

  .timeline { margin-left: 4px; }
  .timeline-step { grid-template-columns: 64px 1fr; gap: 18px; }
  .timeline-ico { width: 64px; height: 64px; box-shadow: 0 0 0 7px var(--sage-soft); }
  .timeline::before { left: 31px; }

  .soins-grid { grid-template-columns: 1fr; }
  .cta-card { grid-column: auto; }

  .autres-grid { margin-top: var(--sp-7); gap: var(--sp-5); }
  .autres-card { border-radius: 24px; padding: var(--sp-6) var(--sp-5); }
  .autres-card-title { font-size: 1.8rem; }
  .autres-card-sub { font-size: 0.88rem; }
  .autres-line { grid-template-columns: minmax(0, 1fr) 12px minmax(0, 0.9fr); gap: 8px; }
  .autres-libelle { font-size: 0.92rem; }
  .autres-prix { font-size: 1.3rem; }
  .autres-line--highlight .autres-prix { font-size: 1.55rem; }
  .autres-card-desc { font-size: 0.88rem; margin-top: var(--sp-5); }
  .autres-legal {
    margin-top: var(--sp-6);
    padding: var(--sp-3) var(--sp-4);
    font-size: 0.8rem;
    text-align: left;
    left: auto;
    transform: none;
    max-width: 100%;
    display: flex;
  }

  .testimonials { padding: var(--sp-6) var(--sp-4); }
  .testimonial-slider { min-height: 320px; }
  .testimonial-slide blockquote { font-size: 1rem; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:last-child { grid-column: span 2; }

  .tarifs-head { margin-bottom: var(--sp-7); }
  .tarifs-intro { font-size: 0.92rem; }
  .pricing-stack { gap: var(--sp-6); }
  .pricing { border-radius: 24px; }
  .pricing-col--media { min-height: 220px; }
  .pricing-col--features { padding: var(--sp-6) var(--sp-5) var(--sp-6); }
  .pricing-features { gap: var(--sp-4); }
  .pricing-features li { font-size: 0.92rem; gap: 12px; }
  .feat-icon { width: 22px; height: 22px; }
  .pricing-col--center { padding: var(--sp-6) var(--sp-5) var(--sp-5); }
  .pricing-label { font-size: 0.66rem; letter-spacing: 0.3em; }
  .pricing-drop { width: 40px; height: 40px; margin: var(--sp-1) 0; }
  .pricing-amount { font-size: clamp(3.2rem, 13vw, 4.8rem); }
  .pricing-amount sup { font-size: 0.2em; }
  .pricing-old { font-size: 0.94rem; margin-bottom: var(--sp-3); }
  .pricing-cta { padding: 14px 24px; font-size: 0.96rem; margin-bottom: var(--sp-3); }
  .pricing-note { font-size: 0.74rem; }
  .pricing-units { margin-top: var(--sp-7); }
  .pricing-units-title { font-size: 1.2rem; }
  .pricing-units-grid { grid-template-columns: 1fr; gap: var(--sp-3); }
  .unit { padding: var(--sp-3) var(--sp-4); }
  .unit-prix { font-size: 1.05rem; }
  .tarifs-legal {
    margin-top: var(--sp-6);
    padding: var(--sp-4) var(--sp-3);
    font-size: 0.8rem;
    text-align: left;
  }
  .tarifs-cta {
    margin-top: var(--sp-6);
    flex-direction: column;
  }
  .tarifs-cta .btn { width: 100%; }

  .cta-band { padding: var(--sp-7) 0; }
  .cta-band-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .cta-band-note { text-align: left; }
  .mini-leaf { right: -10px; top: -24px; opacity: 0.6; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-leaf { right: 0; bottom: 0; opacity: 0.4; width: 80px; height: 80px; }

  .contact-row {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .contact-row-label { margin: 0 0 2px; }
  .contact-row .btn { width: 100%; justify-content: center; }

  /* Masquage sélectif mobile < 768 px des 4 boutons WhatsApp / Appeler HORS dock :
       - les 2 boutons du .contact-row (hero)
       - les 2 boutons du .cta-band-actions (avant footer)
     On conserve INTACTS :
       ✅ le dock .mobile-contact-dock (sticky en bas de page)
       ✅ les boutons contact du footer (téléphone / WhatsApp / email / adresse)
       ✅ les boutons CTA non-contact (ex: "Réserver mon échange" en .btn-light)
     ------------------------------------------------------------------ */
  .contact-row .btn-whatsapp,
  .contact-row .btn-phone-soft,
  .cta-band-actions .btn-whatsapp,
  .cta-band-actions .btn-phone-soft {
    display: none !important;
  }

  .cta-band-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .cta-band-actions .btn { width: 100%; justify-content: center; }
}

/* Dock WhatsApp + Téléphone — collé en bas de page SEULEMENT en mode mobile < 768 px
   (en bureau ≥ 768 px, on conserve les boutons contact du footer et du hero sans overlay)
   ============================================================ */
@media (max-width: 767px) {
  .mobile-contact-dock {
    display: block;
    left: 0; right: 0; bottom: 0;
  }
  .mobile-contact-dock-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 540px;
    margin: 0 auto;
  }
  .mobile-contact-dock .btn-phone-soft {
    background: #556649;
    border-color: #556649;
    color: #FFFFFF !important;
    box-shadow: 0 6px 18px rgba(85, 102, 73, 0.28);
  }
  .mobile-contact-dock .btn-phone-soft:hover,
  .mobile-contact-dock .btn-phone-soft:focus-visible {
    background: #445539;
    border-color: #445539;
    color: #FFFFFF !important;
  }
  .mobile-contact-dock .btn-phone-soft:active {
    background: #3A4831;
    border-color: #3A4831;
    color: #FFFFFF !important;
  }

  .mobile-whatsapp-fab {
    display: grid;
    position: fixed;
    right: 16px;
    bottom: calc(108px + env(safe-area-inset-bottom, 0px));
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--plum);
    color: #FFFFFF !important;
    box-shadow:
      0 10px 28px rgba(107, 78, 113, 0.38),
      0 2px 6px rgba(107, 78, 113, 0.22),
      inset 0 0 0 1px rgba(255,255,255,0.12);
    z-index: 970;
    place-items: center;
    padding: 0;
    line-height: 0;
    text-decoration: none;
    transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
    will-change: transform;
  }
  .mobile-whatsapp-fab:hover {
    background: var(--plum-light);
    color: #FFFFFF !important;
    transform: translateY(-2px) scale(1.03);
    box-shadow:
      0 14px 32px rgba(140, 110, 145, 0.40),
      0 3px 8px rgba(140, 110, 145, 0.24),
      inset 0 0 0 1px rgba(255,255,255,0.14);
  }
  .mobile-whatsapp-fab:focus-visible {
    background: var(--plum-light);
    color: #FFFFFF !important;
    outline: 3px solid #F9F7F3;
    outline-offset: 2px;
    box-shadow:
      0 14px 32px rgba(140, 110, 145, 0.40),
      0 3px 8px rgba(140, 110, 145, 0.24);
  }
  .mobile-whatsapp-fab:active {
    background: var(--plum-deep);
    color: #FFFFFF !important;
    transform: translateY(0) scale(0.97);
    box-shadow:
      0 6px 18px rgba(83, 56, 90, 0.40),
      inset 0 0 0 1px rgba(255,255,255,0.10);
  }
  .mobile-whatsapp-fab svg {
    width: 30px;
    height: 30px;
    display: block;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 0 rgba(255,255,255,0.12));
  }

  html { scroll-padding-bottom: 176px; }
  .site-footer { margin-bottom: 168px; }
}

/* =========================================================
   Motion preferences & accessibilité
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal-section { opacity: 1 !important; transform: none !important; }
}

@media (prefers-contrast: more) {
  :root {
    --ink: #000;
    --plum: #53385A;
    --sage-deep: #556649;
    --muted: #444;
    --muted-soft: #888;
  }
}

/* ==========================================================================
   RGPD / GESTION DES COOKIES — Endo'Harmonie Guadeloupe
   Palette plum/sage/gold héritée ; AAA contrast visé ; responsive
   ========================================================================== */

/* Bouton lien dans le footer */
.link-btn {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  text-align: left;
}
.link-btn:hover, .link-btn:focus-visible { color: var(--plum); text-decoration: underline; text-underline-offset: 3px; }
.link-btn:focus-visible { outline: 3px solid var(--plum-deep); outline-offset: 2px; border-radius: 3px; }

/* ---------- Bannière bottom sheet ---------- */
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 9995;
  background: #ffffff;
  border: 1px solid rgba(107,78,113,.14);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(43,42,39,.18), 0 4px 16px rgba(107,78,113,.08);
  color: var(--ink);
  transform: translateY(calc(100% + 40px));
  opacity: 0;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), opacity .35s ease;
  max-width: 1120px;
  margin: 0 auto;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 24px;
  padding: 22px 22px 20px;
  align-items: start;
}
.cookie-banner-copy { grid-column: 1 / -1; grid-row: 1; max-width: 78ch; }
.cookie-banner-kicker {
  display: inline-block;
  margin: 0 0 8px;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--plum-deep);
  font-weight: 600;
}
.cookie-banner-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 600;
  color: var(--ink);
}
.cookie-banner-desc {
  margin: 0;
  font-size: .92rem;
  line-height: 1.55;
  color: #3d3b36;
}
.cookie-link-inline {
  color: var(--plum-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}
.cookie-link-inline:hover { color: var(--plum-light); }
.cookie-link-inline:focus-visible { outline: 3px solid var(--plum-deep); outline-offset: 2px; border-radius: 3px; }

.cookie-banner-actions {
  grid-column: 1 / -1; grid-row: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.cookie-banner-close {
  position: absolute;
  top: 10px; right: 10px;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: transparent;
  border: 1px solid transparent;
  color: #5a5852;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.cookie-banner-close:hover { background: var(--sage-soft); color: var(--ink); border-color: rgba(159,174,143,.4); }
.cookie-banner-close:focus-visible { outline: 3px solid var(--plum-deep); outline-offset: 2px; color: var(--ink); }

/* Boutons génériques bannière / modale */
.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 20px;
  font: 600 .92rem/1.2 var(--font-body);
  letter-spacing: .01em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease, box-shadow .2s ease;
  text-decoration: none;
}
.cookie-btn:active { transform: translateY(0); }
.cookie-btn:focus-visible { outline: 3px solid var(--plum-deep); outline-offset: 2px; }

.cookie-btn--primary {
  background: var(--plum);
  color: #fff;
  border-color: var(--plum);
  box-shadow: 0 8px 20px rgba(107,78,113,.18);
}
.cookie-btn--primary:hover { background: var(--plum-light); border-color: var(--plum-light); }

.cookie-btn--outline {
  background: #fff;
  color: var(--plum);
  border-color: var(--plum);
}
.cookie-btn--outline:hover { background: #F3EEF4; }

.cookie-btn--ghost {
  background: transparent;
  color: #3d3b36;
  border-color: rgba(61,59,54,.22);
}
.cookie-btn--ghost:hover { background: var(--sage-soft); color: var(--ink); border-color: var(--sage); }

/* ---------- Panneau personnalisation (modal) ---------- */
.cookie-modal-backdrop {
  position: fixed; inset: 0;
  z-index: 9997;
  background: rgba(33,28,22,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  opacity: 0;
  transition: opacity .25s ease;
}
.cookie-modal-backdrop.is-open {
  display: flex;
  opacity: 1;
}
.cookie-modal {
  background: var(--canvas);
  width: 100%;
  max-width: 760px;
  max-height: 92vh;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -20px 80px rgba(43,42,39,.25);
  transform: translateY(24px);
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
  overflow: hidden;
}
.cookie-modal-backdrop.is-open .cookie-modal { transform: translateY(0); }

.cookie-modal-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 24px 24px 14px;
  border-bottom: 1px solid rgba(168,164,151,.2);
  background: linear-gradient(180deg, #fff 0%, var(--canvas) 100%);
}
.cookie-modal-kicker {
  margin: 0 0 6px;
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.cookie-modal-head h2 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  color: var(--ink);
  font-weight: 600;
}
.cookie-modal-head p {
  margin: 0;
  font-size: .92rem;
  color: #504e49;
  line-height: 1.55;
  max-width: 60ch;
}
.cookie-modal-close {
  align-self: start;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--sage-soft);
  border: 1px solid rgba(159,174,143,.25);
  color: var(--ink);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.cookie-modal-close:hover { background: var(--plum); color: #fff; border-color: var(--plum); }
.cookie-modal-close:focus-visible { outline: 3px solid var(--plum-deep); outline-offset: 2px; }

.cookie-modal-body {
  padding: 10px 24px 6px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--sage) transparent;
}
.cookie-modal-body::-webkit-scrollbar { width: 10px; }
.cookie-modal-body::-webkit-scrollbar-thumb { background: var(--sage); border-radius: 10px; }

.cookie-cat {
  padding: 18px 0;
  border-bottom: 1px dashed rgba(168,164,151,.28);
}
.cookie-cat:last-of-type { border-bottom: 0; }
.cookie-cat-row {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 18px;
  align-items: flex-start;
}
.cookie-cat-title {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-cat-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.05);
}
.cookie-cat-dot--necessary      { background: var(--plum-deep); }
.cookie-cat-dot--analytics      { background: var(--sage-deep); }
.cookie-cat-dot--ads            { background: var(--gold); }
.cookie-cat-dot--personalization{ background: var(--plum-light); }

.cookie-cat-desc {
  margin: 0 0 10px;
  font-size: .9rem;
  line-height: 1.55;
  color: #3d3b36;
}
.cookie-cat-list {
  list-style: none;
  padding: 10px 12px;
  margin: 0;
  background: #fff;
  border: 1px solid rgba(168,164,151,.18);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cookie-cat-list li {
  font-size: .82rem;
  color: #504e49;
  line-height: 1.5;
}
.cookie-cat-list code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .78rem;
  background: var(--sage-soft);
  color: var(--plum-deep);
  padding: 1px 6px;
  border-radius: 5px;
  font-weight: 600;
}

/* Switch toggles */
.cookie-switch {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  user-select: none;
  min-width: 70px;
  padding-top: 2px;
}
.cookie-switch input {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
  pointer-events: none;
}
.cookie-switch-slider {
  position: relative;
  width: 52px;
  height: 30px;
  background: #d8d5cd;
  border-radius: 999px;
  transition: background .22s ease, box-shadow .22s ease;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
}
.cookie-switch-slider::after {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 24px; height: 24px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,.18), inset 0 0 0 1px rgba(0,0,0,.04);
  transition: transform .22s cubic-bezier(.2,.8,.2,1), background .2s ease;
}
.cookie-switch input:checked + .cookie-switch-slider {
  background: var(--plum);
  box-shadow: inset 0 0 0 1px rgba(83,56,90,.3), 0 4px 12px rgba(107,78,113,.25);
}
.cookie-switch input:checked + .cookie-switch-slider::after { transform: translateX(22px); }
.cookie-switch input:focus-visible + .cookie-switch-slider {
  outline: 3px solid var(--plum-deep);
  outline-offset: 2px;
}
.cookie-switch-label {
  font-size: .72rem;
  color: #757269;
  letter-spacing: .02em;
  text-align: center;
  line-height: 1.2;
}
.cookie-switch input:checked ~ .cookie-switch-label { color: var(--plum-deep); font-weight: 600; }

/* Switch locked (nécessaires) */
.cookie-switch--locked { cursor: not-allowed; opacity: .9; }
.cookie-switch--locked .cookie-switch-slider {
  background: var(--plum-deep) !important;
  box-shadow: inset 0 0 0 1px rgba(83,56,90,.3);
}
.cookie-switch--locked .cookie-switch-slider::after {
  transform: translateX(22px) !important;
  background: #fff;
}
.cookie-switch--locked .cookie-switch-label { color: var(--plum-deep); font-weight: 600; }

.cookie-modal-foot {
  border-top: 1px solid rgba(168,164,151,.2);
  background: #fff;
  padding: 16px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-foot-note {
  margin: 0;
  font-size: .84rem;
  color: #504e49;
  line-height: 1.55;
}
.cookie-foot-note a { color: var(--plum-deep); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.cookie-foot-note a:hover { color: var(--plum-light); }
.cookie-foot-note a:focus-visible { outline: 3px solid var(--plum-deep); outline-offset: 2px; border-radius: 3px; }

.cookie-foot-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

/* ---------- Responsive desktop / tablette ---------- */
@media (min-width: 680px) {
  .cookie-banner-inner { padding: 24px 56px 22px 24px; grid-template-columns: 1fr auto; }
  .cookie-banner-copy { grid-column: 1; }
  .cookie-banner-actions { grid-column: 1 / -1; justify-content: flex-start; }

  .cookie-modal-backdrop { align-items: center; padding: 24px; }
  .cookie-modal { border-radius: 24px; max-height: 86vh; }
  .cookie-modal-head { padding: 28px 28px 18px; }
  .cookie-modal-body { padding: 6px 28px 6px; }
  .cookie-modal-foot { padding: 18px 28px 24px; }
}

@media (min-width: 1024px) {
  .cookie-banner { left: 24px; right: 24px; bottom: 24px; border-radius: 24px; }
}

/* ---------- Mobile strict (< 460px) ---------- */
@media (max-width: 459px) {
  .cookie-banner-inner { padding: 18px 44px 16px 16px; gap: 14px; }
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; border-radius: 18px; }
  .cookie-banner-actions { flex-direction: column; width: 100%; }
  .cookie-banner-actions .cookie-btn { width: 100%; }
  .cookie-foot-actions { flex-direction: column; }
  .cookie-foot-actions .cookie-btn { width: 100%; }
  .cookie-cat-row { grid-template-columns: minmax(0,1fr); gap: 12px; }
  .cookie-switch { flex-direction: row; align-items: center; justify-content: flex-start; gap: 14px; min-width: 0; width: 100%; padding-top: 0; }
  .cookie-switch-label { order: 3; flex: 1; text-align: left; }
}

/* ---------- Préférences motion & contraste ---------- */
@media (prefers-reduced-motion: reduce) {
  .cookie-banner, .cookie-modal, .cookie-modal-backdrop,
  .cookie-btn, .cookie-switch-slider, .cookie-switch-slider::after { transition: none !important; }
}
@media (prefers-contrast: more) {
  .cookie-banner { border-color: #000; box-shadow: 0 0 0 2px #000, 0 20px 60px rgba(0,0,0,.3); }
  .cookie-cat { border-bottom-color: #000; }
  .cookie-switch-slider { box-shadow: inset 0 0 0 2px #000; }
  .cookie-switch--locked .cookie-switch-slider { box-shadow: inset 0 0 0 2px #000 !important; }
}
