/* ══════════════════════════════════════════════════════════════
   DAR HIJAMA BRUSSEL — DESIGN SYSTEM
   Philosophy: Editorial · Premium · Asymmetric · Refined
   Grid: 4px base unit — Every spacing is a multiple of 4
   ══════════════════════════════════════════════════════════════ */

/* Source de vérité — tous les tokens vivent dans tokens.css */
@import url("tokens.css");

/* ══════════════════════════════════════════════════════════════
   RESET & BASE
   ══════════════════════════════════════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-800);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11", "kern";
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { list-style: none; }

/* Noise texture — utilisable partout */
.noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: overlay;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ══════════════════════════════════════════════════════════════
   TYPOGRAPHY — Bebas Neue (display) + Manrope (body)
   ══════════════════════════════════════════════════════════════ */
h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.005em;
  color: var(--ink-900);
  text-transform: uppercase;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

.display-xl {
  font-size: clamp(56px, 7vw, 104px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.005em;
}
.display-lg {
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.005em;
}
.display-md {
  font-size: clamp(36px, 3.8vw, 52px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0.01em;
}
.display-sm {
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.015em;
}

/* Accent gold — Dégradé cinématographique (clip sur le texte) */
.italic-accent {
  display: inline-block;
  background: linear-gradient(135deg, #e3cba0 0%, #c7ab7d 40%, #90815c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding: 0 0.12em 0.08em 0.02em;
  margin: 0 -0.12em 0 -0.02em;
  overflow: visible;
}
section.dark .italic-accent,
section.invert .italic-accent {
  background: linear-gradient(135deg, #f5ecd9 0%, #e8d9bd 30%, #c7ab7d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Eyebrow — label typo petit Manrope */
.eyebrow {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--ink-500);
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
section.dark .eyebrow,
section.invert .eyebrow { color: var(--gold); }

/* Text — Manrope */
.lede {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--ink-600);
  text-transform: none;
}
section.dark .lede,
section.invert .lede { color: rgba(240, 235, 224, 0.75); }

.prose {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-500);
  font-weight: 400;
}
section.dark .prose,
section.invert .prose { color: rgba(240, 235, 224, 0.7); }

/* Numerics */
.tabular { font-feature-settings: "lnum", "tnum"; }

/* ══════════════════════════════════════════════════════════════
   LAYOUT
   ══════════════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--s-8);
}
.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--s-8);
}
.container-tight {
  width: 100%;
  max-width: var(--container-tight);
  margin: 0 auto;
  padding: 0 var(--s-8);
}

section {
  position: relative;
  padding: var(--s-24) 0;
}
section.compact { padding: var(--s-16) 0; }
section.generous { padding: var(--s-32) 0; }

section.dark {
  background: var(--ink-900);
  color: var(--paper);
}
section.dark h1, section.dark h2, section.dark h3 { color: var(--white); }

section.invert {
  background: var(--ink-800);
  color: var(--paper);
}

section.paper { background: var(--paper); }
section.bone { background: var(--bone-100); }

/* ══════════════════════════════════════════════════════════════
   BUTTONS — Hiérarchie claire
   ══════════════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════════════
   BUTTONS — 3D Premium System
   - Multi-layer shadows for depth
   - Inner highlight (top) + inner shadow (bottom) for volume
   - Lift on hover, press down on active
   ══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 15px 28px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: var(--r-full);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.3s var(--ease-out);
  border: 1px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  transform: translateY(0);
  will-change: transform, box-shadow;
}
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.btn svg { transition: transform 0.3s var(--ease-out); position: relative; z-index: 2; }
.btn > * { position: relative; z-index: 2; }
.btn:hover svg.arrow { transform: translateX(3px); }

/* ═══ PRIMARY (dark) — 3D relief ═══ */
.btn-primary {
  background: linear-gradient(180deg, #1a1813 0%, #0a0a0a 100%);
  color: var(--white);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 0 rgba(0, 0, 0, 0.5),
    0 1px 2px rgba(10, 10, 10, 0.2),
    0 4px 8px rgba(10, 10, 10, 0.18),
    0 8px 24px -4px rgba(10, 10, 10, 0.3);
}
.btn-primary:hover {
  background: linear-gradient(180deg, #2a2620 0%, #14110d 100%);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 0 rgba(0, 0, 0, 0.5),
    0 2px 4px rgba(10, 10, 10, 0.25),
    0 8px 16px rgba(10, 10, 10, 0.22),
    0 18px 40px -6px rgba(10, 10, 10, 0.45);
}
.btn-primary:active {
  transform: translateY(1px);
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 0 rgba(0, 0, 0, 0.3),
    0 1px 2px rgba(10, 10, 10, 0.15);
}

/* ═══ GOLD — Signature premium 3D ═══ */
.btn-gold {
  background: linear-gradient(180deg, #d9bf93 0%, #c7ab7d 45%, #a89169 100%);
  color: var(--white);
  text-shadow: 0 1px 2px rgba(94, 78, 50, 0.35);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 2px 0 rgba(94, 78, 50, 0.45),
    0 1px 2px rgba(144, 129, 92, 0.3),
    0 4px 10px rgba(144, 129, 92, 0.35),
    0 8px 20px -2px rgba(199, 171, 125, 0.45),
    0 16px 32px -6px rgba(199, 171, 125, 0.3);
}
.btn-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-100%);
  transition: transform 0.7s var(--ease-out);
  z-index: 1;
  pointer-events: none;
}
.btn-gold:hover::after { transform: translateX(100%); }
.btn-gold:hover {
  background: linear-gradient(180deg, #e3cba0 0%, #d0b685 45%, #b69874 100%);
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 2px 0 rgba(94, 78, 50, 0.4),
    0 2px 4px rgba(144, 129, 92, 0.35),
    0 8px 16px rgba(144, 129, 92, 0.4),
    0 16px 32px -4px rgba(199, 171, 125, 0.55),
    0 24px 48px -8px rgba(199, 171, 125, 0.4);
}
.btn-gold:active {
  transform: translateY(0);
  box-shadow:
    inset 0 2px 4px rgba(94, 78, 50, 0.3),
    inset 0 1px 0 0 rgba(94, 78, 50, 0.2),
    0 1px 3px rgba(144, 129, 92, 0.25);
}

/* ═══ btn-primary sur fonds sombres → gold automatique ═══ */
.hero-card .btn-primary,
.msg-section--dark .btn-primary,
.ap-valeurs-v2 .btn-primary,
.page-cta .btn-primary,
.formule-card--featured .btn-primary,
.ct-channel--featured .btn-primary,
.faq-section .btn-primary,
.cta-final .btn-primary {
  background: linear-gradient(180deg, #d9bf93 0%, #c7ab7d 45%, #a89169 100%);
  color: var(--white);
  text-shadow: 0 1px 2px rgba(94, 78, 50, 0.35);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 2px 0 rgba(94, 78, 50, 0.45),
    0 1px 2px rgba(144, 129, 92, 0.3),
    0 4px 10px rgba(144, 129, 92, 0.35),
    0 8px 20px -2px rgba(199, 171, 125, 0.45),
    0 16px 32px -6px rgba(199, 171, 125, 0.3);
}
.hero-card .btn-primary:hover,
.msg-section--dark .btn-primary:hover,
.ap-valeurs-v2 .btn-primary:hover,
.page-cta .btn-primary:hover,
.formule-card--featured .btn-primary:hover,
.ct-channel--featured .btn-primary:hover,
.faq-section .btn-primary:hover,
.cta-final .btn-primary:hover {
  background: linear-gradient(180deg, #e3cba0 0%, #d0b685 45%, #b69874 100%);
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 2px 0 rgba(94, 78, 50, 0.4),
    0 2px 4px rgba(144, 129, 92, 0.35),
    0 8px 16px rgba(144, 129, 92, 0.4),
    0 16px 32px -4px rgba(199, 171, 125, 0.55),
    0 24px 48px -8px rgba(199, 171, 125, 0.4);
}
.hero-card .btn-primary:active,
.msg-section--dark .btn-primary:active,
.ap-valeurs-v2 .btn-primary:active,
.page-cta .btn-primary:active,
.formule-card--featured .btn-primary:active,
.ct-channel--featured .btn-primary:active,
.faq-section .btn-primary:active,
.cta-final .btn-primary:active {
  transform: translateY(0);
  box-shadow:
    inset 0 2px 4px rgba(94, 78, 50, 0.3),
    inset 0 1px 0 0 rgba(94, 78, 50, 0.2),
    0 1px 3px rgba(144, 129, 92, 0.25);
}

/* ═══ GHOST — 3D subtil (relief léger) ═══ */
.btn-ghost {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(240, 235, 224, 0.8) 100%);
  color: var(--ink-800);
  border: 1px solid rgba(10, 10, 10, 0.12);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 0 rgba(10, 10, 10, 0.04),
    0 1px 2px rgba(10, 10, 10, 0.04),
    0 2px 6px rgba(10, 10, 10, 0.06);
}
.btn-ghost:hover {
  background: linear-gradient(180deg, #1f1d18 0%, #0a0a0a 100%);
  color: var(--white);
  border-color: var(--ink-900);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 0 rgba(0, 0, 0, 0.4),
    0 1px 2px rgba(10, 10, 10, 0.2),
    0 6px 12px rgba(10, 10, 10, 0.18),
    0 12px 28px -4px rgba(10, 10, 10, 0.28);
}
.btn-ghost:active {
  transform: translateY(1px);
  box-shadow:
    inset 0 2px 4px rgba(10, 10, 10, 0.15),
    0 1px 2px rgba(10, 10, 10, 0.1);
}

/* Ghost sur section sombre — fond translucide */
section.dark .btn-ghost,
section.invert .btn-ghost {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
  color: var(--paper);
  border-color: rgba(240, 235, 224, 0.18);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 0 rgba(0, 0, 0, 0.2),
    0 2px 6px rgba(0, 0, 0, 0.2),
    0 6px 16px -2px rgba(0, 0, 0, 0.25);
}
section.dark .btn-ghost:hover,
section.invert .btn-ghost:hover {
  background: linear-gradient(180deg, #faf7f0 0%, #ebe5d6 100%);
  color: var(--ink-900);
  border-color: var(--paper);
  text-shadow: none;
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 0 0 rgba(10, 10, 10, 0.08),
    0 2px 4px rgba(10, 10, 10, 0.15),
    0 8px 20px -4px rgba(10, 10, 10, 0.25),
    0 16px 32px -8px rgba(10, 10, 10, 0.3);
}

.btn-lg { padding: 18px 36px; font-size: 15px; }

/* Link avec arrow underline */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-800);
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  transition: all 0.3s var(--ease-out);
}
.link-arrow:hover { color: var(--gold-deep); gap: var(--s-3); }
section.dark .link-arrow { color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   NAVBAR — Transparent → dark glass
   ══════════════════════════════════════════════════════════════ */

/* Topbar annonce */
.nav-topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 91;
  background: var(--ink-900);
  padding: 8px 0;
  text-align: center;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(250, 247, 240, 0.45);
  text-transform: uppercase;
}
.nav-topbar-gold { color: var(--gold); }
.nav-topbar-sep { margin: 0 12px; opacity: 0.3; }

.nav {
  position: fixed;
  top: 46px;
  left: 20px; right: 20px;
  z-index: 90;
  border-radius: 18px;
  transition: all 0.5s var(--ease-out);
  background: rgba(250, 247, 240, 0.68);
  backdrop-filter: blur(48px) saturate(200%) brightness(1.06);
  -webkit-backdrop-filter: blur(48px) saturate(200%) brightness(1.06);
  border: 1px solid rgba(199, 171, 125, 0.22);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.55) inset,
    0 8px 32px rgba(10, 10, 10, 0.1),
    0 2px 8px rgba(10, 10, 10, 0.06);
}
.nav::before {
  content: '';
  position: absolute;
  top: 0; left: 18px; right: 18px;
  height: 1.5px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(199, 171, 125, 0.6) 20%,
    #c7ab7d 50%,
    rgba(144, 129, 92, 0.6) 80%,
    transparent 100%
  );
  border-radius: 18px 18px 0 0;
}
.nav.scrolled {
  background: rgba(250, 247, 240, 0.92);
  border-color: rgba(199, 171, 125, 0.32);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.7) inset,
    0 20px 60px rgba(10, 10, 10, 0.16),
    0 6px 20px rgba(10, 10, 10, 0.1),
    0 2px 6px rgba(10, 10, 10, 0.06);
}

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--s-10);
  padding: 2px 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  padding-right: var(--s-8);
  border-right: 1px solid rgba(199, 171, 125, 0.2);
}
.nav-logo-wrap {
  overflow: hidden;
  height: 105px;
  flex-shrink: 0;
}
.nav-logo {
  height: 268px;
  width: auto;
  display: block;
  margin-top: -76px;
  margin-left: -25px;
  margin-right: -25px;
  mix-blend-mode: multiply;
}

.footer-logo {
  height: 160px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-10);
}
.nav-menu a {
  font-size: 13px;
  font-weight: 450;
  color: var(--ink-700);
  position: relative;
  padding: var(--s-2) 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s var(--ease-out);
}
.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease-out);
}
.nav-menu a:hover { color: var(--ink-900); }
.nav-menu a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink-900);
  position: relative;
  transition: all 0.3s var(--ease-out);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px; height: 1.5px;
  background: var(--ink-900);
  transition: all 0.3s var(--ease-out);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* Hamburger → X */
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}
.nav-toggle[aria-expanded="true"] span::after {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* ══════════════════════════════════════════════════════════════
   MEGA-MENU — Dropdown 4 cartes prestations
   ══════════════════════════════════════════════════════════════ */
.has-mega-menu { position: relative; display: flex; align-items: center; gap: 4px; cursor: pointer; }
.has-mega-menu .chevron { transition: transform 0.25s var(--ease-out); flex-shrink: 0; }
.has-mega-menu[aria-expanded="true"] .chevron { transform: rotate(180deg); }

/* ── Mega-menu — Dark editorial ultra premium ── */
/* Reset nav-menu a overrides inside mega-menu */
.mega-menu a { color: inherit; }
.mega-menu a::after { display: none !important; }
.mega-menu a:hover { color: inherit; }

.mega-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: 900px;
  background: var(--ink-900);
  border: 1px solid rgba(199,171,125,0.14);
  border-radius: 22px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 40px 96px -20px rgba(10,10,10,0.6),
    0 8px 24px rgba(10,10,10,0.25);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.26s var(--ease-out), transform 0.26s var(--ease-out), visibility 0.26s;
  z-index: 200;
}
.mega-menu::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(199,171,125,0.5) 50%, transparent 95%);
  z-index: 1;
}
.mega-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-menu-inner {
  display: grid;
  grid-template-columns: 248px 1fr;
}

/* ── Left panel ── */
.mega-intro {
  padding: 32px 28px 28px;
  border-right: 1px solid rgba(199,171,125,0.09);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}
.mega-intro::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199,171,125,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.mega-watermark {
  position: absolute;
  bottom: -12px; right: -10px;
  font-family: var(--f-display);
  font-size: 96px;
  line-height: 1;
  letter-spacing: -0.06em;
  color: rgba(199,171,125,0.04);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.mega-intro .eyebrow { color: var(--gold); position: relative; z-index: 1; }
.mega-intro .eyebrow::before { background: var(--gold); }
.mega-headline {
  font-family: var(--f-display);
  font-size: clamp(36px, 3.4vw, 50px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin: 16px 0 0;
  position: relative; z-index: 1;
}
.mega-headline span {
  background: var(--g-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mega-intro-bottom {
  position: relative; z-index: 1;
  margin-top: auto;
  padding-top: 24px;
}
.mega-menu .mega-see-all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f0ebe0;
  text-decoration: none;
  padding: 13px 18px;
  background: rgba(199,171,125,0.1);
  border: 1px solid rgba(199,171,125,0.45);
  border-radius: 12px;
  transition: all 0.25s var(--ease-out);
}
.mega-menu .mega-see-all:hover {
  background: rgba(199,171,125,0.18);
  border-color: rgba(199,171,125,0.7);
  color: #f0ebe0;
}

/* ── Proof — 2 mini-stats ── */
.mega-proof {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(199,171,125,0.08);
}
.mega-proof-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mega-proof-stat + .mega-proof-stat {
  border-left: 1px solid rgba(199,171,125,0.1);
  padding-left: 14px;
  margin-left: 14px;
}
.mega-proof-num {
  font-family: var(--f-display);
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(199,171,125,0.7);
}
.mega-proof-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(240,235,224,0.22);
  line-height: 1.3;
}

/* ── Right — liste éditoriale ── */
.mega-list { padding: 6px 0; }
.mega-item {
  display: grid;
  grid-template-columns: 50px 1fr auto 22px;
  align-items: center;
  gap: 0 14px;
  padding: 14px 22px 14px 20px;
  text-decoration: none;
  border-bottom: 1px solid rgba(199,171,125,0.07);
  position: relative;
  transition: background 0.2s var(--ease-out);
  overflow: hidden;
}
.mega-item:last-child { border-bottom: none; }
.mega-item::before {
  content: '';
  position: absolute;
  left: 0; top: 18%; bottom: 18%;
  width: 2px;
  background: var(--g-gold);
  border-radius: 2px;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.22s var(--ease-out);
}
.mega-item:hover { background: rgba(199,171,125,0.05); }
.mega-item:hover::before { transform: scaleY(1); }
.mega-item-num {
  font-family: var(--f-display);
  font-size: 40px;
  line-height: 1;
  color: rgba(199,171,125,0.09);
  letter-spacing: -0.04em;
  user-select: none;
  transition: color 0.2s;
  text-align: center;
}
.mega-item:hover .mega-item-num { color: rgba(199,171,125,0.22); }
.mega-item-body { min-width: 0; }
.mega-item-title {
  font-family: var(--f-display);
  font-size: 20px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 2px;
  transition: color 0.2s;
}
.mega-item:hover .mega-item-title { color: var(--gold); }
.mega-item-desc {
  font-size: 11px;
  color: rgba(240,235,224,0.35);
  line-height: 1.4;
  margin-bottom: 7px;
}
.mega-item-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.mega-item-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(199,171,125,0.45);
  background: rgba(199,171,125,0.07);
  border: 1px solid rgba(199,171,125,0.12);
  padding: 2px 8px;
  border-radius: 100px;
  transition: all 0.2s;
}
.mega-item:hover .mega-item-tag {
  color: rgba(199,171,125,0.65);
  border-color: rgba(199,171,125,0.2);
}
.mega-item-price {
  font-family: var(--f-display);
  font-size: 14px;
  color: rgba(199,171,125,0.6);
  white-space: nowrap;
  letter-spacing: 0.04em;
  background: rgba(199,171,125,0.07);
  border: 1px solid rgba(199,171,125,0.13);
  padding: 4px 10px;
  border-radius: 100px;
  transition: all 0.2s;
}
.mega-item:hover .mega-item-price {
  color: var(--gold);
  border-color: rgba(199,171,125,0.28);
  background: rgba(199,171,125,0.1);
}
.mega-item-arrow {
  color: rgba(240,235,224,0.12);
  transition: all 0.2s var(--ease-out);
  transform: translateX(-6px);
  flex-shrink: 0;
}
.mega-item:hover .mega-item-arrow {
  color: var(--gold);
  transform: translateX(0);
}

/* ── Footer strip ── */
.mega-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-top: 1px solid rgba(199,171,125,0.08);
  background: rgba(0,0,0,0.15);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240,235,224,0.18);
}
.mega-footer-sep { color: rgba(199,171,125,0.15); }
.mega-footer-gold { color: rgba(199,171,125,0.42); }

/* ── LANG SWITCHER ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: var(--s-3);
}
.lang-item {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-400);
  text-decoration: none;
  padding: 4px 6px;
  border-radius: 4px;
  transition: color 0.2s;
}
.lang-item:hover, .lang-item.active { color: var(--gold); }
.lang-sep { color: var(--ink-300); font-size: 10px; }

/* ── MEGA-MENU MOBILE ── */
@media (max-width: 1100px) {
  .mega-menu {
    position: static;
    width: 100%;
    transform: none;
    box-shadow: none;
    border-radius: var(--r-md);
    margin-top: var(--s-2);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease, visibility 0.25s;
  }
  .mega-menu.open {
    max-height: 600px;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .mega-menu-inner { grid-template-columns: 1fr; }
  .mega-intro { display: none; }
  .mega-item { grid-template-columns: 40px 1fr auto; padding: 12px 16px; }
  .mega-item-arrow { display: none; }
  .lang-switcher { margin-right: 0; order: -1; }
}

@media (max-width: 720px) {
  .lang-switcher { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   HERO — Composition éditoriale asymétrique
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 200px 0 var(--s-32);
  background: var(--cream);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg::before {
  content: "";
  position: absolute;
  top: -15%; right: -15%;
  width: 80%; height: 80%;
  background: radial-gradient(ellipse at center, rgba(199, 171, 125, 0.18) 0%, transparent 65%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(144, 129, 92, 0.12) 1px, transparent 0);
  background-size: 48px 48px;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse at top right, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at top right, black 20%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--s-16);
  align-items: center;
}

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-2) var(--s-4);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(144, 129, 92, 0.2);
  backdrop-filter: blur(8px);
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-700);
  margin-bottom: var(--s-8);
}
.hero-meta-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(144, 129, 92, 0.15);
  animation: dotPulse 2.4s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(144, 129, 92, 0.15); }
  50% { box-shadow: 0 0 0 6px rgba(144, 129, 92, 0); }
}

.hero h1 {
  font-size: var(--fs-h1);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.005em;
  color: var(--ink-900);
  margin-bottom: var(--s-8);
  text-transform: uppercase;
}
.hero h1 em {
  background: linear-gradient(135deg, #e3cba0 0%, #c7ab7d 40%, #90815c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  position: relative;
  display: inline-block;
  font-style: normal;
  padding: 0 0.12em 0.08em 0.02em;
  margin: 0 -0.12em 0 -0.02em;
  overflow: visible;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  bottom: 0.12em;
  left: 0; right: 0;
  height: 0.06em;
  background: var(--gold);
  opacity: 0.25;
  border-radius: 2px;
}

.hero-lede {
  max-width: 520px;
  margin-bottom: var(--s-12);
  color: var(--ink-500);
}

.hero-ctas {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  margin-bottom: var(--s-16);
}

.hero-proof {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--s-5);
  padding-top: var(--s-8);
  border-top: 1px solid rgba(10, 10, 10, 0.08);
  flex-wrap: nowrap;
}

.stack-avatars {
  display: flex;
  flex-shrink: 0;
}
.stack-avatars > * {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  background: var(--g-gold);
  margin-left: -10px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: -0.01em;
}
.stack-avatars > *:first-child { margin-left: 0; }

.proof-divider {
  width: 1px;
  height: 44px;
  background: rgba(10, 10, 10, 0.12);
  flex-shrink: 0;
}

.proof-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex-shrink: 0;
}

.proof-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold-deep);
  flex-shrink: 0;
}

.proof-text {
  display: inline-flex;
  align-items: baseline;
  gap: var(--s-2);
  font-size: 13px;
  color: var(--ink-500);
  line-height: 1.2;
  flex-shrink: 0;
  white-space: nowrap;
}
.proof-text strong {
  color: var(--ink-900);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.005em;
  white-space: nowrap;
}

/* ═══ HERO — Kicker line ═══ */
.hero-kicker {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  margin-bottom: var(--s-5);
}
.hero-kicker-line {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
}
.hero-kicker-text {
  font-family: var(--f-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ═══ HERO — Watermark de fond ═══ */
.hero-wordmark {
  position: absolute;
  right: -30px;
  bottom: -60px;
  font-family: var(--f-display);
  font-size: clamp(120px, 18vw, 260px);
  color: rgba(199, 171, 125, 0.045);
  letter-spacing: -0.04em;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  z-index: 1;
  text-transform: uppercase;
}

/* ═══ HERO — Scroll indicator ═══ */
.hero-scroll {
  position: absolute;
  bottom: var(--s-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--f-display);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(250, 247, 240, 0.25);
  text-transform: uppercase;
  animation: scrollBounce 2.4s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, rgba(199, 171, 125, 0.55) 0%, transparent 100%);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  55% { transform: translateX(-50%) translateY(7px); }
}

/* ═══ HERO — Visuel asymétrique composé ═══ */
.hero-visual {
  position: relative;
  aspect-ratio: 5/6;
}

/* Carte image principale */
.hero-card-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 78%;
  height: 88%;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--g-gold);
  box-shadow: var(--shadow-xl);
  z-index: 2;
}
.hero-card-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.5) 100%),
    url('../images/Hijama Dar Hijama Brussel.jpg') center/cover;
  z-index: 1;
}
.hero-card-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(199, 171, 125, 0.15) 0%, transparent 60%);
  mix-blend-mode: overlay;
  z-index: 2;
}

.hero-card-badge {
  position: absolute;
  top: var(--s-6);
  left: var(--s-6);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-2) var(--s-3);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--r-full);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card-quote {
  position: absolute;
  bottom: var(--s-8);
  left: var(--s-8);
  right: var(--s-8);
  z-index: 3;
  color: var(--white);
}
.hero-card-quote-mark {
  font-family: var(--f-display);
  font-size: 72px;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: var(--s-3);
  display: block;
}
.hero-card-quote p {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.95;
  max-width: 280px;
}
.hero-card-quote p strong {
  font-weight: 600;
  color: var(--gold-soft);
  display: block;
  margin-top: var(--s-2);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Carte secondaire bas-gauche (asymétrie) */
.hero-card-float {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 58%;
  padding: var(--s-5) var(--s-6);
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: var(--s-4);
  animation: floatCard 5s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-card-float-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--g-gold-soft);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--ink-900);
}
.hero-card-float-text strong {
  display: block;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 18px;
  color: var(--ink-900);
  line-height: 1;
  letter-spacing: 0.015em;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.hero-card-float-text span {
  font-family: var(--f-body);
  font-size: 12px;
  color: var(--ink-500);
  font-weight: 400;
}

/* ══════════════════════════════════════════════════════════════
   MARQUEE — Bande défilante subtile
   ══════════════════════════════════════════════════════════════ */
.marquee {
  padding: var(--s-8) 0;
  background: var(--ink-900);
  color: var(--paper);
  overflow: hidden;
  border-top: 1px solid rgba(240, 235, 224, 0.08);
}
.marquee-track {
  display: flex;
  gap: var(--s-16);
  animation: marqueeScroll 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 36px);
  color: var(--paper);
  letter-spacing: 0.04em;
  opacity: 0.85;
  text-transform: uppercase;
  line-height: 1;
}
.marquee-item::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════════
   STATS — Grid éditorial tabular — 4 colonnes sur une ligne
   ══════════════════════════════════════════════════════════════ */
.stats {
  padding: var(--s-16) 0;
  background: var(--cream);
  position: relative;
}
.stats::before,
.stats::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(199,171,125,0.55) 18%, rgba(199,171,125,0.55) 82%, transparent 100%);
}
.stats::before { top: 0; }
.stats::after  { bottom: 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  position: relative;
  padding: var(--s-10) var(--s-10);
  border-right: 1px solid rgba(199, 171, 125, 0.28);
}
.stat:first-child { padding-left: 0; }
.stat:last-child  { border-right: 0; }
.stat-num {
  font-family: var(--f-display);
  font-size: clamp(64px, 8vw, 112px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  font-feature-settings: "lnum";
  margin-bottom: var(--s-5);
  display: flex;
  align-items: flex-end;
  gap: 0;
  text-transform: uppercase;
}
.stat-num sup {
  font-family: var(--f-body);
  font-size: 0.2em;
  font-weight: 300;
  color: var(--gold-deep);
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-left: 4px;
  margin-bottom: 0.18em;
  line-height: 1;
}
.stat-label {
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-400);
  line-height: 1.65;
  max-width: 200px;
}
.stat-label strong {
  display: block;
  color: var(--ink-700);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* ══════════════════════════════════════════════════════════════
   SECTION HEADS
   ══════════════════════════════════════════════════════════════ */
.section-head {
  margin-bottom: var(--s-24);
  max-width: 720px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 {
  font-size: var(--fs-h2);
  line-height: 0.93;
  letter-spacing: -0.01em;
  margin: var(--s-5) 0 var(--s-6);
}
.section-head .lede { max-width: 640px; }
.section-head.center .lede { margin: 0 auto; }

/* ══════════════════════════════════════════════════════════════
   MANIFESTO — Texte éditorial fort
   ══════════════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════════════
   HADITH SLIDER — Citations rotatives
   ══════════════════════════════════════════════════════════════ */
.hadith {
  background: linear-gradient(155deg, #b8965f 0%, #6b5635 100%);
  border: none;
  border-radius: 14px;
  padding: var(--s-8) var(--s-8) var(--s-6);
  margin-top: var(--s-10);
  position: relative;
  overflow: hidden;
}
.hadith-mark {
  font-family: Georgia, serif;
  font-size: 72px;
  line-height: 0.75;
  color: rgba(255,255,255,0.12);
  display: block;
  margin-bottom: var(--s-3);
  user-select: none;
}
.quote-track { position: relative; min-height: 80px; }
.quote-item {
  display: none;
  animation: fadeQuote 0.4s ease;
}
.quote-item.active { display: block; }
@keyframes fadeQuote {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hadith-trans {
  font-family: var(--f-body);
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.78;
  color: rgba(255,255,255,0.92);
  margin-bottom: var(--s-2);
}
.hadith-source {
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e8cfa0;
  font-weight: 500;
}
.quote-progress {
  height: 2px;
  background: rgba(255,255,255,0.18);
  border-radius: 1px;
  margin-top: var(--s-6);
  overflow: hidden;
}
.quote-progress-bar {
  height: 100%;
  background: rgba(255,255,255,0.75);
  width: 0%;
}
.quote-dots {
  display: flex;
  gap: var(--s-2);
  margin-top: var(--s-4);
}
.quote-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}
.quote-dot.active {
  background: rgba(255,255,255,0.88);
  transform: scale(1.3);
}

/* ══════════════════════════════════════════════════════════════
   SERVICES — Magazine éditorial cinématographique
   ══════════════════════════════════════════════════════════════ */
.services {
  background: var(--ink-900);
  color: var(--paper);
  padding: var(--s-32) 0;
  position: relative;
  overflow: hidden;
}
.services::before {
  content: "";
  position: absolute;
  top: -30%; right: -20%;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(199, 171, 125, 0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.services::after {
  content: "";
  position: absolute;
  bottom: -20%; left: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(144, 129, 92, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.services > .container { position: relative; z-index: 2; }

/* ═══ HEADER éditorial magazine ═══ */
.services-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: var(--s-10);
  margin-bottom: var(--s-16);
  padding-bottom: var(--s-10);
  border-bottom: 1px solid rgba(240, 235, 224, 0.1);
}
.services-head h2 { color: var(--white); max-width: 820px; }

.services-count {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--s-2);
}
.services-count-num {
  font-family: var(--f-display);
  font-weight: 200;
  font-size: 64px;
  line-height: 0.9;
  color: var(--gold);
  letter-spacing: -0.04em;
  font-feature-settings: "lnum";
}
.services-count-label {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  color: rgba(240, 235, 224, 0.5);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ═══ GRILLE DE SOINS — cards 2×2 premium ═══ */
.soins-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-8);
}

/* ═══ SOIN CARD ═══ */
.soin-card {
  position: relative;
  border-radius: var(--r-xl);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(199, 171, 125, 0.15);
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.4s var(--ease-out);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 2px 8px rgba(10, 10, 10, 0.3),
    0 8px 24px rgba(10, 10, 10, 0.2);
}
.soin-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent 0%, rgba(199, 171, 125, 0.5) 30%, #c7ab7d 50%, rgba(144, 129, 92, 0.5) 70%, transparent 100%);
  z-index: 4;
}
.soin-card:hover {
  transform: translateY(-6px);
  border-color: rgba(199, 171, 125, 0.38);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 4px 16px rgba(10, 10, 10, 0.4),
    0 16px 40px rgba(10, 10, 10, 0.3),
    0 0 60px -10px rgba(199, 171, 125, 0.15);
}

/* ═══ VISUEL CARD ═══ */
.soin-card-visual {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: calc(var(--r-xl) - 1px) calc(var(--r-xl) - 1px) 0 0;
  transform: translateZ(0);
  isolation: isolate;
}
.soin-card-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
  border-radius: calc(var(--r-xl) - 1px) calc(var(--r-xl) - 1px) 0 0;
  transform: translateZ(0);
}
.soin-card:hover .soin-card-visual img { transform: scale(1.07); }
.soin-card-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(10, 10, 10, 0.65) 100%);
  z-index: 2;
  pointer-events: none;
}
.soin-card-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(199, 171, 125, 0.12) 0%, transparent 55%);
  mix-blend-mode: overlay;
  z-index: 2;
  pointer-events: none;
}

.soin-card-badge {
  position: absolute;
  top: var(--s-5);
  left: var(--s-5);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 6px 13px;
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(199, 171, 125, 0.35);
  border-radius: var(--r-full);
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.soin-card-badge-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px var(--gold);
}

.soin-card-visual-foot {
  position: absolute;
  bottom: var(--s-5);
  left: var(--s-5);
  right: var(--s-5);
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.soin-card-time {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.02em;
  line-height: 1;
}
.soin-card-visual-meta {
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  text-align: right;
  line-height: 1.4;
}

/* ═══ CARD BODY ═══ */
.soin-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--s-8) var(--s-10) var(--s-10);
  gap: var(--s-5);
}

.soin-card-meta {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.soin-card-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 0.05em;
  font-feature-settings: "lnum";
}
.soin-card-sep {
  width: 24px;
  height: 1px;
  background: rgba(240, 235, 224, 0.25);
}
.soin-card-category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 235, 224, 0.45);
}

.soin-card-title {
  font-family: var(--f-display);
  font-size: clamp(30px, 2.8vw, 40px);
  font-weight: 400;
  line-height: 0.97;
  letter-spacing: 0.005em;
  color: var(--white);
  text-transform: uppercase;
  margin: 0;
}
.soin-card-title em {
  font-style: italic;
  display: inline-block;
  background: linear-gradient(135deg, #f5ecd9 0%, #e8d9bd 30%, #c7ab7d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding-right: 0.18em;
  margin-right: -0.18em;
}

.soin-card-desc {
  font-size: clamp(14px, 1.3vw, 15px);
  line-height: 1.72;
  color: rgba(240, 235, 224, 0.65);
  margin: 0;
  flex: 1;
}

.soin-card-bullets {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3) var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(240, 235, 224, 0.1);
}
.soin-card-bullets li {
  display: flex;
  gap: var(--s-2);
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(240, 235, 224, 0.75);
}
.soin-card-bullets li svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 3px;
}

.soin-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding-top: var(--s-6);
  border-top: 1px solid rgba(240, 235, 224, 0.1);
  flex-wrap: wrap;
  margin-top: auto;
}

.soin-card-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.soin-card-price-from {
  font-size: 9px;
  font-weight: 600;
  color: rgba(240, 235, 224, 0.38);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.soin-card-price-tbd {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 30px;
  line-height: 1;
  color: var(--gold);
  letter-spacing: 0.03em;
}
.soin-card-price-amount {
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.soin-card-price-amount strong {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 48px;
  line-height: 0.95;
  color: var(--white);
  letter-spacing: -0.03em;
  font-feature-settings: "lnum";
}
.soin-card-price-amount span {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 18px;
  color: var(--gold);
}
.soin-card-price-amount small {
  font-size: 10px;
  color: rgba(240, 235, 224, 0.42);
  letter-spacing: 0.05em;
}

.soin-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 12px 22px;
  background: linear-gradient(180deg, #e3cba0 0%, #c7ab7d 45%, #a89169 100%);
  color: var(--ink-900);
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.55),
    inset 0 -1px 2px 0 rgba(94, 78, 50, 0.45),
    0 1px 2px rgba(94, 78, 50, 0.35),
    0 4px 10px rgba(144, 129, 92, 0.4),
    0 10px 24px -4px rgba(199, 171, 125, 0.4);
}
.soin-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%);
  transition: transform 0.7s var(--ease-out);
  pointer-events: none;
}
.soin-cta:hover::after { transform: translateX(100%); }
.soin-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.65),
    inset 0 -1px 2px 0 rgba(94, 78, 50, 0.4),
    0 2px 4px rgba(94, 78, 50, 0.35),
    0 8px 16px rgba(144, 129, 92, 0.45),
    0 18px 36px -6px rgba(199, 171, 125, 0.5);
}
.soin-cta:active {
  transform: translateY(0);
  box-shadow: inset 0 2px 4px rgba(94, 78, 50, 0.35), inset 0 1px 0 0 rgba(94, 78, 50, 0.2);
}
.soin-cta svg { transition: transform 0.3s var(--ease-out); position: relative; z-index: 2; }
.soin-cta:hover svg { transform: translateX(3px); }

/* 5e card — pleine largeur */
.soin-card--wide {
  grid-column: 1 / -1;
  flex-direction: row;
}
.soin-card--wide .soin-card-visual {
  width: 45%;
  aspect-ratio: unset;
  min-height: 420px;
  flex-shrink: 0;
  align-self: stretch;
  border-radius: calc(var(--r-xl) - 1px) 0 0 calc(var(--r-xl) - 1px);
}
.soin-card--wide .soin-card-body {
  justify-content: center;
  padding: var(--s-12) var(--s-12) var(--s-12);
}
.soin-card--wide .soin-card-bullets {
  grid-template-columns: 1fr 1fr;
}
.soin-card--wide .soin-card-title {
  font-size: clamp(36px, 3.2vw, 52px);
}

/* ══════════════════════════════════════════════════════════════
   APPROCHE — Storytelling éditorial + Hadith
   ══════════════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════════════
   APPROCHE — À propos + Nos convictions
   ══════════════════════════════════════════════════════════════ */
.approche {
  background: var(--cream);
  padding: var(--s-32) 0;
  position: relative;
  overflow: hidden;
}
.approche::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(199, 171, 125, 0.1) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.approche > .container { position: relative; z-index: 1; }
.approche-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--s-20);
  align-items: start;
}
.approche-content h2 {
  color: var(--ink-900);
  margin: var(--s-5) 0 var(--s-8);
}
.approche-prose {
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.82;
  color: var(--ink-500);
  max-width: 520px;
}

/* Conviction rows */
.convictions {
  margin: var(--s-10) 0;
  border-top: 1px solid rgba(199, 171, 125, 0.18);
}
.conviction {
  display: grid;
  grid-template-columns: 3ch 1fr;
  gap: var(--s-2) var(--s-6);
  padding: var(--s-6) 0;
  border-bottom: 1px solid rgba(199, 171, 125, 0.1);
  align-items: start;
}
.conviction:last-child { border-bottom: none; }
.conviction-idx {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.05em;
  padding-top: 4px;
  line-height: 1;
}
.conviction-title {
  font-family: var(--f-display);
  font-size: clamp(17px, 1.7vw, 21px);
  color: var(--ink-900);
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.conviction-desc {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--ink-500);
  line-height: 1.6;
  font-weight: 300;
  display: block;
}

/* Hadith — citation sobre */
.approche-quote {
  margin-top: var(--s-10);
  border-left: 2px solid rgba(199, 171, 125, 0.45);
  padding-left: var(--s-6);
}
.approche-quote p {
  font-family: var(--f-body);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--ink-700);
  line-height: 1.72;
  margin-bottom: var(--s-3);
}
.approche-quote cite {
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: var(--s-2);
}
.approche-quote cite::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
}

/* Image + décor asymétrique */
.approche-visual {
  position: relative;
  aspect-ratio: 3/4;
  top: var(--s-10);
}
.approche-img {
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink-800);
  box-shadow: var(--shadow-xl);
}
.approche-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.45) 100%),
    url('../images/Hydrojet Dar Hijama Brussel Site Internet.jpg') center/cover;
}
.approche-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(199, 171, 125, 0.08) 0%, transparent 50%);
  mix-blend-mode: overlay;
}
.approche-img-cap {
  position: absolute;
  bottom: var(--s-6);
  left: var(--s-6);
  right: var(--s-6);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,0.65);
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.approche-frame {
  position: absolute;
  top: var(--s-8);
  left: calc(var(--s-8) * -1);
  right: var(--s-8);
  bottom: calc(var(--s-8) * -1);
  border: 1px solid var(--gold);
  opacity: 0.25;
  border-radius: var(--r-lg);
  pointer-events: none;
  z-index: -1;
}

/* ══════════════════════════════════════════════════════════════
   BIENFAITS — Liste éditoriale numérotée
   ══════════════════════════════════════════════════════════════ */
.bienfaits { background: var(--cream); }
.bienfaits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(10, 10, 10, 0.08);
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.bienfait {
  background: var(--cream);
  padding: var(--s-10) var(--s-8);
  transition: all 0.4s var(--ease-out);
  position: relative;
}
.bienfait:hover {
  background: var(--white);
}
.bienfait-num {
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold-deep);
  letter-spacing: 0.08em;
  font-feature-settings: "lnum";
  margin-bottom: var(--s-5);
  display: block;
}
.bienfait h3 {
  font-size: var(--fs-h3);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: var(--s-3);
  color: var(--ink-900);
}
.bienfait h3 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-deep);
}
.bienfait p {
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════
   HYGIENE — Split asymétrique + liste
   ══════════════════════════════════════════════════════════════ */
.hygiene {
  background: var(--ink-800);
  color: var(--paper);
  padding: var(--s-32) 0;
  position: relative;
  overflow: hidden;
}
.hygiene::before {
  content: "";
  position: absolute;
  top: 20%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(199, 171, 125, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hygiene-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: var(--s-20);
  align-items: flex-start;
}

.hygiene-content h2 { color: var(--white); margin: var(--s-5) 0 var(--s-8); }
.hygiene-content .lede { color: rgba(240, 235, 224, 0.7); margin-bottom: var(--s-10); }

.hygiene-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding-bottom: 3px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  transition: all 0.3s var(--ease-out);
}
.hygiene-cta:hover { gap: var(--s-3); color: var(--gold-soft); }

.hygiene-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.hygiene-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-5);
  padding: var(--s-6) var(--s-6) var(--s-6) var(--s-4);
  background: rgba(240, 235, 224, 0.03);
  border: 1px solid rgba(240, 235, 224, 0.08);
  border-radius: var(--r-md);
  transition: all 0.4s var(--ease-out);
  position: relative;
}
.hygiene-item::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  border-radius: 2px;
}
.hygiene-item:hover {
  background: rgba(240, 235, 224, 0.05);
  border-color: rgba(199, 171, 125, 0.25);
  transform: translateX(4px);
}
.hygiene-item:hover::before { opacity: 1; }

.hygiene-check {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(199, 171, 125, 0.12);
  border: 1px solid rgba(199, 171, 125, 0.3);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--gold);
}

.hygiene-item h4 {
  font-family: var(--f-display);
  font-size: var(--fs-h4);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--white);
  margin-bottom: var(--s-2);
}
.hygiene-item p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(240, 235, 224, 0.65);
}

/* ══════════════════════════════════════════════════════════════
   TARIFS — Cards éditoriales raffinées
   ══════════════════════════════════════════════════════════════ */
.tarifs { background: var(--cream); }

.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
  padding-top: 22px;
}

.tarif {
  position: relative;
  padding: var(--s-10);
  background: var(--white);
  border: 1px solid rgba(10, 10, 10, 0.06);
  border-radius: var(--r-xl);
  transition: all 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.tarif:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(199, 171, 125, 0.25);
}

.tarif-featured {
  background: var(--ink-900);
  color: var(--paper);
  border-color: var(--ink-900);
  transform: none;
}
.tarif-featured:hover { transform: translateY(-5px); }

/* Toutes les cards au même niveau — pas de stagger */
.tarif-basic   { transform: none; }
.tarif-basic:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(199,171,125,0.3); }
.tarif-signature { transform: none; }
.tarif-signature:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(199,171,125,0.35); }
.tarif-featured { transform: none; }
.tarif-featured:hover { transform: translateY(-5px) !important; }
.tarif.tarif-featured.tarif-prestige { transform: none; }
.tarif.tarif-featured.tarif-prestige:hover { transform: translateY(-5px); }

/* Top hairline gold accent */
.tarif::before {
  content: '';
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199,171,125,0.28), transparent);
  pointer-events: none;
}
.tarif-laser::before, .tarif-featured::before {
  left: 0; right: 0;
  background: linear-gradient(90deg, transparent, rgba(199,171,125,0.72), transparent);
}

/* Tier watermark */
.tarif-tier {
  position: absolute;
  bottom: var(--s-3);
  right: var(--s-5);
  font-family: var(--f-display);
  font-size: 108px;
  font-weight: 800;
  line-height: 1;
  color: rgba(10,10,10,0.035);
  letter-spacing: -0.06em;
  pointer-events: none;
  user-select: none;
}
.tarif-featured .tarif-tier { color: rgba(255,255,255,0.05); }
.tarif-laser .tarif-tier { color: rgba(255,255,255,0.04); }

/* À définir price treatment */
.tarif-price-row.is-undefined {
  padding-bottom: var(--s-6);
  margin-bottom: var(--s-6);
  border-bottom: 1px solid rgba(10,10,10,0.08);
}
.tarif-featured .tarif-price-row.is-undefined { border-color: rgba(240,235,224,0.12); }
.tarif-laser .tarif-price-row.is-undefined { border-color: rgba(240,235,224,0.1); }
.tarif-price-tag {
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border: 1px solid rgba(199,171,125,0.45);
  padding: 10px 22px;
  border-radius: var(--r-full);
  background: rgba(199,171,125,0.08);
  display: inline-block;
}
.tarif-featured .tarif-price-tag,
.tarif-laser .tarif-price-tag {
  color: #e8cfa0;
  border-color: rgba(199,171,125,0.55);
  background: rgba(199,171,125,0.14);
}

/* Laser card — dark standalone */
.tarif-laser {
  background: linear-gradient(155deg, #0f0f0d 0%, #1d1b16 100%);
  border: 1px solid rgba(199,171,125,0.18);
}
.tarif-laser:hover {
  transform: translateY(-5px);
  border-color: rgba(199,171,125,0.4);
  box-shadow: 0 16px 48px -8px rgba(199,171,125,0.16), 0 6px 16px rgba(0,0,0,0.35);
}
.tarif-laser .tarif-name { color: var(--white); }
.tarif-laser .tarif-sub { color: var(--gold); }
.tarif-laser .tarif-feat { color: rgba(240,235,224,0.82); }
.tarif-laser .tarif-feat svg { color: var(--gold); }

/* Signature badge sur fond clair */
.tarif-signature .tarif-badge {
  background: var(--white);
  color: var(--ink-900);
  border: 1px solid rgba(10,10,10,0.1);
  box-shadow: 0 2px 8px rgba(10,10,10,0.08);
}

.tarif-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: var(--g-gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  box-shadow: 0 4px 12px rgba(144, 129, 92, 0.35);
  white-space: nowrap;
}

.tarif-name {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-2);
  color: var(--ink-900);
}
.tarif-featured .tarif-name { color: var(--white); }

.tarif-sub {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: var(--ink-500);
  margin-bottom: var(--s-8);
}
.tarif-featured .tarif-sub { color: var(--gold); }

.tarif-price-row {
  display: flex;
  align-items: baseline;
  gap: var(--s-2);
  padding-bottom: var(--s-6);
  margin-bottom: var(--s-6);
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}
.tarif-featured .tarif-price-row { border-color: rgba(240, 235, 224, 0.12); }

.tarif-price {
  font-family: var(--f-display);
  font-size: 56px;
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink-900);
  font-feature-settings: "lnum";
}
.tarif-featured .tarif-price { color: var(--white); }

.tarif-currency {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 24px;
  color: var(--ink-400);
}
.tarif-featured .tarif-currency { color: var(--gold); }

.tarif-duration {
  margin-left: auto;
  font-size: 12px;
  color: var(--ink-400);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  align-self: center;
}
.tarif-featured .tarif-duration { color: rgba(240, 235, 224, 0.5); }

.tarif-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-bottom: var(--s-8);
}
.tarif-feat {
  display: flex;
  gap: var(--s-3);
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-600);
}
.tarif-featured .tarif-feat { color: rgba(240, 235, 224, 0.85); }
.tarif-feat svg { color: var(--gold-deep); flex-shrink: 0; margin-top: 3px; }
.tarif-featured .tarif-feat svg { color: var(--gold); }

.tarif-cta {
  width: 100%;
  padding: 15px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--r-md);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.3s var(--ease-out);
  text-align: center;
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow;
  cursor: pointer;
  display: inline-block;
}
.tarif-cta-ghost {
  background: linear-gradient(180deg, #ffffff 0%, #f5f1e8 100%);
  border: 1px solid rgba(10, 10, 10, 0.1);
  color: var(--ink-900);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 0 rgba(10, 10, 10, 0.04),
    0 1px 2px rgba(10, 10, 10, 0.05),
    0 3px 8px rgba(10, 10, 10, 0.08);
}
.tarif-cta-ghost:hover {
  background: linear-gradient(180deg, #1f1d18 0%, #0a0a0a 100%);
  color: var(--white);
  border-color: var(--ink-900);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 0 rgba(0, 0, 0, 0.3),
    0 2px 4px rgba(10, 10, 10, 0.2),
    0 8px 16px rgba(10, 10, 10, 0.22),
    0 16px 32px -6px rgba(10, 10, 10, 0.3);
}
.tarif-cta-ghost:active {
  transform: translateY(1px);
  box-shadow:
    inset 0 2px 4px rgba(10, 10, 10, 0.15),
    0 1px 2px rgba(10, 10, 10, 0.08);
}

.tarif-cta-featured {
  background: linear-gradient(180deg, #e3cba0 0%, #c7ab7d 45%, #a89169 100%);
  color: var(--white);
  border: none;
  text-shadow: 0 1px 2px rgba(94, 78, 50, 0.3);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 2px 0 rgba(94, 78, 50, 0.4),
    0 1px 2px rgba(94, 78, 50, 0.3),
    0 4px 10px rgba(144, 129, 92, 0.4),
    0 10px 24px -4px rgba(199, 171, 125, 0.45);
}
.tarif-cta-featured::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-100%);
  transition: transform 0.7s var(--ease-out);
  pointer-events: none;
}
.tarif-cta-featured:hover::after { transform: translateX(100%); }
.tarif-cta-featured:hover {
  background: linear-gradient(180deg, #edd7ae 0%, #d4b98a 45%, #b89c7a 100%);
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.6),
    inset 0 -1px 2px 0 rgba(94, 78, 50, 0.35),
    0 2px 4px rgba(94, 78, 50, 0.3),
    0 8px 16px rgba(144, 129, 92, 0.4),
    0 18px 36px -6px rgba(199, 171, 125, 0.55),
    0 28px 50px -10px rgba(199, 171, 125, 0.4);
}
.tarif-cta-featured:active {
  transform: translateY(0);
  box-shadow:
    inset 0 2px 4px rgba(94, 78, 50, 0.3),
    0 1px 3px rgba(144, 129, 92, 0.25);
}

.tarifs-note {
  margin-top: var(--s-10);
  text-align: center;
  font-size: 13px;
  color: var(--ink-500);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--s-6);
  flex-wrap: wrap;
}
.tarifs-note-sep {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--ink-300);
}

/* ══════════════════════════════════════════════════════════════
   TEMOIGNAGES — Ultra premium dark
   ══════════════════════════════════════════════════════════════ */
.temoignages {
  background: var(--paper);
  color: var(--ink-900);
}
.temoignages > .container { position: relative; }

/* Layout avis photos */
/* Carousel avis */
.avis-carousel {
  position: relative;
}
.avis-carousel::before,
.avis-carousel::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.avis-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--paper) 0%, transparent 100%);
}
.avis-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--paper) 0%, transparent 100%);
}
.avis-track {
  display: flex;
  gap: var(--s-5);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior: smooth;
  padding: var(--s-3) var(--s-2) var(--s-5);
  cursor: grab;
}
.avis-track.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.avis-track::-webkit-scrollbar { display: none; }
.avis-slide {
  flex: 0 0 calc(18% - 14px);
  scroll-snap-align: start;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10,10,10,0.08);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  user-select: none;
}
.avis-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(10,10,10,0.14);
}
.avis-slide a {
  display: block;
  cursor: inherit;
  -webkit-user-drag: none;
}
.avis-slide img {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* Barre de progression + compteur */
.avis-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
  margin-top: var(--s-5);
  padding: 0 var(--s-2);
}
.avis-counter {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.3);
  flex-shrink: 0;
  white-space: nowrap;
}
.avis-counter-current {
  color: var(--gold-deep);
  transition: color 0.3s;
}
.avis-counter-sep {
  margin: 0 4px;
  color: rgba(199,171,125,0.45);
}
.avis-progress-bar {
  width: 100%;
  height: 2px;
  background: rgba(199,171,125,0.2);
  border-radius: 1px;
  overflow: hidden;
}
.avis-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #e3cba0, #c7ab7d 50%, #90815c);
  border-radius: 1px;
  transition: width 0.15s ease;
  transform-origin: left;
}

/* Trust bar */
.temoignages-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-6);
  margin-bottom: var(--s-16);
  padding: var(--s-4) var(--s-8);
  background: rgba(199,171,125,0.07);
  border: 1px solid rgba(199,171,125,0.18);
  border-radius: var(--r-full);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.temoignages-trust-item {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 12px;
  font-weight: 500;
  color: rgba(250,247,240,0.65);
  letter-spacing: 0.05em;
}
.temoignages-trust-stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
}
.temoignages-trust-sep {
  width: 1px; height: 14px;
  background: rgba(199,171,125,0.25);
}

/* Featured card — large horizontal */
.temoignage--featured {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  margin-bottom: var(--s-5);
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(199,171,125,0.2);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04) inset;
}
.temoignage--featured::before {
  content: “”;
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(199,171,125,0.5) 25%, #c7ab7d 50%, rgba(144,129,92,0.5) 75%, transparent);
  z-index: 2;
}
.temoignage--featured:hover {
  border-color: rgba(199,171,125,0.38);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05) inset, 0 20px 60px rgba(10,10,10,0.35), 0 0 50px -10px rgba(199,171,125,0.12);
}
.temoignage--featured-content {
  padding: var(--s-12);
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
}
.temoignage--featured-pull {
  width: 300px;
  flex-shrink: 0;
  background: rgba(199,171,125,0.05);
  border-left: 1px solid rgba(199,171,125,0.15);
  padding: var(--s-12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--s-5);
}
.temoignage--featured-pull-quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(30px, 2.6vw, 40px);
  line-height: 1;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  padding-right: 0.2em;
}
.temoignage--featured-pull-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,247,240,0.35);
}

/* Grid */
.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}

/* Regular card */
.temoignage {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(199,171,125,0.13);
  border-radius: var(--r-xl);
  padding: var(--s-8) var(--s-8) var(--s-7);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.03) inset;
}
.temoignage::before {
  content: “”;
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(199,171,125,0.35) 30%, rgba(199,171,125,0.6) 50%, rgba(199,171,125,0.35) 70%, transparent);
}
.temoignage::after {
  content: “\201C”;
  position: absolute;
  top: -16px; right: 16px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 140px;
  line-height: 1;
  color: rgba(199,171,125,0.07);
  pointer-events: none;
  user-select: none;
}
.temoignage:hover {
  transform: translateY(-5px);
  border-color: rgba(199,171,125,0.3);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05) inset,
    0 16px 48px rgba(10,10,10,0.4),
    0 0 40px -12px rgba(199,171,125,0.12);
}

/* Stars */
.temoignage-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  flex-shrink: 0;
}

/* Text */
.temoignage-text {
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.75;
  color: rgba(250,247,240,0.78);
  margin: 0;
  flex: 1;
  font-weight: 400;
}
.temoignage-text em {
  font-style: normal;
  color: rgba(250,247,240,0.95);
  font-weight: 600;
}

/* Author */
.temoignage-author {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(199,171,125,0.1);
}
.temoignage-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c7ab7d 0%, #90815c 100%);
  display: grid;
  place-items: center;
  color: var(--ink-900);
  font-weight: 800;
  font-size: 14px;
  font-family: var(--f-body);
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(199,171,125,0.25), 0 0 12px rgba(199,171,125,0.15);
}
.temoignage-info { flex: 1; min-width: 0; }
.temoignage-genre {
  font-family: var(--f-display);
  font-size: 17px;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1;
  display: block;
}
.temoignage-meta {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,247,240,0.35);
  margin-top: 3px;
  display: block;
}
.temoignage-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(199,171,125,0.65);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   FAQ — Accordéon éditorial
   ══════════════════════════════════════════════════════════════ */
.faq { background: var(--cream); }
.faq-inner {
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid rgba(10, 10, 10, 0.08); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary { list-style: none; cursor: pointer; }

.faq-q {
  width: 100%;
  padding: var(--s-8) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
  text-align: left;
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  transition: color 0.3s var(--ease-out);
}
.faq-q:hover { color: var(--gold-deep); }

.faq-q-mark {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(10, 10, 10, 0.15);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.4s var(--ease-out);
  color: var(--ink-700);
}
.faq-item[open] .faq-q-mark {
  background: var(--ink-900);
  border-color: var(--ink-900);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-a {
  padding-bottom: 0;
  animation: faqFadeDown 0.4s var(--ease-out);
}
@keyframes faqFadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.faq-a-inner {
  padding: 0 0 var(--s-8) 0;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-500);
}

/* ── FAQ dark variant (nos-formules.html fond ink-900) ── */
.faq-section .faq-item {
  border-bottom: 1px solid rgba(240,235,224,0.1);
}
.faq-section .faq-item:first-child {
  border-top: 1px solid rgba(240,235,224,0.1);
}
.faq-section .faq-q {
  color: rgba(240,235,224,0.88);
  padding: var(--s-6) 0;
}
.faq-section .faq-q:hover { color: var(--gold); }
.faq-section .faq-q::after {
  content: '+';
  font-family: var(--f-body);
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-out);
  line-height: 1;
}
.faq-section details[open] > .faq-q::after {
  transform: rotate(45deg);
}
.faq-section .faq-a {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(240,235,224,0.5);
  padding-bottom: var(--s-6);
  max-width: 720px;
  animation: faqFadeDown 0.4s var(--ease-out);
}
.faq-section .faq-list {
  max-width: 820px;
  margin: var(--s-10) auto 0;
}


/* ══════════════════════════════════════════════════════════════
   CTA FINAL — Dramatique
   ══════════════════════════════════════════════════════════════ */
.cta-final {
  background: var(--ink-900);
  color: var(--paper);
  padding: var(--s-32) 0;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(199, 171, 125, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 10%, rgba(144, 129, 92, 0.1) 0%, transparent 40%);
  pointer-events: none;
}
.cta-final-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--s-8);
}

.cta-final h2 {
  color: var(--white);
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.005em;
  margin: var(--s-6) 0 var(--s-8);
  text-transform: uppercase;
}
.cta-final h2 em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, #f5ecd9 0%, #e8d9bd 30%, #c7ab7d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
  padding: 0 0.14em 0.08em 0.02em;
  margin: 0 -0.14em 0 -0.02em;
  overflow: visible;
  vertical-align: baseline;
}

.cta-final .lede {
  color: rgba(240, 235, 224, 0.7);
  margin: 0 auto var(--s-12);
  max-width: 580px;
  font-size: 20px;
}

.cta-final-actions {
  display: flex;
  gap: var(--s-3);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--s-16);
}
.cta-final-actions .btn-gold { padding: 18px 36px; font-size: 15px; }
.cta-final-actions .btn-ghost {
  padding: 18px 36px;
  font-size: 15px;
  color: var(--paper);
  border-color: rgba(240, 235, 224, 0.2);
}

.cta-final-reassures {
  display: flex;
  gap: var(--s-10);
  justify-content: center;
  flex-wrap: wrap;
  padding-top: var(--s-10);
  border-top: 1px solid rgba(240, 235, 224, 0.12);
}
.cta-reassure {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 13px;
  color: rgba(240, 235, 224, 0.7);
  letter-spacing: -0.005em;
}
.cta-reassure svg { color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--cream);
  color: rgba(10,10,10,0.55);
  padding: var(--s-20) 0 var(--s-8);
  border-top: 1px solid rgba(199,171,125,0.2);
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(199,171,125,0.5) 20%, #c7ab7d 50%, rgba(144,129,92,0.5) 80%, transparent 100%);
}

.footer-brand-link {
  display: inline-block;
  transition: opacity 0.3s;
}
.footer-brand-link:hover { opacity: 0.8; }

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--s-12);
  padding-bottom: var(--s-16);
  border-bottom: 1px solid rgba(199,171,125,0.15);
  margin-bottom: var(--s-8);
}

.footer-brand-block p {
  font-size: 13.5px;
  line-height: 1.75;
  margin-top: var(--s-5);
  max-width: 300px;
  color: rgba(10,10,10,0.45);
}

.footer-col h4 {
  font-family: var(--f-display);
  font-size: var(--fs-h4);
  color: var(--ink-900);
  letter-spacing: 0.1em;
  margin-bottom: var(--s-5);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.footer-col a {
  font-size: 13.5px;
  color: rgba(10,10,10,0.5);
  transition: color 0.25s;
}
.footer-col a:hover { color: var(--gold-deep); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  font-size: 13.5px;
}
.footer-contact-item {
  display: flex;
  gap: var(--s-3);
  align-items: flex-start;
  color: rgba(10,10,10,0.5);
  line-height: 1.5;
}
.footer-contact-item svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact-item em {
  display: block;
  font-size: 11.5px;
  opacity: 0.65;
  font-style: italic;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-4);
  font-size: 11.5px;
  color: rgba(10,10,10,0.35);
  letter-spacing: 0.02em;
}
.footer-bottom a {
  color: inherit;
  transition: color 0.25s;
}
.footer-bottom a:hover { color: var(--gold-deep); }

.footer-socials {
  display: flex;
  gap: var(--s-2);
}
.footer-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: white;
  border: 1px solid rgba(199,171,125,0.3);
  display: grid;
  place-items: center;
  color: rgba(10,10,10,0.45);
  transition: transform 0.3s var(--ease-out), background 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 1px 4px rgba(10,10,10,0.06);
}
.footer-social:hover {
  background: radial-gradient(circle at 30% 25%, #edd7ae 0%, #c7ab7d 50%, #a89169 100%);
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.4),
    0 8px 20px rgba(199,171,125,0.35),
    0 2px 6px rgba(144,129,92,0.25);
}
.footer-social:active { transform: translateY(-1px); }

/* ── Footer — Horaires ── */
.footer-hours {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  margin-bottom: var(--s-4);
}
.footer-hours li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(10,10,10,0.55);
  gap: var(--s-3);
}
.footer-hours-day { color: rgba(10,10,10,0.7); font-weight: 500; }
.footer-hours-time { font-variant-numeric: tabular-nums; }
.footer-hours-closed { color: rgba(10,10,10,0.3); font-style: italic; }
.footer-hours-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: rgba(199,171,125,0.1);
  border: 1px solid rgba(199,171,125,0.25);
  border-radius: var(--r-full);
  padding: 3px 10px;
  margin-bottom: var(--s-3);
}
.footer-hours-gender {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 12px;
  color: rgba(10,10,10,0.4);
}

/* ── Footer — Boutons navigation Maps/Waze ── */
.footer-nav-btns {
  display: flex;
  gap: var(--s-2);
  flex-wrap: wrap;
  margin-top: var(--s-5);
  margin-bottom: var(--s-3);
}
.footer-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: var(--r-full);
  border: 1px solid rgba(10,10,10,0.12);
  color: rgba(10,10,10,0.6);
  background: var(--white);
  transition: all 0.25s var(--ease-out);
}
.footer-nav-btn:hover { border-color: var(--gold); color: var(--gold-deep); }
.footer-nav-btn--waze { background: linear-gradient(135deg, #33aef0 0%, #0f6cbd 100%); color: #fff !important; border-color: transparent; }
.footer-nav-btn--waze:hover { color: #fff !important; opacity: 0.88; }

/* ── Footer — CTA buttons ── */
.footer-ctas {
  display: flex;
  gap: var(--s-2);
  flex-wrap: wrap;
}
.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: var(--r-full);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.footer-cta:hover { transform: translateY(-2px); }
.footer-cta--whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}
.footer-cta--whatsapp:hover { box-shadow: 0 8px 20px rgba(37,211,102,0.4); }
.footer-cta--resa {
  background: linear-gradient(135deg, #e3cba0 0%, #c7ab7d 50%, #90815c 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(199,171,125,0.35);
}
.footer-cta--resa:hover { box-shadow: 0 8px 20px rgba(199,171,125,0.45); }

/* ══════════════════════════════════════════════════════════════
   PRE-FOOTER — CTA Strip
   ══════════════════════════════════════════════════════════════ */
.pre-footer {
  background: var(--ink-900);
  padding: clamp(60px, 7vw, 96px) 0;
  position: relative;
  overflow: hidden;
}
.pre-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(199,171,125,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.pre-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-12);
  position: relative;
}
.pre-footer-text {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.pre-footer-text h2 {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--cream);
  margin: 0;
}
.pre-footer-text h2 em {
  font-style: italic;
  color: var(--gold);
}
.pre-footer-actions {
  display: flex;
  gap: var(--s-3);
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER — Newsletter strip
   ══════════════════════════════════════════════════════════════ */
.footer-newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-8);
  padding: var(--s-8) 0;
  flex-wrap: wrap;
}
.footer-newsletter-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-newsletter-text strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: 0.01em;
}
.footer-newsletter-text span {
  font-size: 13px;
  color: rgba(10,10,10,0.45);
}
.footer-newsletter-form {
  display: flex;
  gap: var(--s-2);
  flex-wrap: wrap;
  flex-shrink: 0;
}
.footer-newsletter-input {
  padding: 10px 16px;
  border-radius: var(--r-full);
  border: 1.5px solid rgba(199,171,125,0.35);
  background: rgba(255,255,255,0.7);
  font-size: 13.5px;
  font-family: var(--f-body);
  color: var(--ink-900);
  outline: none;
  width: 240px;
  max-width: 100%;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.footer-newsletter-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(199,171,125,0.15);
}
.footer-newsletter-input::placeholder { color: rgba(10,10,10,0.3); }
.footer-newsletter-btn {
  padding: 10px 20px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, #e3cba0 0%, #c7ab7d 50%, #90815c 100%);
  color: white;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--f-body);
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: opacity 0.25s, transform 0.25s var(--ease-out);
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(199,171,125,0.3);
}
.footer-newsletter-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* ── Footer Map ── */
.footer-map-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(199,171,125,0.2);
  box-shadow: 0 2px 12px rgba(10,10,10,0.08);
  margin-bottom: var(--s-4);
  line-height: 0;
}
.footer-map-wrap iframe {
  display: block;
  width: 100%;
  height: 180px;
  filter: grayscale(20%) contrast(0.95);
  transition: filter 0.3s;
}
.footer-map-wrap:hover iframe { filter: grayscale(0%) contrast(1); }

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: rgba(10,10,10,0.55);
  line-height: 1.55;
  margin-bottom: var(--s-4);
}
.footer-address svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ── Footer Divider ── */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(199,171,125,0.25) 20%, rgba(199,171,125,0.4) 50%, rgba(199,171,125,0.25) 80%, transparent 100%);
  margin: var(--s-2) 0;
}

/* ── Footer Trust Badges ── */
.footer-trust {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  margin: var(--s-5) 0;
}
.footer-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(10,10,10,0.55);
}
.footer-trust-badge svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ── Footer Language Switcher ── */
.footer-lang {
  display: flex;
  gap: var(--s-1);
  margin-top: var(--s-5);
}
.footer-lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 26px;
  border-radius: 5px;
  border: 1px solid rgba(199,171,125,0.25);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(10,10,10,0.45);
  background: transparent;
  transition: all 0.2s;
}
.footer-lang-btn:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}
.footer-lang-btn.active {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}

/* ── Footer col gold link ── */
.footer-col-link-gold {
  font-size: 12.5px !important;
  font-weight: 700 !important;
  color: var(--gold-deep) !important;
  letter-spacing: 0.03em;
}
.footer-col-link-gold:hover {
  color: var(--gold) !important;
}

/* ── Footer Bottom Legal Bar ── */
.footer-bottom-legal {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  flex-wrap: wrap;
  font-size: 11.5px;
  color: rgba(10,10,10,0.35);
}
.footer-bottom-legal a {
  color: rgba(10,10,10,0.35);
  transition: color 0.25s;
}
.footer-bottom-legal a:hover { color: var(--gold-deep); }
.footer-bottom-legal span::after {
  content: "·";
  margin-left: var(--s-4);
  color: rgba(199,171,125,0.3);
}
.footer-bottom-credit {
  font-size: 11.5px;
  color: rgba(10,10,10,0.3);
}
.footer-bottom-credit a {
  color: rgba(10,10,10,0.4);
  font-weight: 600;
  transition: color 0.25s;
}
.footer-bottom-credit a:hover { color: var(--gold-deep); }

/* ── Footer Responsive ── */
@media (max-width: 1100px) {
  .pre-footer-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .pre-footer-actions { justify-content: center; }
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-newsletter {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s-5);
  }
  .footer-newsletter-form { width: 100%; }
  .footer-newsletter-input { flex: 1; width: auto; }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--s-8);
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s-3);
  }
  .footer-bottom-legal {
    gap: var(--s-3);
  }
  .pre-footer-text h2 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }
  .pre-footer-actions {
    flex-direction: column;
    width: 100%;
  }
  .pre-footer-actions .btn,
  .pre-footer-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }
}

/* ══════════════════════════════════════════════════════════════
   FAB — Floating action buttons
   ══════════════════════════════════════════════════════════════ */
.fab {
  position: fixed;
  bottom: var(--s-6);
  right: var(--s-6);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.fab-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  position: relative;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-out);
  will-change: transform, box-shadow;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
.fab-btn::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
  pointer-events: none;
}
.fab-btn > svg { position: relative; z-index: 2; }
.fab-btn:hover {
  transform: scale(1.08) translateY(-2px);
}
.fab-btn:active {
  transform: scale(0.96) translateY(0);
}

.fab-whatsapp {
  background: radial-gradient(circle at 30% 25%, #3adb7c 0%, #25D366 45%, #0fa653 100%);
  box-shadow:
    inset 0 2px 4px 0 rgba(255, 255, 255, 0.35),
    inset 0 -2px 4px 0 rgba(0, 70, 30, 0.35),
    0 2px 4px rgba(15, 166, 83, 0.35),
    0 8px 16px rgba(37, 211, 102, 0.4),
    0 16px 32px -4px rgba(37, 211, 102, 0.35);
}
.fab-whatsapp:hover {
  box-shadow:
    inset 0 2px 4px 0 rgba(255, 255, 255, 0.45),
    inset 0 -2px 4px 0 rgba(0, 70, 30, 0.3),
    0 4px 8px rgba(15, 166, 83, 0.4),
    0 14px 28px rgba(37, 211, 102, 0.5),
    0 24px 40px -4px rgba(37, 211, 102, 0.4);
}

.fab-chat {
  background: radial-gradient(circle at 30% 25%, #edd7ae 0%, #c7ab7d 45%, #8f7751 100%);
  animation: fabPulse 2.4s ease-in-out infinite;
  border: none;
  cursor: pointer;
  position: relative;
}
.fab-chat:hover { animation-play-state: paused; }

@keyframes fabPulse {
  0%, 100% {
    box-shadow:
      inset 0 2px 4px 0 rgba(255, 255, 255, 0.45),
      inset 0 -2px 4px 0 rgba(94, 78, 50, 0.45),
      0 2px 4px rgba(94, 78, 50, 0.35),
      0 8px 18px rgba(144, 129, 92, 0.45),
      0 16px 32px -4px rgba(199, 171, 125, 0.4),
      0 0 0 0 rgba(199, 171, 125, 0.5);
  }
  50% {
    box-shadow:
      inset 0 2px 4px 0 rgba(255, 255, 255, 0.45),
      inset 0 -2px 4px 0 rgba(94, 78, 50, 0.45),
      0 2px 4px rgba(94, 78, 50, 0.35),
      0 8px 18px rgba(144, 129, 92, 0.55),
      0 20px 40px -4px rgba(199, 171, 125, 0.5),
      0 0 0 16px rgba(199, 171, 125, 0);
  }
}

/* ══════════════════════════════════════════════════════════════
   LANG SWITCHER — pill fixe bas-gauche
   ══════════════════════════════════════════════════════════════ */
.lang-switcher {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(250, 247, 240, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(199,171,125,0.22);
  border-radius: 100px;
  padding: 4px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.6) inset,
    0 4px 20px rgba(10,10,10,0.1),
    0 1px 4px rgba(10,10,10,0.06);
}
.lang-switcher-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 30px;
  padding: 0 10px;
  border-radius: 100px;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  color: var(--ink-400);
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  user-select: none;
}
.lang-switcher-item:hover {
  color: var(--ink-900);
  background: rgba(10,10,10,0.06);
}
.lang-switcher-item.active {
  background: var(--ink-900);
  color: var(--gold);
  pointer-events: none;
}
.lang-switcher-item.disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════════════
   ANIMATIONS — Scroll reveal
   ══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 80ms; }
.reveal-d2 { transition-delay: 160ms; }
.reveal-d3 { transition-delay: 240ms; }
.reveal-d4 { transition-delay: 320ms; }
.reveal-d5 { transition-delay: 400ms; }

/* ══════════════════════════════════════════════════════════════
   FOCUS STATES — A11Y
   ══════════════════════════════════════════════════════════════ */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .nav { left: 16px; right: 16px; }
  .nav-inner { padding: 2px 20px; }
  .nav-menu { gap: var(--s-8); }
  .nav-menu a { font-size: 12px; letter-spacing: 0.04em; }
  .nav-logo-wrap { height: 86px; }
  .nav-logo { height: 220px; margin-top: -62px; margin-left: -21px; margin-right: -21px; }

  section { padding: var(--s-20) 0; }
  .services, .hygiene, .cta-final, .manifesto, .approche { padding: var(--s-24) 0; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--s-16);
  }
  /* HERO tablette */
  .hero { padding: 185px 0 var(--s-24); }
  .hero-inner { gap: var(--s-10); }
  .hero h1 { font-size: var(--fs-h1); }
  .hero-lede { font-size: 16px; }
  .hero-visual { max-width: 460px; margin: 0 auto; width: 100%; }
  .hero-card-main { width: 100%; height: 100%; left: 0; right: 0; top: 0; }

  .bienfaits-grid { grid-template-columns: repeat(2, 1fr); }
  .tarifs-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-4); padding-top: 22px; }

  /* Avis tablette */
  .avis-slide { flex: 0 0 calc(26% - 14px); }

  .approche-inner, .hygiene-grid {
    grid-template-columns: 1fr;
    gap: var(--s-12);
  }
  .approche-frame { display: none; }

  .services-head {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }
  .services-count { align-items: flex-start; }
  .services-count-num { font-size: 48px; }

  .soins-grid { gap: var(--s-4); }

  .service {
    grid-template-columns: 1fr;
    gap: var(--s-4);
  }
  .service-meta {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-width: 0;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-10);
  }
}

@media (max-width: 720px) {
  .container, .container-narrow, .container-tight { padding: 0 var(--s-5); }
  section { padding: var(--s-16) 0; }
  .services, .hygiene, .cta-final, .manifesto, .approche { padding: var(--s-20) 0; }
  .section-head { margin-bottom: var(--s-16); }

  /* Topbar masqué sur mobile */
  .nav-topbar { display: none; }

  /* Navbar flottante mobile */
  .nav { top: 10px; left: 10px; right: 10px; border-radius: 16px; }
  .nav-inner {
    padding: 0 16px;
    grid-template-columns: 1fr auto;
  }
  .nav-brand { border-right: none; padding-right: 0; }
  .nav-logo-wrap { height: 90px; }
  .nav-logo {
    height: 230px;
    margin-top: -65px;
    margin-left: -22px;
    margin-right: -22px;
  }

  /* Menu mobile : transition max-height */
  .nav-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 6px);
    left: 0; right: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
      max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.28s ease;
    background: rgba(250, 247, 240, 0.97);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    padding: 0 var(--s-5);
    gap: 0;
    border-radius: 0 0 16px 16px;
    border: 1px solid rgba(199, 171, 125, 0.2);
    border-top: none;
    box-shadow: 0 16px 40px rgba(10, 10, 10, 0.14);
  }
  .nav-menu.open {
    max-height: 420px;
    opacity: 1;
    pointer-events: auto;
    padding: var(--s-4) var(--s-5);
  }
  .nav-menu a {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: var(--s-4) 0;
    border-bottom: 1px solid rgba(199, 171, 125, 0.12);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-menu a:last-child { border-bottom: none; }
  .nav-menu a::after { display: none; }
  .nav-menu a::before {
    content: '→';
    font-size: 12px;
    color: var(--gold);
    opacity: 0;
    transition: opacity 0.2s ease;
  }
  .nav-menu a:hover::before { opacity: 1; }

  .nav-actions .btn-gold { display: none; }
  .nav-toggle { display: flex; }

  /* HERO mobile */
  .hero { padding: 152px 0 var(--s-16); }
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-meta { margin-bottom: var(--s-4); font-size: 11px; padding: 8px 16px; }
  .hero h1 { font-size: var(--fs-h1); line-height: 0.93; margin-bottom: var(--s-5); }
  .hero-lede { font-size: 15px; line-height: 1.65; margin-bottom: var(--s-8); max-width: 100%; }
  .hero-ctas { flex-direction: column; align-items: stretch; margin-bottom: var(--s-8); gap: var(--s-3); }
  .hero-ctas .btn { width: 100%; justify-content: center; padding: 18px 24px; font-size: 15px; }
  .hero-proof {
    gap: var(--s-4);
    padding-top: var(--s-6);
    flex-wrap: wrap;
  }
  .stack-avatars > * { width: 34px; height: 34px; font-size: 11px; margin-left: -8px; }
  .proof-divider { height: 38px; }
  .proof-stars svg { width: 12px; height: 12px; }
  .proof-text { font-size: 12px; gap: 6px; }
  .proof-text strong { font-size: 13px; }
  .hero-visual { display: block; aspect-ratio: 16/9; max-width: 100%; margin: var(--s-8) auto 0; }
  .hero-card-main {
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
  }

  .marquee-item { font-size: 16px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat { padding: var(--s-6) var(--s-5); }
  .stat:first-child { padding-left: var(--s-5); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(3) { border-bottom: 0; }
  .stat:nth-child(1),
  .stat:nth-child(2) { border-bottom: 1px solid rgba(199,171,125,0.22); }
  .stat-num { font-size: clamp(48px, 12vw, 72px); }
  .stat-label { font-size: 9px; }

  .manifesto-row-1 { grid-template-columns: 1fr; min-height: auto; }
  .manifesto-row-2 { grid-template-columns: 1fr; }
  .manifesto-cell-main { min-height: 280px; }
  .manifesto-cell-quote { min-height: 200px; }

  .service-body h3 { font-size: var(--fs-h3); }
  .service-price-amount { font-size: 32px; }

  .soins-grid { grid-template-columns: 1fr; }
  .soin-card-bullets { grid-template-columns: 1fr; }
  .soin-card-footer { flex-direction: column; align-items: stretch; gap: var(--s-3); }
  .soin-cta { justify-content: center; }

  /* Avis mobile */
  .avis-slide { flex: 0 0 calc(44% - 10px); }
  .avis-carousel::before, .avis-carousel::after { width: 40px; }
  .avis-counter { font-size: 10px; }

  .soin-card--wide { flex-direction: column; }
  .soin-card--wide .soin-card-visual { width: 100%; aspect-ratio: 4/3; min-height: unset; }
  .soin-card--wide .soin-card-body { padding: var(--s-8) var(--s-8) var(--s-8); }
  .soin-card--wide .soin-card-title { font-size: 30px; }
  .soin-card--wide .soin-card-bullets { grid-template-columns: 1fr; }

  .tarifs-grid { grid-template-columns: 1fr; padding-top: 22px; }

  .cta-final-actions { flex-direction: column; align-items: stretch; }
  .cta-final-actions .btn { width: 100%; }
  .cta-final-reassures { gap: var(--s-4); flex-direction: column; align-items: center; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--s-10);
  }
  .footer-bottom { flex-direction: column; text-align: center; }

  .fab-btn { width: 52px; height: 52px; }

  .approche-visual { top: 0; }
}


/* ══════════════════════════════════════════════════════════════
   INNER PAGES — Composants communs à toutes les pages internes
   ══════════════════════════════════════════════════════════════ */

/* ── Page Hero ── */
.page-hero {
  padding: 168px 0 var(--s-28);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -180px; right: -120px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199,171,125,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero--dark {
  background: var(--ink-900);
  padding-top: 220px;
}
.page-hero--dark .page-hero-eyebrow { color: var(--gold); }
.page-hero--dark .page-hero-h1 { color: var(--white); }
.page-hero--dark .page-hero-lede { color: rgba(240,235,224,0.7); }

/* ── Hero card (variante boxed — À propos) ── */
.hero-card-wrap {
  padding-top: 148px;
  padding-bottom: 0;
  background: var(--cream);
}
.hero-card {
  background: var(--ink-900);
  border-radius: 15px;
  margin: 15px 20px;
  padding: clamp(32px, 3.5vw, 56px) clamp(40px, 5vw, 80px);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: -180px; right: -100px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199,171,125,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-card-content {
  max-width: 680px;
  position: relative;
  z-index: 1;
}
.hero-card .page-hero-eyebrow { color: var(--gold); }
.hero-card .page-hero-eyebrow::before { background: var(--gold); }
.hero-card h1 { color: var(--white); }
.hero-card .page-hero-lede { color: rgba(240,235,224,0.68); }
.hero-card-metrics {
  display: flex;
  gap: 0;
  padding-top: var(--s-8);
  margin-top: var(--s-10);
  border-top: 1px solid rgba(199,171,125,0.18);
}
.hero-card-metric {
  flex: 1;
  padding-right: var(--s-8);
}
.hero-card-metric + .hero-card-metric {
  padding-left: var(--s-8);
  border-left: 1px solid rgba(199,171,125,0.12);
}
.hero-card-metric-num {
  font-family: var(--f-display);
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 400;
  color: var(--gold);
  display: block;
  line-height: 1;
  letter-spacing: -0.01em;
}
.hero-card-metric-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
  color: rgba(240,235,224,0.38);
  display: block;
  margin-top: 6px;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
  align-items: center;
}
.page-hero-inner--full { grid-template-columns: 1fr; max-width: 760px; }
.page-hero-content { max-width: 680px; }

.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: var(--s-5);
}
.page-hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--gold);
}
.page-hero-h1 {
  font-family: var(--f-display);
  font-size: clamp(52px, 6.5vw, 96px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink-900);
  margin-bottom: var(--s-7);
}
.page-hero-lede {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-500);
  max-width: 540px;
  margin-bottom: var(--s-10);
}
.page-hero-actions { display: flex; gap: var(--s-4); flex-wrap: wrap; }

/* Visual (image/placeholder côté droit) */
.page-hero-visual {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--paper);
}

/* ── IMG Placeholder (SVG premium) ── */
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(155deg, #1a1814 0%, #0f0f0d 100%);
  position: relative;
  overflow: hidden;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(199,171,125,0.08) 0%, transparent 60%);
}
.img-placeholder-text {
  text-align: center;
  position: relative;
  z-index: 1;
}
.img-placeholder-label {
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: var(--s-3);
}
.img-placeholder-sub {
  font-family: var(--f-body);
  font-size: 11px;
  color: rgba(199,171,125,0.5);
  letter-spacing: 0.1em;
  display: block;
  margin-top: var(--s-2);
}

/* ── Pull Quote ── */
.pull-quote {
  border-left: 2px solid var(--gold);
  padding: var(--s-6) var(--s-8);
  margin: var(--s-10) 0;
  background: rgba(199,171,125,0.05);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.pull-quote p {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  font-style: italic;
}
.pull-quote cite {
  display: block;
  margin-top: var(--s-3);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-style: normal;
}

/* ── Histoire 2-cols ── */
.histoire {
  background: var(--cream);
  padding: clamp(80px, 8vw, 120px) 0;
}
.histoire-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--s-20);
  align-items: start;
}
.histoire-body h2 {
  font-size: var(--fs-h2);
  line-height: 0.93;
  letter-spacing: -0.01em;
  margin: var(--s-5) 0 var(--s-8);
}
.histoire-body p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-600);
  margin-bottom: var(--s-5);
}
.histoire-visual {
  position: sticky;
  top: 175px;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}

/* ── Piliers — 3 colonnes ── */
.piliers {
  background: var(--cream);
  padding: clamp(80px, 8vw, 120px) 0;
}
.piliers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  margin-top: var(--s-16);
}
.pilier {
  background: var(--ink-900);
  border: 1px solid rgba(199,171,125,0.1);
  border-radius: var(--r-xl);
  padding: var(--s-10);
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease-out);
}
.pilier:hover {
  transform: translateY(-4px);
  border-color: rgba(199,171,125,0.28);
  box-shadow: 0 24px 48px rgba(10,10,10,0.18);
}
.pilier::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199,171,125,0.5), transparent);
}
.pilier-num {
  font-family: var(--f-display);
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
  color: rgba(199,171,125,0.06);
  letter-spacing: -0.05em;
  position: absolute;
  top: var(--s-4);
  right: var(--s-5);
  pointer-events: none;
}
.pilier-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: rgba(199,171,125,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: var(--s-6);
}
.pilier-title {
  font-family: var(--f-display);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: var(--s-4);
}
.pilier-desc {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(240,235,224,0.58);
}

/* ── Valeurs — 4 cards ── */
.valeurs {
  background: var(--ink-900);
  padding: clamp(80px, 8vw, 120px) 0;
}
.valeurs .section-head h2 { color: var(--white); }
.valeurs .section-head .eyebrow { color: var(--gold); }
.valeurs .section-head .lede { color: rgba(240,235,224,0.65); }
.valeurs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
  margin-top: var(--s-16);
}
.valeur {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(199,171,125,0.12);
  border-radius: var(--r-xl);
  padding: var(--s-8);
  transition: all 0.35s var(--ease-out);
}
.valeur:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(199,171,125,0.28);
  transform: translateY(-3px);
}
.valeur-icon {
  width: 42px; height: 42px;
  border-radius: var(--r-md);
  background: rgba(199,171,125,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: var(--s-5);
}
.valeur-title {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: var(--s-3);
}
.valeur-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(240,235,224,0.6);
}

/* ── Equipe ── */
.equipe {
  background: var(--paper);
  padding: clamp(80px, 8vw, 120px) 0;
}
.equipe-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: var(--s-16);
  align-items: center;
  background: var(--cream);
  border: 1px solid rgba(199,171,125,0.14);
  border-radius: var(--r-2xl);
  overflow: hidden;
  padding: var(--s-10);
  margin-top: var(--s-16);
}
.equipe-photo {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.equipe-name {
  font-family: var(--f-display);
  font-size: 42px;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink-900);
  margin-bottom: var(--s-3);
}
.equipe-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: var(--s-6);
}
.equipe-bio {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-500);
  margin-bottom: var(--s-6);
}
.equipe-specs {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
}
.equipe-spec {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: rgba(199,171,125,0.1);
  border: 1px solid rgba(199,171,125,0.25);
  padding: 6px 14px;
  border-radius: var(--r-full);
}

/* ── Engagement checklist ── */
.engagement {
  background: var(--white);
  padding: clamp(80px, 8vw, 120px) 0;
}
.engagement-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s-20);
  align-items: center;
}
.engagement-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  margin-top: var(--s-10);
}
.engagement-item {
  display: flex;
  gap: var(--s-4);
  align-items: flex-start;
  padding: var(--s-5) var(--s-6);
  background: var(--white);
  border: 1px solid rgba(10,10,10,0.05);
  border-radius: var(--r-lg);
  transition: all 0.25s var(--ease-out);
}
.engagement-item:hover {
  border-color: rgba(199,171,125,0.25);
  box-shadow: 0 4px 16px rgba(10,10,10,0.06);
}
.engagement-check {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(199,171,125,0.2) 0%, rgba(144,129,92,0.15) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-deep);
  flex-shrink: 0;
  margin-top: 2px;
}
.engagement-item h4 {
  font-family: var(--f-display);
  font-size: var(--fs-h4);
  font-weight: 400;
  color: var(--ink-900);
  margin-bottom: var(--s-1);
}
.engagement-item p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-500);
}

/* ── CTA Final (pages internes) ── */
.page-cta {
  background: var(--ink-900);
  padding: clamp(80px, 8vw, 120px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-cta::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199,171,125,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.page-cta .eyebrow { color: var(--gold); }
.page-cta h2 {
  font-family: var(--f-display);
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: var(--s-8);
  margin-bottom: var(--s-8);
}
.page-cta .lede { color: rgba(240,235,224,0.65); margin-bottom: var(--s-10); }
.page-cta-actions { display: flex; gap: var(--s-4); justify-content: center; flex-wrap: wrap; }

/* ── Showcase alterné (prestations) ── */
.showcase { padding: var(--s-28) 0; }
.showcase--cream { background: var(--cream); }
.showcase--white { background: var(--white); }
.showcase--paper { background: var(--paper); }
.showcase-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
  align-items: center;
  padding: var(--s-16) 0;
  border-bottom: 1px solid rgba(10,10,10,0.06);
}
.showcase-item:last-child { border-bottom: none; }
.showcase-item--reverse { direction: rtl; }
.showcase-item--reverse > * { direction: ltr; }
.showcase-visual {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.showcase-body { max-width: 520px; }
.showcase-num {
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: var(--s-3);
}
.showcase-tag {
  font-family: var(--f-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: var(--s-4);
}
.showcase-title {
  font-family: var(--f-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink-900);
  margin-bottom: var(--s-5);
}
.showcase-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-500);
  margin-bottom: var(--s-6);
}
.showcase-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  margin-bottom: var(--s-7);
}
.showcase-bullet {
  display: flex;
  gap: var(--s-3);
  align-items: flex-start;
  font-size: 14px;
  color: var(--ink-600);
}
.showcase-bullet svg { color: var(--gold-deep); flex-shrink: 0; margin-top: 3px; }
.showcase-price-block {
  display: flex;
  align-items: baseline;
  gap: var(--s-2);
  flex-wrap: wrap;
  margin-bottom: var(--s-7);
  padding: var(--s-5) var(--s-6);
  background: rgba(199,171,125,0.08);
  border: 1px solid rgba(199,171,125,0.2);
  border-radius: var(--r-lg);
  display: inline-flex;
}
.showcase-price {
  font-family: var(--f-display);
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  background: var(--g-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.showcase-price-cur {
  font-family: var(--f-display);
  font-size: 20px;
  background: var(--g-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.showcase-price-dur {
  font-size: 12px;
  color: var(--ink-400);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  align-self: center;
}
.showcase-price-soon {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border: 1px solid rgba(199,171,125,0.4);
  padding: 8px 18px;
  border-radius: var(--r-full);
  background: rgba(199,171,125,0.07);
}
.showcase-price-from {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-400);
  align-self: center;
}
.showcase-price-amount {
  font-family: var(--f-display);
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  background: var(--g-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Timeline étapes ── */
.timeline-section { padding: var(--s-28) 0; }
.timeline-section--dark {
  background: var(--ink-900);
}
.timeline-section--dark h2 { color: var(--white); }
.timeline-section--dark .eyebrow { color: var(--gold); }
.timeline-section--dark .lede { color: rgba(240,235,224,0.65); }
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--s-14);
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold) 0%, rgba(199,171,125,0.1) 100%);
}
.timeline-step {
  display: flex;
  gap: var(--s-8);
  align-items: flex-start;
  padding: var(--s-6) 0;
  position: relative;
}
.timeline-dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--g-gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: var(--f-display);
  font-size: 16px;
  color: var(--white);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(250,247,240,1), 0 0 0 6px rgba(199,171,125,0.2);
}
.timeline-section--dark .timeline-dot {
  box-shadow: 0 0 0 4px var(--ink-900), 0 0 0 6px rgba(199,171,125,0.2);
}
.timeline-body { padding-top: 8px; }
.timeline-step-title {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink-900);
  margin-bottom: var(--s-2);
}
.timeline-section--dark .timeline-step-title { color: var(--white); }
.timeline-step-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-500);
}
.timeline-section--dark .timeline-step-desc { color: rgba(240,235,224,0.6); }

/* ── Stats bandeau (laser) ── */
.stats-bandeau {
  background: var(--ink-900);
  padding: var(--s-16) 0;
  overflow: hidden;
}
.stats-bandeau-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stats-bandeau-item {
  text-align: center;
  padding: var(--s-6) var(--s-4);
  border-right: 1px solid rgba(199,171,125,0.12);
}
.stats-bandeau-item:last-child { border-right: none; }
.stats-bandeau-num {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  background: var(--g-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: var(--s-2);
}
.stats-bandeau-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240,235,224,0.6);
}

/* ── Tableau récap prestations ── */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--r-xl);
  border: 1px solid rgba(10,10,10,0.07);
  margin-top: var(--s-12);
}
.table-tarifs {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}
.table-tarifs th {
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-400);
  padding: var(--s-4) var(--s-6);
  text-align: left;
  border-bottom: 1px solid rgba(10,10,10,0.07);
  background: var(--cream);
}
.table-tarifs td {
  padding: var(--s-4) var(--s-6);
  font-size: 14px;
  color: var(--ink-700);
  border-bottom: 1px solid rgba(10,10,10,0.04);
}
.table-tarifs tr:last-child td { border-bottom: none; }
.table-tarifs tr:hover td { background: rgba(199,171,125,0.04); }
.table-tarifs .td-name {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink-900);
}
.table-tarifs .td-price {
  font-family: var(--f-display);
  font-size: 22px;
  background: var(--g-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
}
.table-tarifs .td-soon {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: rgba(199,171,125,0.08);
  padding: 4px 10px;
  border-radius: var(--r-full);
  border: 1px solid rgba(199,171,125,0.25);
}

/* ── Formules cards (nos-formules.html) ── */
.formules-section { padding: var(--s-28) 0; }
.formules-section--alt { background: var(--cream); }
.formules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-14);
  align-items: end;
}
.formule-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(10,10,10,0.07);
  border-radius: var(--r-2xl);
  padding: var(--s-10);
  display: flex;
  flex-direction: column;
  transition: all 0.35s var(--ease-out);
}
.formule-card:hover {
  border-color: rgba(199,171,125,0.3);
  box-shadow: 0 20px 60px -10px rgba(10,10,10,0.12);
  transform: translateY(-4px);
}
.formule-card--featured {
  background: var(--ink-900);
  border-color: var(--ink-900);
  transform: translateY(-16px);
}
.formule-card--featured:hover { transform: translateY(-20px); }
.formule-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 6px 16px;
  background: var(--g-gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  box-shadow: 0 4px 12px rgba(144,129,92,0.35);
}
.formule-tier {
  font-family: var(--f-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: var(--s-2);
}
.formule-card--featured .formule-tier { color: var(--gold); }
.formule-name {
  font-family: var(--f-display);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin-bottom: var(--s-1);
}
.formule-card--featured .formule-name { color: var(--white); }
.formule-sub {
  font-size: 13px;
  color: var(--ink-400);
  margin-bottom: var(--s-8);
}
.formule-card--featured .formule-sub { color: rgba(240,235,224,0.5); }
.formule-price-row {
  display: flex;
  align-items: baseline;
  gap: var(--s-2);
  padding-bottom: var(--s-6);
  margin-bottom: var(--s-6);
  border-bottom: 1px solid rgba(10,10,10,0.07);
}
.formule-card--featured .formule-price-row { border-color: rgba(240,235,224,0.1); }
.formule-price-original {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--ink-300);
  text-decoration: line-through;
  font-weight: 300;
}
.formule-card--featured .formule-price-original { color: rgba(240,235,224,0.25); }
.formule-price {
  font-family: var(--f-display);
  font-size: 52px;
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink-900);
}
.formule-card--featured .formule-price { color: var(--white); }
.formule-currency {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 300;
  color: var(--gold-deep);
}
.formule-card--featured .formule-currency { color: var(--gold); }
.formule-savings {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3d9a5e;
  background: rgba(61,154,94,0.1);
  border: 1px solid rgba(61,154,94,0.2);
  padding: 4px 10px;
  border-radius: var(--r-full);
  white-space: nowrap;
  margin-left: auto;
  align-self: flex-start;
}
.formule-duration {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: var(--s-6);
}
.formule-card--featured .formule-duration { color: rgba(240,235,224,0.45); }
.formule-items {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-bottom: var(--s-8);
}
.formule-item {
  display: flex;
  gap: var(--s-3);
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-600);
}
.formule-card--featured .formule-item { color: rgba(240,235,224,0.8); }
.formule-item svg { color: var(--gold-deep); flex-shrink: 0; margin-top: 3px; }
.formule-card--featured .formule-item svg { color: var(--gold); }
.formule-item-dur {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-300);
  margin-left: 4px;
}
.formule-card--featured .formule-item-dur { color: rgba(240,235,224,0.35); }
.formule-items-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-300);
  margin-bottom: var(--s-3);
}
.formule-card--featured .formule-items-label { color: rgba(240,235,224,0.3); }
.formule-badge--corner {
  position: absolute;
  top: var(--s-6);
  right: var(--s-6);
  padding: 4px 12px;
  background: transparent;
  color: var(--ink-500);
  border: 1px solid rgba(10,10,10,0.12);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--r-full);
}

/* ── Duo formules ── */
.duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
  margin-top: var(--s-14);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Nav pills internes (massages page) ── */
.pills-nav {
  display: flex;
  gap: var(--s-2);
  flex-wrap: wrap;
  margin-top: var(--s-8);
  padding-bottom: var(--s-2);
  border-bottom: 1px solid rgba(10,10,10,0.08);
}
.pill-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-400);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--r-full);
  border: 1px solid transparent;
  transition: all 0.2s var(--ease-out);
}
.pill-link:hover {
  color: var(--gold-deep);
  border-color: rgba(199,171,125,0.3);
  background: rgba(199,171,125,0.07);
}

/* ── Horaires dark bandeau (contact) ── */
.horaires-bandeau {
  background: var(--ink-900);
  padding: var(--s-20) 0;
}
.horaires-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-10);
  margin-top: var(--s-12);
}
.horaires-col-title {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: var(--s-6);
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.horaires-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s-3) 0;
  border-bottom: 1px solid rgba(199,171,125,0.08);
  font-size: 14px;
}
.horaires-row:last-child { border-bottom: none; }
.horaires-day { color: rgba(240,235,224,0.7); }
.horaires-time { color: var(--gold); font-weight: 500; }
.horaires-closed { color: rgba(240,235,224,0.3); font-style: italic; }

/* ── Contact form ── */
.contact-section { padding: var(--s-28) 0; background: var(--cream); }
.contact-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--s-16);
  align-items: start;
}
.contact-form-wrap h3 {
  font-family: var(--f-display);
  font-size: var(--fs-h3);
  color: var(--ink-900);
  margin-bottom: var(--s-8);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  margin-bottom: var(--s-5);
}
.form-field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-600);
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid rgba(10,10,10,0.1);
  border-radius: var(--r-md);
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--ink-900);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(199,171,125,0.15);
}
.form-field input.invalid,
.form-field select.invalid,
.form-field textarea.invalid { border-color: #e05c5c; }
.form-field textarea { resize: vertical; min-height: 140px; }
.form-field-checkbox {
  display: flex;
  gap: var(--s-3);
  align-items: flex-start;
  margin-bottom: var(--s-6);
}
.form-field-checkbox input[type="checkbox"] { flex-shrink: 0; margin-top: 3px; accent-color: var(--gold); }
.form-field-checkbox label { font-size: 12px; color: var(--ink-500); line-height: 1.6; }
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  position: sticky;
  top: 120px;
}
.contact-info-card {
  background: var(--white);
  border: 1px solid rgba(10,10,10,0.06);
  border-radius: var(--r-xl);
  padding: var(--s-6);
  transition: all 0.25s var(--ease-out);
}
.contact-info-card:hover {
  border-color: rgba(199,171,125,0.25);
  box-shadow: 0 8px 24px rgba(10,10,10,0.07);
}
.contact-info-card-title {
  font-family: var(--f-display);
  font-size: 20px;
  color: var(--ink-900);
  margin-bottom: var(--s-3);
}
.contact-info-card-val {
  font-size: 14px;
  color: var(--ink-600);
  line-height: 1.6;
  margin-bottom: var(--s-4);
}
.contact-info-card-actions { display: flex; gap: var(--s-2); flex-wrap: wrap; }
.btn-outline-sm {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 8px 14px;
  border: 1px solid rgba(10,10,10,0.14);
  border-radius: var(--r-md);
  color: var(--ink-700);
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline-sm:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
  background: rgba(199,171,125,0.07);
}
.map-embed {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(10,10,10,0.07);
  margin-top: var(--s-14);
}
.map-embed iframe { display: block; }

/* ── Réservation ── */
.reservation-section { padding: var(--s-20) 0; }
.calendly-embed {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(10,10,10,0.08);
  margin-top: var(--s-12);
  background: var(--white);
}
.reassurances {
  background: var(--ink-900);
  padding: var(--s-12) 0;
}
.reassurances-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-8);
}
.reassurance-item {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  color: rgba(240,235,224,0.8);
  font-size: 14px;
}
.reassurance-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(199,171,125,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

/* ── Abonnements placeholder ── */
.placeholder-section { padding: var(--s-20) 0; background: var(--white); }
.placeholder-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: var(--s-16) var(--s-12);
  background: var(--cream);
  border: 1px solid rgba(199,171,125,0.2);
  border-radius: var(--r-2xl);
}
.placeholder-icon { font-size: 48px; margin-bottom: var(--s-6); }
.placeholder-card h2 {
  font-family: var(--f-display);
  font-size: var(--fs-h2);
  color: var(--ink-900);
  margin-bottom: var(--s-4);
}
.placeholder-card p { font-size: 15px; color: var(--ink-500); line-height: 1.7; margin-bottom: var(--s-8); }
.placeholder-form { display: flex; gap: var(--s-3); max-width: 400px; margin: 0 auto; }
.placeholder-form input {
  flex: 1;
  padding: 13px 16px;
  border: 1px solid rgba(10,10,10,0.12);
  border-radius: var(--r-md);
  font-family: var(--f-body);
  font-size: 14px;
  background: var(--white);
}
.placeholder-form input:focus { outline: none; border-color: var(--gold); }

/* ── Profils / À qui s'adresse ── */
.profils-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-14);
}
.profil-card {
  background: var(--white);
  border: 1px solid rgba(10,10,10,0.06);
  border-radius: var(--r-xl);
  padding: var(--s-8);
  text-align: center;
  transition: all 0.3s var(--ease-out);
}
.profil-card:hover {
  border-color: rgba(199,171,125,0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.profil-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(199,171,125,0.15), rgba(144,129,92,0.1));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-deep);
  margin: 0 auto var(--s-5);
}
.profil-title {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--ink-900);
  margin-bottom: var(--s-3);
}
.profil-desc { font-size: 13px; line-height: 1.7; color: var(--ink-500); }

/* ══════════════════════════════════════════════════════════════
   INNER PAGES — Responsive
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-visual { max-width: 480px; aspect-ratio: 16/9; }
  .histoire-inner { grid-template-columns: 1fr; gap: var(--s-12); }
  .histoire-visual { position: static; aspect-ratio: 16/9; }
  .piliers-grid { grid-template-columns: 1fr 1fr; }
  .valeurs-grid { grid-template-columns: 1fr 1fr; }
  .equipe-card { grid-template-columns: 280px 1fr; }
  .engagement-inner { grid-template-columns: 1fr; }
  .showcase-item { grid-template-columns: 1fr; gap: var(--s-10); }
  .showcase-item--reverse { direction: ltr; }
  .showcase-visual { aspect-ratio: 16/9; }
  .showcase-price-block { display: flex; }
  .stats-bandeau-inner { grid-template-columns: 1fr 1fr; }
  .stats-bandeau-item:nth-child(2) { border-right: none; }
  .formules-grid { grid-template-columns: 1fr; }
  .formule-card--featured { transform: none; }
  .formule-card--featured:hover { transform: translateY(-4px); }
  .duo-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-info-cards { position: static; }
  .horaires-grid { grid-template-columns: 1fr; }
  .reassurances-grid { grid-template-columns: 1fr; gap: var(--s-5); }
  .profils-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .page-hero { padding: 130px 0 var(--s-20); }
  .page-hero--dark { padding-top: 150px; }
  .hero-card-wrap { padding-top: 100px; }
  .hero-card { margin: 10px; padding: 40px 24px; }
  .hero-card-metrics { flex-wrap: wrap; gap: var(--s-4); }
  .hero-card-metric { flex: 0 0 calc(50% - var(--s-2)); padding: 0; border: none; }
  .hero-card-metric + .hero-card-metric { border-left: none; padding-left: 0; }
  .piliers-grid { grid-template-columns: 1fr; }
  .valeurs-grid { grid-template-columns: 1fr; }
  .equipe-card { grid-template-columns: 1fr; }
  .stats-bandeau-inner { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .placeholder-form { flex-direction: column; }
  .profils-grid { grid-template-columns: 1fr; }
  .page-cta-actions { flex-direction: column; align-items: center; }
}

/* ════════════════════════════════════════════════
   UTILITAIRES GLOBAUX (pages internes)
   ════════════════════════════════════════════════ */

/* Texte dégradé gold */
.gold-text-span {
  background: var(--g-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Numéro décoratif dans .valeur */
.valeur-num {
  font-family: var(--f-display);
  font-size: 52px;
  font-weight: 400;
  line-height: 1;
  color: rgba(199,171,125,0.18);
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: var(--s-3);
}

/* Wrapper équipe (stacking vertical) */
.equipe-info { flex: 1; }

/* page-cta eyebrow / lede héritent du contexte dark */
.page-cta .eyebrow,
.page-cta-inner .eyebrow { color: var(--gold); }
.page-cta h2 span { display: inline; }
.page-cta-inner {
  max-width: 720px;
  margin: 0 auto;
}

/* Section-head margin quand utilisé hors .section-head */
.engagement-text .eyebrow { display: inline-flex; }
.engagement-text h2 {
  font-family: var(--f-display);
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: 0.93;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink-900);
  margin: var(--s-5) 0 var(--s-6);
}
.engagement-text .lede {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-500);
  max-width: 420px;
}

/* ── Contact page aliases ── */
.contact-form-block { /* left column */ }
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  position: sticky;
  top: 120px;
}
.contact-info-item {
  display: flex;
  gap: var(--s-4);
  align-items: flex-start;
  padding: var(--s-4) var(--s-5);
  background: var(--paper);
  border-radius: var(--r-lg);
  border: 1px solid rgba(10,10,10,0.05);
}
.contact-info-item svg { color: var(--gold-deep); flex-shrink: 0; margin-top: 3px; }
.contact-info-item strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-900);
  margin-bottom: var(--s-1);
}
.contact-info-item p { font-size: 14px; color: var(--ink-600); line-height: 1.6; margin: 0; }
.contact-info-item a { color: var(--gold-deep); }
.contact-info-card h3 {
  font-family: var(--f-display);
  font-size: var(--fs-h3);
  color: var(--ink-900);
  margin-bottom: var(--s-5);
}

/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE — Nouvelle structure (contact.html)
   ══════════════════════════════════════════════════════════════ */

/* ── Canaux de contact ── */
.ct-channels-section {
  padding: clamp(64px, 8vw, 104px) 0;
  background: var(--cream);
}
.ct-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-12);
  align-items: stretch;
}
.ct-channel {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(10,10,10,0.07);
  border-radius: var(--r-2xl);
  padding: var(--s-10);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  transition: all 0.35s var(--ease-out);
}
.ct-channel:hover {
  border-color: rgba(199,171,125,0.3);
  box-shadow: 0 20px 60px -10px rgba(10,10,10,0.1);
  transform: translateY(-4px);
}
.ct-channel--featured {
  background: var(--ink-900);
  border-color: var(--ink-900);
  transform: translateY(-14px);
}
.ct-channel--featured:hover { transform: translateY(-18px); }
.ct-channel-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-lg);
  background: rgba(199,171,125,0.1);
  border: 1px solid rgba(199,171,125,0.2);
  display: grid;
  place-items: center;
  color: var(--gold-deep);
  margin-bottom: var(--s-2);
}
.ct-channel--featured .ct-channel-icon {
  background: rgba(199,171,125,0.15);
  border-color: rgba(199,171,125,0.25);
  color: var(--gold);
}
.ct-channel-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.ct-channel--featured .ct-channel-label { color: var(--gold); }
.ct-channel-title {
  font-family: var(--f-display);
  font-size: 28px;
  line-height: 1.1;
  color: var(--ink-900);
  margin-bottom: var(--s-1);
}
.ct-channel--featured .ct-channel-title { color: var(--white); }
.ct-channel-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-400);
  flex: 1;
}
.ct-channel--featured .ct-channel-desc { color: rgba(240,235,224,0.5); }
.ct-channel-value {
  font-family: var(--f-display);
  font-size: 18px;
  color: var(--gold-deep);
  letter-spacing: 0.02em;
  padding: var(--s-3) 0;
  border-top: 1px solid rgba(10,10,10,0.07);
  border-bottom: 1px solid rgba(10,10,10,0.07);
  margin: var(--s-2) 0;
}
.ct-channel--featured .ct-channel-value {
  color: var(--gold);
  border-color: rgba(240,235,224,0.1);
}
.ct-channel-cta { margin-top: var(--s-2); }

/* ── Localisation & horaires ── */
.ct-location-section {
  padding: clamp(64px, 8vw, 104px) 0;
  background: var(--paper);
}
.ct-location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s-12);
  align-items: start;
}
.ct-location-info .eyebrow { display: block; margin-bottom: var(--s-2); }
.ct-location-info h2 { margin-bottom: var(--s-8); }
.ct-address-block {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  margin-bottom: var(--s-8);
}
.ct-address-line {
  display: flex;
  gap: var(--s-4);
  align-items: flex-start;
}
.ct-address-line svg { color: var(--gold-deep); flex-shrink: 0; margin-top: 2px; }
.ct-address-line strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 2px;
}
.ct-address-line span { font-size: 14px; color: var(--ink-500); }
.ct-hours {
  border-top: 1px solid rgba(10,10,10,0.07);
  padding-top: var(--s-6);
  margin-bottom: var(--s-8);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.ct-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s-2) 0;
  border-bottom: 1px solid rgba(10,10,10,0.05);
}
.ct-hours-day { font-size: 14px; font-weight: 500; color: var(--ink-700); }
.ct-hours-time { font-size: 14px; font-weight: 600; color: var(--gold-deep); }
.ct-hours-row--closed .ct-hours-day { color: var(--ink-300); }
.ct-hours-row--closed .ct-hours-time { color: var(--ink-300); font-weight: 400; }
.ct-transport { margin-bottom: var(--s-4); }
.ct-transport-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-300);
  margin-bottom: var(--s-3);
}
.ct-transport-items { display: flex; flex-direction: column; gap: var(--s-2); }
.ct-transport-item {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 13px;
  color: var(--ink-500);
}
.ct-transport-item svg { color: var(--gold-deep); flex-shrink: 0; }
.ct-location-map {
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 520px;
  box-shadow: 0 20px 60px -10px rgba(10,10,10,0.12);
}

/* ── Responsive contact ── */
@media (max-width: 1100px) {
  .ct-channels { grid-template-columns: 1fr; gap: var(--s-4); }
  .ct-channel--featured { transform: none; }
  .ct-channel--featured:hover { transform: translateY(-4px); }
  .ct-location-grid { grid-template-columns: 1fr; }
  .ct-location-map { height: 340px; }
}
@media (max-width: 720px) {
  .ct-location-map { height: 260px; }
}

/* ── Calendly / réservation ── */
.calendly-placeholder {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-4);
  color: var(--ink-400);
  text-align: center;
  padding: var(--s-16);
  background: var(--paper);
  border-radius: var(--r-xl);
}
.calendly-placeholder svg { color: var(--gold-deep); }
.calendly-placeholder p {
  font-family: var(--f-display);
  font-size: 24px;
  color: var(--ink-900);
  margin: 0;
}
.calendly-placeholder span {
  font-size: 14px;
  color: var(--ink-400);
  max-width: 380px;
}

/* ── Horaires note (3e colonne) ── */
.horaires-note {
  font-size: 12px;
  color: rgba(240,235,224,0.45);
  font-style: italic;
}

/* ── Placeholder card icon ── */
.placeholder-card-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(199,171,125,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-deep);
  margin: 0 auto var(--s-8);
}

/* ═══════════════════════════════════════════
   À PROPOS — Sections ultra-premium (ap-)
═══════════════════════════════════════════ */

/* Grain noise overlay (dark sections) */
.ap-grain-overlay {
  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.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  opacity: 0.04;
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 0;
}

/* Ghost watermark */
.ap-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-display);
  font-size: clamp(180px, 25vw, 360px);
  color: rgba(199,171,125,0.03);
  letter-spacing: -0.05em;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

/* ── HISTOIRE cream editorial ── */
.ap-histoire {
  background: var(--cream);
  padding: clamp(96px, 10vw, 152px) 0;
  position: relative;
  overflow: hidden;
}
.ap-histoire-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(48px, 5.5vw, 96px);
  align-items: start;
  position: relative;
  z-index: 1;
}
.ap-dateline {
  display: block;
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(144,129,92,0.65);
  margin-bottom: 22px;
}
.ap-histoire-h2 {
  font-family: var(--f-display);
  font-size: clamp(52px, 5.8vw, 96px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink-900);
  margin: 0 0 32px;
}
.ap-histoire-left p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-600);
  margin-bottom: 18px;
}
.ap-pull-quote {
  margin-top: 40px;
  padding: 24px 28px;
  border-left: 2px solid rgba(199,171,125,0.6);
  background: rgba(199,171,125,0.07);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.ap-pull-quote p {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink-900);
  letter-spacing: 0.01em;
  margin: 0;
}
.ap-photo-wrap {
  position: sticky;
  top: 140px;
}
.ap-photo-frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid rgba(199,171,125,0.35);
  position: relative;
}
.ap-photo-frame .img-placeholder {
  border-radius: 0;
  height: 100%;
  width: 100%;
  min-height: 320px;
}
.ap-photo-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--white);
  border: 1px solid rgba(199,171,125,0.4);
  border-radius: var(--r-xl);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(10,10,10,0.08);
}
.ap-photo-badge-num {
  font-family: var(--f-display);
  font-size: 40px;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.03em;
}
.ap-photo-badge-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-400);
  line-height: 1.55;
}

/* ══════════════════════════════════════════════════════════════
   MASSAGE SLIDER — 3 slides éditoriaux
   ══════════════════════════════════════════════════════════════ */
.massage-slider-section {
  background: var(--cream);
  padding: clamp(60px, 6vw, 96px) 0;
  overflow: hidden;
}

.msl-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  margin: 0 var(--s-8);
  box-shadow: var(--shadow-xl);
}

.msl-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.msl-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  max-height: 460px;
}

.msl-img {
  position: relative;
  overflow: hidden;
}

/* ── Inner photo carousel ── */
.msl-photo-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.msl-photo-track {
  display: flex;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.msl-photo-track img {
  min-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.msl-slide.is-active .msl-photo-track img { transform: scale(1.04); }

.msl-photo-nav {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 3;
}
.msl-photo-btn {
  background: rgba(10, 10, 10, 0.55);
  border: 1px solid rgba(199, 171, 125, 0.35);
  color: var(--gold);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.msl-photo-btn:hover { background: rgba(199, 171, 125, 0.22); transform: scale(1.08); }
.msl-photo-btn svg { pointer-events: none; }
.msl-photo-dots-wrap { display: flex; gap: 6px; align-items: center; }
.msl-photo-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s, border-radius 0.3s;
}
.msl-photo-dot.active { background: var(--gold); width: 16px; border-radius: 3px; }

.msl-content {
  background: var(--ink-900);
  padding: clamp(48px, 5vw, 72px) clamp(40px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.msl-content::before {
  content: '';
  position: absolute;
  top: -100px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199,171,125,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.msl-eyebrow {
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-5);
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.msl-eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.msl-title {
  font-family: var(--f-display);
  font-size: clamp(40px, 4vw, 64px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: var(--s-6);
}
.msl-title span { color: var(--gold); }

.msl-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(240,235,224,0.6);
  margin-bottom: var(--s-8);
  max-width: 420px;
}

.msl-bullets {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-bottom: var(--s-10);
}
.msl-bullet {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: 13px;
  color: rgba(240,235,224,0.75);
  font-weight: 500;
}
.msl-bullet::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  opacity: 0.7;
}

.msl-footer {
  display: flex;
  align-items: center;
  gap: var(--s-6);
  flex-wrap: wrap;
}
.msl-price {
  font-family: var(--f-display);
  font-size: clamp(40px, 3.5vw, 52px);
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.msl-price-unit {
  font-size: 11px;
  color: rgba(240,235,224,0.35);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}

/* Navigation */
.msl-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-8);
  margin-top: var(--s-8);
}
.msl-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(199,171,125,0.3);
  background: none;
  color: var(--ink-900);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.msl-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.msl-dots {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.msl-dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: rgba(10,10,10,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s;
}
.msl-dot.active {
  background: var(--gold);
  width: 24px;
}
.msl-counter {
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--ink-400);
  min-width: 48px;
  text-align: center;
}

@media (max-width: 1100px) {
  .msl-slide { grid-template-columns: 1fr; }
  .msl-img { aspect-ratio: 16/9; }
  .msl-wrap { margin: 0 var(--s-4); }
}
@media (max-width: 720px) {
  .msl-content { padding: clamp(32px, 6vw, 48px) var(--s-6); }
  .msl-img { aspect-ratio: 4/3; }
}

/* ══════════════════════════════════════════════════════════════
   MASSAGE SECTIONS — portrait left / content right, dark-light-dark
   ══════════════════════════════════════════════════════════════ */

.msg-intro {
  background: var(--cream);
  padding: clamp(60px, 6vw, 96px) 0 clamp(32px, 3vw, 48px);
}

.msg-section {
  padding: clamp(64px, 8vw, 104px) 0;
  overflow: hidden;
}
.msg-section--dark  { background: var(--ink-900); }
.msg-section--light { background: var(--cream); }

/* ── 2-col grid: portrait photo left, content right ── */
.msg-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

/* ── Portrait photo card ── */
.msg-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.32);
  flex-shrink: 0;
}

.msg-visual-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.msg-visual-track img {
  min-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.msg-visual-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.45);
  border: 1px solid rgba(199, 171, 125, 0.35);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 4;
}
.msg-visual-btn:hover {
  background: rgba(199, 171, 125, 0.2);
  transform: translateY(-50%) scale(1.06);
}
.msg-visual-btn svg { pointer-events: none; }
.msg-visual-prev { left: 14px; }
.msg-visual-next { right: 14px; }

.msg-visual-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  align-items: center;
  z-index: 4;
}
.msg-visual-dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  border: none; cursor: pointer; padding: 0;
  transition: width 0.3s, background 0.3s;
}
.msg-visual-dot.active { width: 22px; background: var(--gold); }

/* ── Text content ── */
.msg-content { position: relative; }

.msg-num {
  font-family: var(--f-display);
  font-size: clamp(96px, 12vw, 160px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(199, 171, 125, 0.06);
  display: block;
  position: absolute;
  top: -20px; right: -8px;
  pointer-events: none;
  user-select: none;
}
.msg-section--light .msg-num { color: rgba(199, 171, 125, 0.1); }

.msg-eyebrow {
  font-family: var(--f-body);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: var(--s-5);
  position: relative;
}

.msg-title {
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin-bottom: var(--s-7);
  position: relative;
}
.msg-section--dark .msg-title  { color: var(--white); }
.msg-section--light .msg-title { color: var(--ink-900); }

.msg-desc {
  font-size: 15px; line-height: 1.8;
  margin-bottom: var(--s-8);
  position: relative;
}
.msg-section--dark .msg-desc  { color: rgba(240, 235, 224, 0.6); }
.msg-section--light .msg-desc { color: rgba(10, 10, 10, 0.65); }

.msg-bullets {
  list-style: none; padding: 0;
  margin: 0 0 var(--s-10);
  display: flex; flex-direction: column;
  gap: var(--s-3);
  position: relative;
}
.msg-bullet {
  display: flex; align-items: center;
  gap: var(--s-3);
  font-size: 13px; font-weight: 500;
}
.msg-section--dark .msg-bullet  { color: rgba(240, 235, 224, 0.7); }
.msg-section--light .msg-bullet { color: rgba(10, 10, 10, 0.7); }
.msg-bullet::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--gold);
  opacity: 0.75; flex-shrink: 0;
}

.msg-footer {
  display: flex; align-items: center;
  gap: var(--s-8); flex-wrap: wrap;
  position: relative;
}
.msg-price-block { line-height: 1; }
.msg-price {
  font-family: var(--f-display);
  font-size: clamp(44px, 4vw, 60px);
  letter-spacing: -0.02em; color: var(--gold); line-height: 1;
}
.msg-price-unit {
  display: block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-top: 4px;
}
.msg-section--dark .msg-price-unit  { color: rgba(240, 235, 224, 0.3); }
.msg-section--light .msg-price-unit { color: rgba(10, 10, 10, 0.35); }

/* ── Multi-tarifs ── */
.msg-pricing {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--s-10);
}
.msg-pricing-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.msg-pricing-dur {
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  min-width: 56px;
  flex-shrink: 0;
}
.msg-section--dark .msg-pricing-dur  { color: rgba(199, 171, 125, 0.45); }
.msg-section--light .msg-pricing-dur { color: rgba(10, 10, 10, 0.4); }
.msg-pricing-sep {
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.1;
  align-self: center;
}
.msg-pricing-val {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gold);
}

@media (max-width: 900px) {
  .msg-inner  { grid-template-columns: 1fr; gap: 0; }
  .msg-photo  { aspect-ratio: 4/3; border-radius: 16px; margin-bottom: 40px; }
  .msg-num    { font-size: 80px; }
}
@media (max-width: 720px) {
  .msg-section { padding: clamp(48px, 8vw, 64px) 0; }
  .msg-photo   { aspect-ratio: 3/2; }
  .msg-num     { display: none; }
  #msg-hydrojet .msg-visual-track img { object-position: center bottom; }
  .msg-content,
  .msg-eyebrow,
  .msg-title,
  .msg-desc,
  .msg-bullets,
  .msg-pricing,
  .msg-footer  { text-align: left !important; align-items: flex-start !important; }
}

/* ── RÉSERVATION IFRAME SECTION ── */
.resa-section {
  background: var(--cream);
  padding: clamp(64px, 8vw, 104px) 0;
}
.resa-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.resa-title {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  margin-bottom: clamp(32px, 4vw, 48px);
}
.resa-frame-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(199, 171, 125, 0.18);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}
.resa-iframe {
  display: block;
  width: 100%;
  min-height: 700px;
  border: none;
}
@media (max-width: 720px) {
  .resa-iframe { min-height: 900px; }
}

/* ── PILIERS v2 — dark premium cards ── */
.ap-piliers-v2 {
  background: var(--cream);
  padding: clamp(40px, 4vw, 64px) 0 clamp(80px, 8vw, 120px);
}
.ap-piliers-v2 .section-head { max-width: 600px; margin-bottom: clamp(40px, 5vw, 64px); }
.ap-piliers-left .section-head,
.ap-piliers-left .section-head h2,
.ap-piliers-left .section-head h3,
.ap-piliers-left .section-head .eyebrow,
.ap-piliers-left .ap-pc-title,
.ap-piliers-left .ap-pc-tag,
.ap-piliers-left .ap-pc-desc { text-align: left !important; align-items: flex-start !important; justify-content: flex-start !important; }
.ap-piliers-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.ap-pilier-card {
  background: var(--ink-900);
  border: 1px solid rgba(199,171,125,0.1);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3vw, 40px);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), border-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.ap-pilier-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199,171,125,0.45), transparent);
}
.ap-pilier-card:hover {
  transform: translateY(-5px);
  border-color: rgba(199,171,125,0.3);
  box-shadow: 0 28px 56px rgba(10,10,10,0.24), 0 0 0 1px rgba(199,171,125,0.04);
}
.ap-pc-num {
  position: absolute;
  top: 16px; right: 22px;
  font-family: var(--f-display);
  font-size: 96px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(199,171,125,0.05);
  pointer-events: none;
  user-select: none;
}
.ap-pc-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-lg);
  background: rgba(199,171,125,0.1);
  border: 1px solid rgba(199,171,125,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 28px;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.ap-pilier-card:hover .ap-pc-icon {
  background: rgba(199,171,125,0.16);
  border-color: rgba(199,171,125,0.35);
}
.ap-pc-title {
  font-family: var(--f-display);
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1;
}
.ap-pc-desc {
  font-size: 14px;
  line-height: 1.78;
  color: rgba(240,235,224,0.55);
}

/* ── VALEURS v2 — timeline gold ── */
.ap-valeurs-v2 {
  background: var(--ink-900);
  padding: clamp(80px, 8vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
.ap-valeurs-v2 .section-head { max-width: 600px; margin-bottom: clamp(40px, 5vw, 64px); }
.ap-valeurs-v2 .section-head h2 { color: var(--white); }
.ap-valeurs-v2 .section-head .eyebrow { color: var(--gold); }
.ap-timeline {
  position: relative;
}
.ap-timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(180deg, rgba(199,171,125,0.5) 0%, rgba(199,171,125,0.08) 100%);
  pointer-events: none;
}
.ap-timeline-item {
  position: relative;
  padding: 0 0 clamp(36px, 4.5vw, 56px) 52px;
}
.ap-timeline-item:last-child { padding-bottom: 0; }
.ap-tl-dot {
  position: absolute;
  left: 0; top: 4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(199,171,125,0.45);
  background: var(--ink-900);
  z-index: 1;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.ap-tl-dot::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(199,171,125,0.4);
  transition: background 0.3s ease;
}
.ap-timeline-item:hover .ap-tl-dot {
  border-color: var(--gold);
  background: rgba(199,171,125,0.06);
}
.ap-timeline-item:hover .ap-tl-dot::after { background: var(--gold); }
.ap-tl-body {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(24px, 3.5vw, 56px);
  align-items: start;
}
.ap-tl-num {
  display: block;
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(199,171,125,0.35);
  margin-bottom: 10px;
}
.ap-tl-title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--white);
}
.ap-tl-desc {
  font-size: 14px;
  line-height: 1.78;
  color: rgba(240,235,224,0.55);
  padding-top: 2px;
}

/* ── Notre cadre — variante light ── */
.ap-valeurs-v2 .ap-tl-title,
.ap-valeurs-v2 .ap-tl-num,
.ap-valeurs-v2 .section-head h2,
.ap-valeurs-v2 .section-head .eyebrow { text-align: left !important; align-items: flex-start !important; justify-content: flex-start !important; }

.ap-valeurs-v2--light {
  background: var(--cream);
}
.ap-valeurs-v2--light .section-head h2  { color: var(--ink-900); }
.ap-valeurs-v2--light .section-head .eyebrow { color: var(--gold); }
.ap-valeurs-v2--light .ap-tl-title      { color: var(--ink-900); }
.ap-valeurs-v2--light .ap-tl-desc       { color: rgba(10, 10, 10, 0.6); }
.ap-valeurs-v2--light .ap-tl-num        { color: rgba(199, 171, 125, 0.5); }
.ap-valeurs-v2--light .ap-tl-dot        { background: var(--cream); }

/* ── ENGAGEMENT v2 — dark editorial rows ── */
.ap-eng-v2 {
  background: var(--cream);
  padding: clamp(80px, 8vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
.ap-eng-v2-header {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(28px, 3.5vw, 44px);
  border-bottom: 1px solid rgba(10,10,10,0.08);
  margin-bottom: 0;
}
.ap-eng-v2-header .eyebrow { color: var(--gold-deep); }
.ap-eng-v2-h2 {
  font-family: var(--f-display);
  font-size: clamp(44px, 5.5vw, 88px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink-900);
  margin: 14px 0 16px;
}
.ap-eng-v2-lede {
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-400);
  max-width: 420px;
}
.ap-eng-v2-list { position: relative; z-index: 1; }
.ap-eng-v2-row {
  display: grid;
  grid-template-columns: 40px minmax(0,1fr) minmax(0,1.5fr);
  gap: clamp(16px, 2.5vw, 40px);
  align-items: center;
  padding: clamp(18px, 2.2vw, 28px) 0;
  border-bottom: 1px solid rgba(10,10,10,0.06);
  transition: border-bottom-color 0.3s ease;
}
.ap-eng-v2-row:hover { border-bottom-color: rgba(199,171,125,0.4); }
.ap-eng-v2-num {
  font-family: var(--f-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(144,129,92,0.5);
}
.ap-eng-v2-title {
  font-family: var(--f-display);
  font-size: clamp(14px, 1.9vw, 26px);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--ink-900);
  line-height: 1;
}
.ap-eng-v2-desc {
  font-size: 13px;
  line-height: 1.72;
  color: var(--ink-500);
  text-align: right;
  padding-left: clamp(14px, 2vw, 28px);
  border-left: 1px solid rgba(10,10,10,0.07);
}

/* ── Piliers cards — variantes pages prestations ── */
.ap-piliers-cards--2col { grid-template-columns: repeat(2, 1fr); }
.ap-pilier-card--tall {
  display: flex;
  flex-direction: column;
}
.ap-pc-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.ap-pc-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 14px 0 20px;
  flex: 1;
}
.ap-pc-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(240,235,224,0.55);
}
.ap-pc-bullet::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(199,171,125,0.45);
  flex-shrink: 0;
}
.ap-pc-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(199,171,125,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ap-pc-price-wrap { display: flex; flex-direction: column; gap: 2px; }
.ap-pc-price {
  font-family: var(--f-display);
  font-size: 40px;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.ap-pc-unit {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240,235,224,0.3);
}

/* ── Responsive about page ── */
@media (max-width: 1100px) {
  .ap-histoire-grid { grid-template-columns: 1fr 1fr; }
  .ap-piliers-cards { grid-template-columns: 1fr 1fr; }
  .ap-piliers-cards .ap-pilier-card:last-child { grid-column: 1 / -1; max-width: 480px; }
  .ap-tl-body { grid-template-columns: 1fr 1.2fr; }
}
@media (max-width: 720px) {
  .ap-histoire-grid { grid-template-columns: 1fr; }
  .ap-histoire-right { max-width: 100%; margin: 0 auto; }
  .ap-photo-badge { bottom: -12px; right: -12px; }
  .ap-piliers-cards,
  .ap-piliers-cards--2col { grid-template-columns: 1fr; }
  .ap-piliers-cards .ap-pilier-card:last-child { grid-column: 1; max-width: 100%; }
  .ap-tl-body { grid-template-columns: 1fr; gap: 12px; }
  .ap-eng-v2-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 6px 10px;
    text-align: center;
  }
  .ap-eng-v2-num { flex-shrink: 0; }
  .ap-eng-v2-title { flex-shrink: 0; }
  .ap-eng-v2-desc {
    flex-basis: 100%;
    text-align: center !important; border-left: none; padding-left: 0;
    border-top: 1px solid rgba(199,171,125,0.07); padding-top: 10px;
  }
  .ap-watermark { font-size: clamp(120px, 40vw, 200px); }
}

/* ═══════════════════════════════════════════
   STATEMENT — section hadith éditoriale (hijama)
═══════════════════════════════════════════ */
.ap-statement {
  background: var(--ink-900);
  padding: clamp(96px, 10vw, 160px) 0 clamp(40px, 4vw, 64px);
  position: relative;
  overflow: hidden;
}
.ap-statement-eyebrow {
  display: block;
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(199,171,125,0.45);
  margin-bottom: 28px;
}
.ap-statement-hadith {
  font-family: var(--f-display);
  font-size: clamp(33px, 5.2vw, 79px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--white);
  max-width: 900px;
  margin-bottom: 14px;
}
.ap-statement-source {
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(199,171,125,0.4);
  padding-bottom: clamp(40px, 5vw, 64px);
  margin-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid rgba(199,171,125,0.1);
}
.ap-statement-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.ap-statement-text p {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(240,235,224,0.55);
  margin-bottom: 16px;
}
.ap-statement-text p:last-child { margin-bottom: 0; }
.ap-statement-stats {
  border-left: 1px solid rgba(199,171,125,0.12);
  padding-left: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3.5vw, 44px);
}
.ap-stat-num {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(52px, 5.5vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--gold);
}
.ap-stat-label {
  display: block;
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,235,224,0.28);
  margin-top: 8px;
  line-height: 1.55;
}

/* Variante fond clair — utilisée sur la page hijama */
.ap-statement--light {
  background: var(--cream);
}
.ap-statement--light .ap-statement-eyebrow {
  color: var(--gold-deep);
}
.ap-statement--light .ap-statement-hadith {
  color: var(--ink-900);
  font-size: clamp(22px, 3.8vw, 52px);
  max-width: none;
  white-space: nowrap;
}
.ap-statement--light .ap-statement-source {
  color: rgba(144,129,92,0.7);
  border-bottom-color: rgba(199,171,125,0.2);
}
.ap-statement--light .ap-statement-text p {
  color: var(--ink-500);
}
.ap-statement--light .ap-stat-label {
  color: var(--ink-400);
}

/* ── Hijama statement split layout ── */
.hjm-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: stretch;
}
.hjm-split-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hjm-split-content .ap-statement-hadith { white-space: normal; }

.hjm-carousel {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-xl);
}
.hjm-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.hjm-carousel-track img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}
.hjm-carousel-nav {
  position: absolute;
  bottom: 20px;
  left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 3;
}
.hjm-carousel-btn {
  background: rgba(10, 10, 10, 0.55);
  border: 1px solid rgba(199, 171, 125, 0.35);
  color: var(--gold);
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hjm-carousel-btn:hover { background: rgba(199, 171, 125, 0.22); transform: scale(1.08); }
.hjm-carousel-dots { display: flex; gap: 6px; align-items: center; }
.hjm-carousel-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none; cursor: pointer; padding: 0;
  transition: background 0.3s, width 0.3s, border-radius 0.3s;
}
.hjm-carousel-dot.active { background: var(--gold); width: 16px; border-radius: 3px; }

@media (max-width: 1100px) {
  .hjm-split { grid-template-columns: 1fr; }
  .hjm-carousel { aspect-ratio: 16 / 9; }
}

@media (max-width: 1100px) {
  .ap-statement-grid { grid-template-columns: 1fr; }
  .ap-statement-stats {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(199,171,125,0.12);
    padding-top: clamp(28px, 4vw, 44px);
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px 48px;
  }
}
@media (max-width: 720px) {
  .ap-statement-stats { flex-direction: column; gap: 20px; }
  .ap-statement--light .ap-statement-hadith { white-space: normal; }
}

/* ══════════════════════════════════════════════════════════════
   MOBILE OVERLAY — Full-screen ultra premium
   ══════════════════════════════════════════════════════════════ */

/* Hidden on desktop — overlay only activates on mobile */
.mo { display: none; }

@media (max-width: 720px) {

.mo {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 998;
  background: var(--ink-900);
  overflow: hidden;
  pointer-events: none;
  visibility: hidden;
  transform: translateX(100%);
  /* Closing: slide right, then hide */
  transition:
    transform 0.44s cubic-bezier(0.4, 0, 0.6, 1),
    visibility 0s 0.44s;
}

.mo.is-open {
  pointer-events: auto;
  visibility: visible;
  transform: translateX(0);
  /* Opening: instant visible, slide in */
  transition:
    transform 0.54s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s 0s;
}

/* ── Decoratifs ── */
.mo-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.mo-glow {
  position: absolute;
  bottom: -80px; left: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199,171,125,0.11) 0%, transparent 62%);
  pointer-events: none;
  z-index: 1;
}

.mo-watermark {
  position: absolute;
  right: -20px; bottom: -32px;
  font-family: var(--f-display);
  font-size: clamp(140px, 38vw, 210px);
  line-height: 1;
  letter-spacing: -0.06em;
  color: rgba(199,171,125,0.022);
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

/* ── Inner scroll container ── */
.mo-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* ── Header: brand + close ── */
.mo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 24px;
  border-bottom: 1px solid rgba(199,171,125,0.08);
  flex-shrink: 0;
}

.mo-logo-wrap {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mo-logo-text {
  font-family: var(--f-display);
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.14em;
  color: var(--white);
  text-transform: uppercase;
}

.mo-logo-sub {
  font-family: var(--f-body);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(199,171,125,0.38);
}

.mo-close {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(199,171,125,0.16);
  color: rgba(240,235,224,0.45);
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.mo-close:hover {
  background: rgba(199,171,125,0.08);
  border-color: rgba(199,171,125,0.3);
  color: var(--gold);
}

/* ── Navigation links ── */
.mo-nav {
  flex: 1;
  padding: 4px 0;
}

.mo-link {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 0;
  border-bottom: 1px solid rgba(199,171,125,0.06);
  text-align: left;
  position: relative;
  /* Stagger in on open */
  opacity: 0;
  transform: translateX(22px);
  transition:
    opacity 0s,
    transform 0s;
}
.mo.is-open .mo-link {
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 380ms ease,
    transform 380ms cubic-bezier(0.16, 1, 0.3, 1),
    background 0.18s;
  transition-delay: calc(var(--i, 0) * 46ms + 90ms);
}
.mo-link:last-child { border-bottom: none; }

.mo-num {
  font-family: var(--f-display);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(199,171,125,0.13);
  transition: color 0.2s;
  flex-shrink: 0;
  min-width: 22px;
}

.mo-label {
  font-family: var(--f-display);
  font-size: clamp(30px, 8vw, 44px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: rgba(240,235,224,0.68);
  flex: 1;
  transition: color 0.2s;
}

.mo-arrow {
  color: rgba(199,171,125,0.1);
  transform: translateX(-6px);
  flex-shrink: 0;
  transition: color 0.2s, transform 0.26s cubic-bezier(0.16, 1, 0.3, 1);
}

.mo-chevron {
  color: rgba(199,171,125,0.18);
  flex-shrink: 0;
  transition: color 0.2s, transform 0.26s ease;
}

.mo-link:hover .mo-num,
.mo-link:active .mo-num { color: rgba(199,171,125,0.42); }
.mo-link:hover .mo-label,
.mo-link:active .mo-label { color: #fff; }
.mo-link:hover .mo-arrow { color: var(--gold); transform: translateX(0); }

/* Active page */
.mo-link.is-active .mo-num { color: var(--gold); }
.mo-link.is-active .mo-label {
  background: var(--g-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Réservation — gold accent */
.mo-link--rdv .mo-label { color: rgba(199,171,125,0.58); }
.mo-link--rdv:hover .mo-label {
  color: unset;
  background: var(--g-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Split: label = link, chevron = toggle */
.mo-has-sub-link {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}
.mo-has-sub-link:hover .mo-label { color: #fff; }
.mo-has-sub-link:hover .mo-num { color: rgba(199,171,125,0.42); }

.mo-chevron-btn {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(199,171,125,0.12);
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.mo-chevron-btn:hover {
  background: rgba(199,171,125,0.08);
  border-color: rgba(199,171,125,0.25);
}

/* Accordion toggle state */
.mo-chevron-btn[aria-expanded="true"] .mo-chevron {
  transform: rotate(180deg);
  color: var(--gold);
}
.mo-chevron-btn[aria-expanded="true"] {
  border-color: rgba(199,171,125,0.3);
  background: rgba(199,171,125,0.06);
}

/* ── Sub-menu (prestations list) ── */
.mo-sub {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.36s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.26s ease;
  border-bottom: 1px solid rgba(199,171,125,0.06);
}
.mo-sub.is-open {
  max-height: 440px;
  opacity: 1;
}

.mo-sub-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0 11px 36px;
  border-bottom: 1px solid rgba(199,171,125,0.04);
  transition: background 0.15s;
}
.mo-sub-item:last-child { border-bottom: none; padding-bottom: 14px; }

.mo-sub-label {
  font-family: var(--f-body);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(240,235,224,0.42);
  transition: color 0.2s;
}
.mo-sub-item:hover .mo-sub-label { color: rgba(240,235,224,0.76); }

.mo-sub-price {
  font-family: var(--f-display);
  font-size: 12px;
  color: rgba(199,171,125,0.32);
  letter-spacing: 0.06em;
}

.mo-sub-all .mo-sub-label {
  color: rgba(199,171,125,0.36);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mo-sub-all:hover .mo-sub-label { color: var(--gold); }

/* ── Footer: CTA + contact ── */
.mo-footer {
  padding: 22px 0 32px;
  border-top: 1px solid rgba(199,171,125,0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
  /* Fade up after overlay opens */
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0s, transform 0s;
}
.mo.is-open .mo-footer {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 360ms ease 420ms,
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1) 420ms;
}

.mo-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 24px;
  background: linear-gradient(180deg, #d4b98a 0%, #c7ab7d 48%, #b8985e 100%);
  color: var(--ink-900);
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 14px;
  border: none;
  transition: all 0.22s ease;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.28) inset,
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 4px 16px rgba(199,171,125,0.22);
}
.mo-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.32) inset,
    0 1px 0 rgba(255,255,255,0.22) inset,
    0 10px 28px rgba(199,171,125,0.3);
}
.mo-cta:active { transform: translateY(0); }

.mo-contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--f-body);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mo-phone {
  color: rgba(199,171,125,0.5);
  transition: color 0.2s;
}
.mo-phone:hover { color: var(--gold); }

.mo-dot { color: rgba(199,171,125,0.18); }
.mo-address { color: rgba(240,235,224,0.18); }

  /* ── Bienfaits : 1 colonne sur mobile ── */
  .bienfaits-grid {
    grid-template-columns: 1fr;
  }
  .bienfait {
    padding: var(--s-8) var(--s-6);
  }

} /* end @media (max-width: 720px) */

/* ══════════════════════════════════════════════════
   MOBILE — Cohérence H2 + centrage SYSTÉMATIQUE
   ══════════════════════════════════════════════════ */
@media (max-width: 720px) {

  /* ── 1. Taille unique pour tous les H2 ── */
  main h2,
  .section-head h2,
  .ap-statement-hadith,
  .display-md,
  .cta-final h2,
  .msl-title,
  .page-cta h2,
  .page-cta-title,
  .ap-histoire-h2 {
    font-size: var(--fs-h2);
    white-space: normal !important;
  }

  /* ── 2. Centrage global : tous les blocs de contenu dans main ── */
  main h2,
  main h3,
  main .eyebrow,
  main .lede,
  main .ap-dateline,
  main .ap-pull-quote,
  main .ap-statement-hadith,
  main .ap-statement-text,
  main .ap-statement-text p,
  main .ap-histoire-h2,
  main .approche-prose,
  main .conviction-title,
  main .conviction-desc,
  main .hygiene-content p,
  main .page-cta-eyebrow {
    text-align: center;
  }

  /* ── 3. Centrage des conteneurs de section ── */
  .section-head,
  .approche-content,
  .hygiene-content,
  .ap-histoire-left,
  .hjm-split-content,
  .hero-card-content,
  .hero-inner article,
  .page-cta,
  .cta-final {
    text-align: center;
    align-items: center;
  }

  /* ── 4. Centrage des flex / grid (boutons, stats, nav) ── */
  .hero-meta,
  .hero-ctas,
  .hero-card-metrics,
  .page-hero-actions,
  .page-cta-actions,
  .cta-final-actions,
  .ap-statement-stats,
  .convictions,
  .msl-footer {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* ── 5. Éléments inline-flex à forcer en flex centré ── */
  .eyebrow,
  .hero-card .page-hero-eyebrow,
  .hygiene-cta {
    display: flex;
    justify-content: center;
  }

  /* ── 6. Hero accueil ── */
  .hero-inner h1,
  .hero-lede { text-align: center; }

  /* ── 7. Page hero visual — pleine largeur ── */
  .page-hero-visual {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 4 / 3;
    margin: 0;
  }

  /* ── 8. Split hijama carrousel ── */
  .hjm-split { grid-template-columns: 1fr; }
  .hjm-carousel { aspect-ratio: 4 / 3; }

  /* ── 9. Slider massages ── */
  .msl-content { text-align: center; align-items: center; }
}

/* ════════════════════════════════════════════════════════════════
   CHATBOT STICKY
   ════════════════════════════════════════════════════════════════ */

/* Reset natif bouton pour .fab-chat */
.fab-chat {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

.dh-cb-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  background: #e53935;
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  animation: dh-cb-pulse 1.8s ease-in-out infinite;
}
@keyframes dh-cb-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.18); }
}

/* ── Chat window ── */
#dh-cb-window {
  position: fixed;
  bottom: 160px;
  right: 24px;
  width: 340px;
  max-height: min(520px, calc(100vh - 180px));
  z-index: 9999;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.14), 0 2px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.16,1,0.3,1), transform 0.25s cubic-bezier(0.16,1,0.3,1), visibility 0s linear 0.25s;
  font-family: var(--f-body);
}
#dh-cb-window.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  transition: opacity 0.25s cubic-bezier(0.16,1,0.3,1), transform 0.25s cubic-bezier(0.16,1,0.3,1), visibility 0s linear 0s;
}

/* ── Header ── */
.dh-cb-header {
  background: var(--ink-900);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.dh-cb-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dh-cb-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink-900);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  border: 1.5px solid rgba(199,171,125,0.4);
}
.dh-cb-avatar img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}
.dh-cb-header-info strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.dh-cb-status {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 5px;
}
.dh-cb-status::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25d366;
  flex-shrink: 0;
}
.dh-cb-header-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  display: flex;
}
.dh-cb-header-close:hover { color: #fff; background: rgba(255,255,255,0.08); }

/* ── Messages ── */
.dh-cb-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-behavior: smooth;
}
.dh-cb-messages::-webkit-scrollbar { width: 4px; }
.dh-cb-messages::-webkit-scrollbar-track { background: transparent; }
.dh-cb-messages::-webkit-scrollbar-thumb { background: rgba(10,10,10,0.1); border-radius: 4px; }

.dh-cb-msg { display: flex; }
.dh-cb-msg--bot  { justify-content: flex-start; }
.dh-cb-msg--user { justify-content: flex-end; }

.dh-cb-bubble {
  max-width: 88%;
  padding: 10px 13px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.6;
}
.dh-cb-msg--bot .dh-cb-bubble {
  background: var(--paper);
  color: var(--ink-900);
  border-bottom-left-radius: 4px;
}
.dh-cb-msg--user .dh-cb-bubble {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fff;
  border-bottom-right-radius: 4px;
}

/* ── Cards inline ── */
.dh-cb-card {
  margin-top: 8px;
  background: #fff;
  border: 1px solid rgba(199,171,125,0.25);
  border-radius: 8px;
  padding: 8px 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  align-items: center;
}
.dh-cb-card-name { font-size: 12px; font-weight: 600; color: var(--ink-900); flex: 1 1 100%; }
.dh-cb-card-price { font-size: 15px; font-weight: 800; color: var(--gold-deep); }
.dh-cb-card-dur { font-size: 11px; color: rgba(10,10,10,0.45); }

/* ── Prix list ── */
.dh-cb-price-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(10,10,10,0.05);
  font-size: 12px;
}
.dh-cb-price-row:last-child { border-bottom: none; }
.dh-cb-price-row span { color: rgba(10,10,10,0.65); flex: 1; }
.dh-cb-price-row small { display: block; font-size: 10.5px; color: rgba(10,10,10,0.4); margin-top: 1px; }
.dh-cb-price-row strong { color: var(--gold-deep); font-weight: 700; white-space: nowrap; font-size: 13px; display: flex; flex-direction: column; align-items: flex-end; gap: 1px; }
.dh-cb-price-row del { font-size: 10px; font-weight: 400; color: rgba(10,10,10,0.3); text-decoration: line-through; }

/* ── Quick replies ── */
.dh-cb-replies {
  padding: 8px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
  border-top: 1px solid rgba(10,10,10,0.06);
  background: #fff;
  max-height: 200px;
  overflow-y: auto;
}
.dh-cb-reply-btn {
  background: #fff;
  border: 1px solid rgba(199,171,125,0.35);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-900);
  cursor: pointer;
  text-align: left;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  font-family: var(--f-body);
}
.dh-cb-reply-btn:hover {
  background: rgba(199,171,125,0.08);
  border-color: var(--gold);
  color: var(--gold-deep);
}

/* ── Input libre ── */
.dh-cb-input-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px 10px;
  border-top: 1px solid rgba(10,10,10,0.06);
  background: #fff;
  flex-shrink: 0;
}
.dh-cb-input {
  flex: 1;
  border: 1px solid rgba(10,10,10,0.12);
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 13px;
  font-family: var(--f-body);
  color: var(--ink-900);
  background: var(--paper);
  outline: none;
  transition: border-color 0.2s;
}
.dh-cb-input::placeholder { color: rgba(10,10,10,0.35); }
.dh-cb-input:focus { border-color: var(--gold); background: #fff; }
.dh-cb-send {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s, opacity 0.2s;
}
.dh-cb-send:hover { transform: scale(1.08); }
.dh-cb-send:active { transform: scale(0.95); }
.dh-cb-send:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.dh-cb-input:disabled { opacity: 0.6; }

/* ── Typing indicator ── */
.dh-cb-dots {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  height: 18px;
  padding: 2px 0;
}
.dh-cb-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  animation: dhDotPulse 1.2s ease-in-out infinite;
}
.dh-cb-dots span:nth-child(2) { animation-delay: 0.2s; }
.dh-cb-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dhDotPulse {
  0%, 80%, 100% { transform: scale(0.65); opacity: 0.35; }
  40%           { transform: scale(1);    opacity: 1; }
}

/* ── Mobile ── */
@media (max-width: 480px) {
  /* Plein écran sur mobile */
  #dh-cb-window {
    position: fixed;
    inset: 0;
    width: 100%;
    max-height: 100%;
    height: 100dvh;
    border-radius: 0;
    box-shadow: none;
    bottom: auto;
    right: auto;
  }

  /* Cacher le FAB quand le chat est ouvert */
  body.dh-chat-open .fab { display: none; }

  /* Messages scrollables occupent tout l'espace dispo */
  #dh-cb-messages { flex: 1; }

  /* Réponses rapides en colonne scrollable */
  .dh-cb-replies {
    max-height: 160px;
    overflow-y: auto;
  }

  /* Input fixé au-dessus du clavier */
  .dh-cb-input-wrap {
    padding-bottom: max(12px, env(safe-area-inset-bottom));
  }
}

/* ════════════════════════════════════════════════════════════════
   COMING SOON — Badge + Popup + Coming-soon card variant
   ════════════════════════════════════════════════════════════════ */

/* Badge "Arrive bientôt" variante coming */
.soin-card-badge--coming {
  background: linear-gradient(135deg, #e3cba0 0%, #c7ab7d 100%) !important;
  color: #0a0a0a !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 18px rgba(199, 171, 125, 0.45);
}
.soin-card-badge--coming .soin-card-badge-dot {
  background: #0a0a0a !important;
  animation: comingPulse 1.6s ease-in-out infinite;
}
@keyframes comingPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.45; transform: scale(1.35); }
}

/* Variante card complète "coming soon" — léger overlay pour casser le contraste */
.soin-card--coming-soon { position: relative; }
.soin-card--coming-soon .soin-card-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.0) 50%, rgba(10,10,10,0.18) 100%);
  pointer-events: none;
  z-index: 1;
}

/* ── POPUP COMING SOON ── */
.cs-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
.cs-popup.is-open {
  display: flex;
  opacity: 1;
}

.cs-popup-dialog {
  position: relative;
  max-width: 520px;
  width: 100%;
  background: #faf7f0;
  border-radius: 18px;
  padding: clamp(2rem, 4vw, 3.25rem) clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  transform: translateY(24px) scale(0.96);
  transition: transform 380ms cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(199, 171, 125, 0.32);
}
.cs-popup.is-open .cs-popup-dialog {
  transform: translateY(0) scale(1);
}

.cs-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(10,10,10,0.12);
  background: rgba(255,255,255,0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #0a0a0a;
  transition: background 200ms, transform 200ms;
}
.cs-popup-close:hover { background: #fff; transform: rotate(90deg); }

.cs-popup-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #e3cba0 0%, #c7ab7d 40%, #90815c 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  box-shadow: 0 8px 24px rgba(199, 171, 125, 0.4);
}

.cs-popup-eyebrow {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  background: rgba(199, 171, 125, 0.18);
  color: #90815c;
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.cs-popup-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1.05;
  color: #0a0a0a;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}
.cs-popup-title .gold-text-span { color: #90815c; }

.cs-popup-text {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(10,10,10,0.7);
  margin: 0 0 1.75rem;
}

.cs-popup-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: stretch;
}
.cs-popup-actions .btn { justify-content: center; }
@media (min-width: 520px) {
  .cs-popup-actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* ── Massage Deep — Split gender Hommes / Femmes ── */
.msg-gender-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
@media (min-width: 880px) {
  .msg-gender-split { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

.msg-gender-card {
  position: relative;
  background: #faf7f0;
  border: 1px solid rgba(199, 171, 125, 0.28);
  border-radius: 14px;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.msg-gender-card--available {
  background: linear-gradient(180deg, #faf7f0 0%, #f7f3e9 100%);
  border-color: rgba(199, 171, 125, 0.5);
}
.msg-gender-card--soon {
  background: rgba(10,10,10,0.03);
  border-style: dashed;
}

.msg-gender-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.msg-gender-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: #0a0a0a;
}
.msg-gender-status {
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.msg-gender-status--ok {
  background: rgba(34, 139, 34, 0.1);
  color: #1e6b1e;
}
.msg-gender-status--ok::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: #1e6b1e;
  animation: comingPulse 1.8s ease-in-out infinite;
}
.msg-gender-status--soon {
  background: rgba(199, 171, 125, 0.18);
  color: #90815c;
}
.msg-gender-status--soon::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: #c7ab7d;
}

.msg-gender-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(10,10,10,0.65);
  margin: 0;
}

.msg-gender-cta {
  margin-top: auto;
  align-self: flex-start;
}

/* ════════════════════════════════════════════════════════════════
   HYGIÈNE — Quote slider aligné avec la dernière card (desktop)
   ════════════════════════════════════════════════════════════════ */
@media (min-width: 1101px) {
  .hygiene-grid { align-items: stretch; }
  .hygiene-content {
    display: flex;
    flex-direction: column;
  }
  /* Pousse le quote vers le bas pour qu'il s'aligne horizontalement
     avec la dernière card (« Consultation préalable »). Le CTA suit
     juste en dessous, comme un footer de colonne. */
  .hygiene-quote {
    margin-top: auto;
  }
  .hygiene-quote + .hygiene-cta {
    margin-top: var(--s-6);
  }
}
