/* ───── Design tokens (colors + typography) ───── */
/* =========================================================================
   DermaMédiBeauté — côté médico-esthétique
   Palette de marque : brun #43302C (teinte unique, déclinée en brun doux et
   brun profond), beige 1 #DFD9D3 (fond principal), beige 2 #D3C7B4 (accent
   sur fonds sombres, surfaces chaudes).
   Typo : Playfair Display (display) + Mulish (texte) — typographie de la
   marque DMB, identique à dmb-hormono.
   Structure et nomenclature identiques à styles.css de dmb-hormono.
   ========================================================================= */

/* ---------- Fonts -------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,500&family=Mulish:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,500;1,700&display=swap');

:root {
  /* ---- Core brand palette --------------------------------------------- */
  --dmb-beige:           #DFD9D3; /* beige 1 — fond principal */
  --dmb-beige-field:     #E7E2DC; /* champs de formulaire sur cartes blanches */
  --dmb-encre:           #2C201D; /* brun profond — titres, footer, pricing */
  --dmb-brun-doux:       #6B5850; /* brun doux — texte courant */
  --dmb-brun-doux-deep:  #43302C; /* brun (hover) */
  --dmb-brun:            #43302C; /* brun — sections sombres, CTA, bordures */
  --dmb-brun-profond:    #2C201D; /* brun profond (hover sur sombre) */
  --dmb-beige-2:         #D3C7B4; /* beige 2 — accent sur fonds sombres */

  /* Neutrals */
  --dmb-white:           #ffffff;
  --dmb-near-black:      var(--dmb-encre);

  /* Rare mais présent (erreurs de formulaire) */
  --dmb-red:             #a41215;

  /* ---- Semantic ------------------------------------------------------- */
  --bg-canvas:           var(--dmb-beige);
  --bg-surface:          var(--dmb-white);
  --bg-contrast:         var(--dmb-brun);
  --bg-contrast-deep:    var(--dmb-encre);
  --bg-accent:           var(--dmb-beige-2);

  --fg-primary:          var(--dmb-encre);
  --fg-body:             var(--dmb-brun-doux);
  --fg-on-dark:          var(--dmb-white);
  --fg-eyebrow:          var(--dmb-brun-doux);

  --border-soft:         rgba(67, 48, 44, 0.14);

  /* ---- Typography tokens --------------------------------------------- */
  --font-display:        "Playfair Display", "Times New Roman", serif;
  --font-body:           "Mulish", "Helvetica Neue", Arial, sans-serif;

  --tracking-eyebrow:    0.3em;
  --tracking-loose:      0.2em;

  /* ---- Radii / shadow -------------------------------------------------- */
  --radius-none:         0;
  --radius-sm:           4px;

  --shadow-soft:         0 1px 2px rgba(67,48,44,.06), 0 8px 24px rgba(67,48,44,.08);

  /* DMB privilégie les fondus dégradés aux ombres pour détacher les images */
  --fade-image-bottom:   linear-gradient(rgba(223,217,211,0) 0%, rgb(223,217,211) 100%);
  --fade-image-top:      linear-gradient(rgb(223,217,211) 0%, rgba(223,217,211,0) 100%);
}

/* ---------- Reset & base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-canvas);
  color: var(--fg-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--dmb-brun); outline-offset: 3px; }

/* ---------- Layout ----------------------------------------------- */
.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 22px; }
@media (min-width: 768px) { .wrap { padding: 0 40px; } }

section { padding: 64px 0; }
@media (min-width: 768px) { section { padding: 96px 0; } }

/* ---------- Header ----------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(223,217,211,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 500;
  color: var(--dmb-encre);
  font-size: 19px; letter-spacing: 0.005em;
}
.brand-mark {
  width: 38px; height: 38px; border-radius: 0;
  object-fit: cover;
}
.brand small {
  display: block;
  font-family: var(--font-body); font-weight: 400;
  font-size: 9.5px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--dmb-brun-doux);
  margin-top: 2px;
}
.nav-desktop {
  display: none; gap: 30px;
  font-family: var(--font-body); font-size: 14px;
  color: var(--dmb-brun-doux);
}
.nav-desktop a { transition: color .18s ease; }
.nav-desktop a:hover { color: var(--dmb-encre); }
@media (min-width: 980px) { .nav-desktop { display: flex; } }

.header-cta { display: none !important; }
@media (min-width: 980px) { .header-cta { display: inline-flex !important; } }

/* Hamburger button (mobile only) */
.hamburger {
  display: inline-flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  width: 44px; height: 44px;
  padding: 0; margin: 0 -8px 0 0;
  background: transparent; border: 0; cursor: pointer;
  color: var(--dmb-brun-doux);
  -webkit-tap-highlight-color: transparent;
}
.hamburger-line {
  display: block;
  width: 22px; height: 1.5px;
  background: currentColor;
  transition: transform .25s ease, opacity .2s ease;
  transform-origin: center;
}
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (min-width: 980px) { .hamburger { display: none; } }

/* Mobile overlay menu */
.mobile-menu {
  position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  z-index: 55;
  background: var(--dmb-beige);
  overflow-y: auto;
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .22s ease, transform .28s ease, visibility .22s;
}
.mobile-menu[aria-hidden="false"] {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.mobile-menu-inner {
  display: flex; flex-direction: column;
  padding: 28px 22px calc(120px + env(safe-area-inset-bottom));
  min-height: 100%;
  gap: 28px;
}
.mobile-menu-eyebrow {
  margin: 0;
  font-family: var(--font-body);
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--dmb-brun-doux);
}
.mobile-menu-nav {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--border-soft);
}
.mobile-menu-nav li { border-bottom: 1px solid var(--border-soft); }
.mobile-menu-nav a {
  display: block;
  padding: 22px 4px;
  font-family: var(--font-display);
  font-size: 26px; font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--dmb-encre);
  text-decoration: none;
  transition: color .18s ease;
}
.mobile-menu-nav a:hover,
.mobile-menu-nav a:focus-visible { color: var(--dmb-brun); }
.mobile-menu-actions {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: auto;
}
.mobile-menu-actions .btn { width: 100%; padding: 18px 22px; }
@media (min-width: 980px) { .mobile-menu { display: none; } }

/* Body scroll lock + hide bottom CTA bar when menu open */
body.menu-open { overflow: hidden; }
body.menu-open .mobile-cta-bar { display: none; }

/* Mobile sticky CTA bar (bottom) */
.mobile-cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 60;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(223,217,211,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-soft);
  display: flex; gap: 10px;
}
.mobile-cta-bar .btn { flex: 1; }
.mobile-cta-bar .tel {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border: 1px solid var(--dmb-brun);
  color: var(--dmb-brun);
  flex-shrink: 0;
}
@media (min-width: 768px) { .mobile-cta-bar { display: none; } }
body { padding-bottom: 84px; }
@media (min-width: 768px) { body { padding-bottom: 0; } }

/* En iframe (embed Webflow), libère la zone gauche occupée par le widget cookie */
html.in-iframe .mobile-cta-bar { padding-left: 72px; }

/* ---------- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  border: 1px solid var(--dmb-brun);
  background: var(--dmb-brun);
  color: var(--dmb-white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
  text-align: center;
  line-height: 1.2;
}
.btn:hover { background: var(--dmb-encre); border-color: var(--dmb-encre); }
.btn:active { transform: translateY(1px); }
.btn--ghost {
  background: transparent; color: var(--dmb-brun);
}
.btn--ghost:hover { background: var(--dmb-brun); color: var(--dmb-white); }
.btn--small { padding: 12px 20px; font-size: 11.5px; }

/* ---------- Eyebrow & headlines ---------------------------------- */
.eyebrow {
  font-family: var(--font-body); font-weight: 500;
  font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--dmb-brun-doux);
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--dmb-brun-doux);
}
@media (min-width: 768px) {
  .eyebrow { font-size: 13px; }
}

h1.lp, h2.lp, h3.lp { margin: 0; color: var(--dmb-encre); }
h1.lp {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(36px, 7.4vw, 78px);
  line-height: 1.02; letter-spacing: -0.01em;
  text-wrap: balance;
}
h1.lp em { font-style: italic; color: var(--dmb-brun); }
h2.lp {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(30px, 5.2vw, 56px);
  line-height: 1.05; letter-spacing: -0.005em;
  text-wrap: balance;
}
h2.lp em { font-style: italic; color: var(--dmb-brun); }
h3.lp {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.15;
}
p.lead {
  font-family: var(--font-body); font-weight: 400;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
  color: var(--dmb-brun-doux);
  max-width: 60ch;
}
p.lp {
  font-family: var(--font-body); font-weight: 400;
  font-size: 16px; line-height: 1.65;
  color: var(--dmb-brun-doux);
}
@media (min-width: 768px) { p.lp { font-size: 17px; } }

/* Mention légale / conditions — accompagne chaque offre et allégation */
.legal-note {
  margin: 22px 0 0;
  font-family: var(--font-body);
  font-size: 13px; line-height: 1.6;
  color: var(--dmb-brun-doux);
  max-width: 72ch;
}
.legal-note strong { color: var(--dmb-encre); font-weight: 600; }

/* ---------- Hero ------------------------------------------------- */
.hero {
  position: relative;
  padding: 36px 0 56px;
  overflow: hidden;
}
@media (min-width: 768px) { .hero { padding: 56px 0 96px; } }
.hero-grid {
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 64px; }
}
.hero-grid.single { grid-template-columns: 1fr; }
.hero-grid.single > div:first-child { max-width: 760px; }
.hero-subtitle {
  margin-top: 22px;
  font-size: clamp(16px, 1.65vw, 19px);
  line-height: 1.6; color: var(--dmb-brun-doux);
  max-width: 56ch;
}
.benefits {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: grid; gap: 14px;
}
.benefits li {
  display: grid; grid-template-columns: 24px 1fr; gap: 14px;
  align-items: start;
  font-family: var(--font-body); font-size: 15.5px; line-height: 1.5;
  color: var(--dmb-encre);
}
.benefits li .check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--dmb-brun);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--dmb-beige-2);
  font-size: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}
.trust-line {
  margin-top: 26px;
  font-family: var(--font-body); font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--dmb-brun-doux);
  line-height: 1.6;
}
.hero-cta-row { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.social-proof {
  margin-top: 18px;
  font-family: var(--font-body); font-style: italic;
  font-size: 14.5px; color: var(--dmb-brun-doux);
  display: flex; align-items: center; gap: 10px;
}
.social-proof .stars { color: var(--dmb-encre); letter-spacing: 0.05em; font-size: 14px; }

.hero-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--dmb-brun);
  overflow: hidden;
}
.hero-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-image-wrap::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 28%;
  background: var(--fade-image-bottom);
  pointer-events: none;
}
.hero-image-wrap::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 16%;
  background: var(--fade-image-top);
  pointer-events: none;
  z-index: 1;
}
.hero-badge {
  position: absolute; left: 18px; bottom: 22px;
  z-index: 2;
  background: var(--dmb-beige);
  padding: 14px 18px;
  max-width: 260px;
  border: 1px solid var(--border-soft);
}
.hero-badge .label {
  font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--dmb-brun-doux); margin-bottom: 6px;
}
.hero-badge .value {
  font-family: var(--font-display); font-size: 17px; line-height: 1.25;
  color: var(--dmb-encre);
}

/* Pastille d'offre dans le héro (l'offre reste toujours liée à ses conditions) */
.hero-offer {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 26px;
  padding: 10px 16px;
  border: 1px solid var(--dmb-brun);
  background: var(--dmb-white);
  font-family: var(--font-body); font-size: 13.5px; font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--dmb-brun);
}
.hero-offer .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--dmb-brun);
  flex-shrink: 0;
}

/* ---------- Héro VSL (page XERF) : headline + sub-headline + vidéo ----------
   Compact volontairement : le bouton « play » doit rester visible sans défiler. */
.hero-vsl { text-align: center; padding: 24px 0 48px; }
@media (min-width: 768px) { .hero-vsl { padding: 32px 0 72px; } }
.hero-vsl .eyebrow { margin-bottom: 14px; justify-content: center; }
.hero-vsl h1.lp {
  max-width: 30ch; margin: 0 auto;
  font-size: clamp(26px, 3.6vw, 42px);
  line-height: 1.12;
}
.hero-vsl .hero-subtitle {
  margin: 14px auto 0; max-width: 58ch;
  font-size: clamp(15px, 1.5vw, 17.5px);
}
.hero-vsl .vsl-frame { margin: 12px auto 0; max-width: 780px; }

/* Indice « cliquez sur play » : libellé + flèche animée pointant la vidéo */
.vsl-cue {
  margin: 22px auto 0;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.vsl-cue span {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(17px, 2vw, 21px);
  color: var(--dmb-brun);
}
.vsl-cue .arrow {
  width: 26px; height: 26px;
  color: var(--dmb-brun);
  animation: vslBounce 1.6s ease-in-out infinite;
}
@keyframes vslBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(7px); }
}
@media (prefers-reduced-motion: reduce) {
  .vsl-cue .arrow { animation: none; }
}
.hero-vsl .hero-cta-row { justify-content: center; margin-top: 28px; }
.hero-vsl .trust-line { margin-top: 20px; }
.hero-vsl .social-proof { justify-content: center; }

/* ---------- Section : VSL / vidéo (page XERF) --------------------- */
.vsl-section { padding-top: 0; }
.vsl-frame {
  position: relative;
  margin-top: 40px;
  aspect-ratio: 16/9;
  background: var(--dmb-encre);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.vsl-frame .vsl-placeholder {
  text-align: center;
  padding: 24px;
  color: var(--dmb-beige-2);
}
.vsl-frame .vsl-placeholder .play {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border: 1px solid var(--dmb-beige-2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.vsl-frame .vsl-placeholder .play svg { width: 22px; height: 22px; margin-left: 3px; }
.vsl-frame .vsl-placeholder p {
  margin: 0;
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(17px, 2vw, 22px);
}
.vsl-frame iframe, .vsl-frame video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* Bouton play maison par-dessus le lecteur : gros, pulsant, aux couleurs DMB.
   Il démarre la vidéo au clic puis s'efface (voir script en bas de page). */
.vsl-overlay {
  position: absolute; inset: 0; z-index: 2;
  width: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
  background: linear-gradient(rgba(44,32,29,0.08) 0%, rgba(44,32,29,0.38) 100%);
  border: 0; padding: 0;
  cursor: pointer;
}
.vsl-overlay .play-big {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--dmb-beige-2);
  color: var(--dmb-brun);
  display: inline-flex; align-items: center; justify-content: center;
  animation: playPulse 2s ease-out infinite;
  transition: transform .18s ease, background .18s ease;
}
.vsl-overlay .play-big svg { width: 36px; height: 36px; margin-left: 5px; }
.vsl-overlay:hover .play-big,
.vsl-overlay:focus-visible .play-big {
  transform: scale(1.07);
  background: var(--dmb-white);
}
.vsl-overlay .play-label {
  font-family: var(--font-body); font-weight: 600;
  font-size: 12.5px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--dmb-white);
  text-shadow: 0 1px 10px rgba(44,32,29,0.6);
}
.vsl-overlay.is-hidden { display: none; }
@keyframes playPulse {
  0%   { box-shadow: 0 0 0 0 rgba(211,199,180,0.6); }
  70%  { box-shadow: 0 0 0 28px rgba(211,199,180,0); }
  100% { box-shadow: 0 0 0 0 rgba(211,199,180,0); }
}
@media (prefers-reduced-motion: reduce) {
  .vsl-overlay .play-big { animation: none; }
}
@media (max-width: 600px) {
  .vsl-overlay .play-big { width: 74px; height: 74px; }
  .vsl-overlay .play-big svg { width: 28px; height: 28px; margin-left: 4px; }
}

/* ---------- Section : identification (symptoms) ------------------- */
.symptoms {
  list-style: none; padding: 0; margin: 36px 0 0;
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .symptoms { grid-template-columns: 1fr 1fr; gap: 16px 28px; }
}
.symptoms li {
  display: grid; grid-template-columns: 36px 1fr;
  gap: 14px; align-items: start;
  padding: 18px 18px 18px 16px;
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--border-soft);
  font-family: var(--font-body); font-size: 15.5px;
  line-height: 1.45; color: var(--dmb-encre);
}
.symptoms li svg {
  width: 24px; height: 24px;
  color: var(--dmb-brun);
  flex-shrink: 0;
  margin-top: 1px;
}
.pivot {
  margin-top: 48px;
  padding: 36px 22px;
  text-align: center;
  background: var(--dmb-beige);
  border-top: 1px solid var(--dmb-brun);
  border-bottom: 1px solid var(--dmb-brun);
  font-family: var(--font-display);
  font-weight: 500; font-style: italic;
  font-size: clamp(22px, 3.6vw, 36px);
  line-height: 1.15;
  color: var(--dmb-encre);
  text-wrap: balance;
}
@media (min-width: 768px) { .pivot { padding: 56px 40px; } }

/* ---------- Zones traitées ---------------------------------------- */
.zones {
  list-style: none; padding: 0; margin: 40px 0 0;
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .zones { grid-template-columns: 1fr 1fr; gap: 16px 22px; } }
@media (min-width: 980px) { .zones { grid-template-columns: repeat(3, 1fr); } }
.zones li {
  padding: 22px 22px 20px;
  background: var(--dmb-white);
  border: 1px solid var(--border-soft);
}
.zones .zone-name {
  margin: 0 0 6px;
  font-family: var(--font-display); font-weight: 500;
  font-size: 19px; line-height: 1.2;
  color: var(--dmb-encre);
}
.zones .zone-desc {
  margin: 0;
  font-family: var(--font-body); font-size: 14px; line-height: 1.5;
  color: var(--dmb-brun-doux);
}

/* ---------- À quoi s'attendre (stats) ------------------------------ */
.expect-grid {
  margin: 44px 0 0; padding: 28px 0;
  border-top: 1px solid rgba(44,32,29,0.12);
  border-bottom: 1px solid rgba(44,32,29,0.12);
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px 24px;
}
@media (min-width: 900px) { .expect-grid { grid-template-columns: repeat(4, 1fr); } }
.expect dt {
  font-family: var(--font-body); font-weight: 500;
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--dmb-brun-doux);
  margin-bottom: 8px;
}
.expect dd {
  margin: 0;
  font-family: var(--font-display); font-weight: 500;
  font-size: 18px; line-height: 1.35;
  color: var(--dmb-encre);
}

/* ---------- Section : dark — le constat / la technologie ---------- */
.dark-section {
  background: var(--dmb-brun);
  color: var(--dmb-white);
  padding: 80px 0;
  position: relative;
}
@media (min-width: 768px) { .dark-section { padding: 120px 0; } }
.dark-section h2.lp { color: var(--dmb-white); }
.dark-section h2.lp em { color: var(--dmb-beige-2); }
.dark-section .eyebrow { color: var(--dmb-beige-2); }
.dark-section .eyebrow::before { background: var(--dmb-beige-2); }
.dark-section p {
  font-size: 16.5px; line-height: 1.7; color: rgba(255,255,255,0.88);
  margin: 18px 0 0;
}
.dark-section .transition {
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--dmb-beige-2);
  line-height: 1.2;
}
.dark-section-grid {
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .dark-section-grid { grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: start; }
}
.dark-section-grid > .copy > p:first-of-type { margin-top: 0; }

/* ---------- Pillars ---------------------------------------------- */
.pillars {
  margin-top: 48px;
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .pillars { grid-template-columns: 1fr 1fr; gap: 22px; }
}
.pillar {
  padding: 32px 28px;
  background: var(--dmb-white);
  border: 1px solid var(--border-soft);
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pillar:hover { box-shadow: var(--shadow-soft); }
.pillar .num {
  font-family: var(--font-display); font-style: italic;
  font-size: 32px; color: var(--dmb-brun-doux);
  line-height: 1;
  margin-bottom: 8px;
}
.pillar h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 22px; color: var(--dmb-encre);
  margin: 0 0 12px; line-height: 1.2;
}
.pillar p { margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--dmb-brun-doux); }

/* ---------- Timeline / parcours ---------------------------------- */
.timeline {
  margin-top: 48px;
  display: grid; gap: 0;
  grid-template-columns: 1fr;
  position: relative;
}
@media (min-width: 980px) {
  .timeline { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .timeline.four { grid-template-columns: repeat(4, 1fr); }
}
.step {
  position: relative;
  padding: 26px 0 26px 56px;
  border-top: 1px solid var(--dmb-brun);
}
.step:last-child { border-bottom: 1px solid var(--dmb-brun); }
@media (min-width: 980px) {
  .step {
    padding: 28px 22px 28px;
    border: 1px solid var(--dmb-brun);
    border-right: none;
  }
  .step:last-child { border-right: 1px solid var(--dmb-brun); border-bottom: 1px solid var(--dmb-brun); }
}
.step .step-num {
  position: absolute;
  left: 0; top: 26px;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--dmb-brun);
  background: var(--dmb-beige-2);
  color: var(--dmb-encre);
  font-family: var(--font-display); font-style: italic;
  font-size: 18px;
  line-height: 1;
}
@media (min-width: 980px) {
  .step .step-num { position: static; margin-bottom: 18px; }
}
.step h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 19px; line-height: 1.2;
  color: var(--dmb-encre);
  margin: 0 0 6px;
}
.step .duration {
  font-family: var(--font-body); font-style: italic;
  font-size: 13px; color: var(--dmb-brun-doux);
  margin-bottom: 14px;
}
.step p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--dmb-brun-doux); }

/* ---------- Pourquoi DMB ---------------------------------------- */
.why-grid {
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
  margin-top: 32px;
  align-items: start;
}
@media (min-width: 900px) {
  .why-grid { grid-template-columns: 1fr 1fr; gap: 72px; }
}
.why-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--dmb-brun);
}
.why-image img { width: 100%; height: 100%; object-fit: cover; }
.why-image::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 26%;
  background: var(--fade-image-bottom);
}
.why-image::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 14%;
  background: var(--fade-image-top);
  z-index: 1;
}
.advantages { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 16px; }
.advantages li {
  display: grid; grid-template-columns: 26px 1fr; gap: 14px;
  align-items: start;
  font-family: var(--font-body); font-size: 15.5px; line-height: 1.55;
  color: var(--dmb-encre);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-soft);
}
.advantages li:last-child { border-bottom: none; padding-bottom: 0; }
.advantages .check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--dmb-brun);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--dmb-beige-2); font-size: 12px;
  margin-top: 1px;
}
.closing {
  margin-top: 36px;
  padding: 28px 24px;
  background: var(--dmb-encre);
  color: var(--dmb-beige);
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(20px, 2.4vw, 26px); line-height: 1.25;
  text-wrap: balance;
}
.closing strong { color: var(--dmb-beige-2); font-weight: 500; font-style: italic; }

/* ---------- Section équipe / praticienne (ips-*) ------------------ */
.ips-section { background: rgba(255,255,255,0.5); }
.ips-grid {
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) {
  .ips-grid { grid-template-columns: 0.85fr 1fr; gap: 72px; align-items: start; }
}
.ips-portrait {
  position: relative; margin: 0;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--dmb-beige-2);
}
.ips-portrait img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 8%;
  display: block;
}
.ips-portrait::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 14%;
  background: var(--fade-image-top);
  pointer-events: none;
}
.ips-portrait::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 26%;
  background: var(--fade-image-bottom);
  pointer-events: none;
}
.ips-copy h2.lp { font-size: clamp(30px, 4.2vw, 48px); }
.ips-stats {
  margin: 36px 0 0; padding: 28px 0;
  border-top: 1px solid rgba(44,32,29,0.12);
  border-bottom: 1px solid rgba(44,32,29,0.12);
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px 24px;
}
@media (min-width: 768px) { .ips-stats { grid-template-columns: 1fr 1fr 1.4fr; } }
.ips-stat dt {
  font-family: var(--font-body); font-weight: 500;
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--dmb-brun-doux);
  margin-bottom: 8px;
}
.ips-stat dd {
  margin: 0;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1;
  color: var(--dmb-encre);
  letter-spacing: -0.01em;
}
.ips-stat-suffix {
  font-size: 0.5em; letter-spacing: 0.04em; color: var(--dmb-brun-doux);
  font-style: italic; margin-left: 2px;
}
.ips-stat-text {
  font-family: var(--font-body) !important; font-weight: 400 !important;
  font-size: 14px !important; line-height: 1.55 !important;
  color: var(--dmb-encre);
  letter-spacing: 0 !important;
}
.ips-scope { margin-top: 28px; }
.ips-scope-label {
  font-family: var(--font-body); font-weight: 500;
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--dmb-brun-doux);
  margin: 0 0 12px;
}
.ips-tags {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.ips-tags li {
  padding: 7px 14px;
  border: 1px solid rgba(44,32,29,0.18);
  font-family: var(--font-body); font-size: 13px;
  color: var(--dmb-encre);
  background: rgba(255,255,255,0.6);
}
.ips-authority {
  margin: 28px 0 0;
  font-family: var(--font-body); font-size: 16px; line-height: 1.65;
  color: var(--dmb-encre);
}
.ips-authority strong {
  font-weight: 600; color: var(--dmb-encre);
  border-bottom: 1px solid var(--dmb-beige-2);
  padding-bottom: 1px;
}
.ips-quote {
  margin: 32px 0 0; padding: 22px 0 0;
  border-top: 1px solid rgba(44,32,29,0.12);
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(18px, 2vw, 22px); line-height: 1.45;
  color: var(--dmb-brun-doux);
  text-wrap: pretty;
}
.ips-quote cite {
  display: block;
  margin-top: 14px;
  font-family: var(--font-body); font-style: normal; font-weight: 500;
  font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--dmb-encre);
}

/* ---------- Objections (page XERF) -------------------------------- */
.objections {
  margin-top: 48px;
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .objections { grid-template-columns: 1fr 1fr; gap: 22px; } }
.objection {
  padding: 32px 28px;
  background: var(--dmb-white);
  border: 1px solid var(--border-soft);
}
.objection .belief {
  margin: 0 0 16px;
  font-family: var(--font-display); font-weight: 500; font-style: italic;
  font-size: clamp(19px, 2vw, 23px); line-height: 1.3;
  color: var(--dmb-encre);
}
.objection .belief::before { content: "« "; }
.objection .belief::after { content: " »"; }
.objection p {
  margin: 0 0 12px;
  font-family: var(--font-body); font-size: 15px; line-height: 1.6;
  color: var(--dmb-brun-doux);
}
.objection p:last-child { margin-bottom: 0; }
.objection p strong {
  font-weight: 600; color: var(--dmb-brun);
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 11.5px;
  display: block; margin-bottom: 4px;
}

/* ---------- Tableau comparatif (page XERF) ------------------------
   Bonnes pratiques appliquées : symboles ✓ / ✗ cohérents, colonne
   recommandée surlignée avec badge, rangées binaires d'abord (scan),
   détails texte ensuite, max 5 options. */
.compare-wrap {
  margin-top: 44px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.compare-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--dmb-white);
  border: 1px solid var(--border-soft);
}
.compare-table th, .compare-table td {
  padding: 18px 16px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid var(--border-soft);
  line-height: 1.45;
  color: var(--dmb-brun-doux);
}
.compare-table thead th {
  font-family: var(--font-display); font-weight: 500;
  font-size: 17px;
  color: var(--dmb-encre);
  background: rgba(211,199,180,0.22);
  padding-top: 22px; padding-bottom: 22px;
}
.compare-table thead th small {
  display: block;
  font-family: var(--font-body); font-weight: 500;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--dmb-brun-doux);
  margin-top: 5px;
}
.compare-table tbody th {
  text-align: left;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--dmb-brun);
  background: rgba(223,217,211,0.35);
  min-width: 190px;
}
.compare-table tbody tr:nth-child(even) td:not(.is-xerf) { background: rgba(223,217,211,0.16); }

/* Colonne XERF surlignée */
.compare-table .is-xerf {
  background: var(--dmb-brun);
  color: var(--dmb-white);
  border-bottom-color: rgba(255,255,255,0.14);
}
.compare-table thead th.is-xerf {
  background: var(--dmb-brun);
  color: var(--dmb-white);
  font-size: 19px;
  position: relative;
}
.compare-table thead th.is-xerf small { color: var(--dmb-beige-2); }
.compare-table td.is-xerf { font-weight: 500; }
.compare-table tbody tr:last-child .is-xerf { border-bottom-color: var(--dmb-brun); }

/* Marqueurs ✓ / ✗ / ± */
.mk {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: 14px; line-height: 1;
  font-weight: 700;
}
.mk-yes { background: var(--dmb-brun); color: var(--dmb-beige-2); }
.is-xerf .mk-yes { background: var(--dmb-beige-2); color: var(--dmb-brun); }
.mk-no {
  background: transparent;
  border: 1px solid rgba(67,48,44,0.25);
  color: rgba(67,48,44,0.45);
  font-weight: 400;
}
.is-xerf .mk-no { border-color: rgba(255,255,255,0.35); color: rgba(255,255,255,0.6); }
.mk-part {
  background: rgba(211,199,180,0.5);
  color: var(--dmb-brun);
  font-weight: 600;
}
.mk-note {
  display: block;
  margin-top: 7px;
  font-size: 11.5px; line-height: 1.4;
  color: var(--dmb-brun-doux);
}
.is-xerf .mk-note { color: rgba(255,255,255,0.85); }
.compare-table .txt { font-size: 13.5px; }
.compare-table .txt strong {
  display: block;
  font-family: var(--font-display); font-weight: 500;
  font-size: 16px; letter-spacing: 0;
  color: var(--dmb-encre);
  margin-bottom: 3px;
  text-transform: none;
}
.compare-table .is-xerf.txt strong { color: var(--dmb-white); }
.compare-note {
  margin-top: 16px;
  font-size: 13px; line-height: 1.6;
  color: var(--dmb-brun-doux);
}

/* ── Mobile : le tableau devient des cartes empilées, un critère par carte,
   chaque option sur sa ligne (nom à gauche, verdict à droite), DMB en tête. ── */
@media (max-width: 720px) {
  .compare-wrap { overflow-x: visible; }
  .compare-table,
  .compare-table tbody,
  .compare-table tr,
  .compare-table tbody th,
  .compare-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }
  .compare-table { border: none; background: transparent; }
  .compare-table thead { display: none; }
  .compare-table tbody tr {
    background: var(--dmb-white);
    border: 1px solid var(--border-soft);
    margin-bottom: 14px;
  }
  .compare-table tbody th {
    min-width: 0;
    padding: 13px 16px;
    font-size: 11.5px;
    background: rgba(223,217,211,0.5);
    border-bottom: 1px solid var(--border-soft);
    border-right: none;
  }
  .compare-table td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 16px;
    text-align: right;
    border-right: none;
  }
  .compare-table tbody tr:nth-child(even) td:not(.is-xerf) { background: transparent; }
  .compare-table td::before {
    content: attr(data-col);
    flex: 1;
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dmb-brun-doux);
  }
  .compare-table td.is-xerf::before { color: var(--dmb-beige-2); }
  .compare-table td:last-child { border-bottom: none; }
  .compare-table tbody tr:last-child .is-xerf { border-bottom-color: rgba(255,255,255,0.14); }
  .compare-table .mk { width: 26px; height: 26px; flex-shrink: 0; }
  .compare-table .mk-note {
    display: block;
    margin-top: 4px;
    text-align: right;
  }
  /* le verdict (coche + note) se groupe à droite */
  .compare-table td > .mk { order: 2; }
  .compare-table td > .mk-note {
    order: 3;
    flex-basis: 100%;
    margin-top: 2px;
    padding-left: 30%;
  }
  .compare-table td { flex-wrap: wrap; }
  .compare-table .txt { font-size: 13px; }
  .compare-table .txt strong { font-size: 15px; }
}

/* ---------- For who / not for who -------------------------------- */
.qualify-grid {
  margin-top: 40px;
  display: grid; gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .qualify-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
.qualify-col {
  padding: 32px 28px;
  background: var(--dmb-white);
  border: 1px solid var(--border-soft);
}
.qualify-col.no { background: rgba(223,217,211,0.6); }
.qualify-col h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 22px; line-height: 1.2;
  color: var(--dmb-encre);
  margin: 0 0 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-soft);
}
.qualify-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.qualify-col li {
  display: grid; grid-template-columns: 22px 1fr; gap: 12px;
  align-items: start;
  font-family: var(--font-body); font-size: 15px; line-height: 1.5;
  color: var(--dmb-encre);
}
.qualify-col .mark {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; line-height: 1;
  margin-top: 1px;
}
.qualify-col.yes .mark { color: var(--dmb-encre); }
.qualify-col.no .mark { color: var(--dmb-brun-doux); }
.qualify-note {
  margin-top: 24px;
  padding: 22px 24px;
  border: 1px solid var(--dmb-brun);
  background: var(--dmb-beige);
  font-family: var(--font-body); font-size: 15.5px; line-height: 1.6;
  color: var(--dmb-brun-doux);
}

/* ---------- Testimonials ----------------------------------------- */
.testi-grid {
  margin-top: 40px;
  display: grid; gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .testi-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.testi {
  padding: 30px 28px;
  background: var(--dmb-white);
  border: 1px solid var(--border-soft);
  display: flex; flex-direction: column; gap: 16px;
}
.testi .stars { color: var(--dmb-brun-doux); font-size: 16px; letter-spacing: 0.08em; }
.testi blockquote {
  margin: 0;
  font-family: var(--font-display); font-weight: 400;
  font-size: 18px; line-height: 1.4;
  color: var(--dmb-encre);
  text-wrap: pretty;
  flex: 1;
}
.testi cite {
  font-family: var(--font-body); font-style: normal;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--dmb-brun-doux);
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
}

/* ---------- Pricing / offre --------------------------------------- */
.pricing-card {
  margin-top: 40px;
  padding: 44px 32px;
  background: var(--dmb-encre);
  color: var(--dmb-beige);
  text-align: center;
  position: relative;
}
@media (min-width: 768px) { .pricing-card { padding: 64px 48px; } }
.pricing-card .label {
  font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--dmb-beige-2);
}
.pricing-card .price {
  display: inline-block;
  margin: 12px 0 4px;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1.2;
  padding: 0.12em 0.08em 0.18em;
  color: var(--dmb-beige-2);
}
.pricing-card .price small {
  font-size: 0.36em; font-style: italic; font-weight: 400;
  letter-spacing: 0.02em;
}
.pricing-card .duration {
  font-family: var(--font-body); font-style: italic;
  color: rgba(255,255,255,0.7); font-size: 15px;
}
.pricing-card ul.price-list {
  list-style: none; padding: 0;
  margin: 28px auto 0;
  display: grid; gap: 0;
  text-align: left;
  max-width: 460px;
}
.pricing-card ul.price-list li {
  position: relative;
  padding: 14px 0 14px 28px;
  font-family: var(--font-body); font-size: 15px; color: rgba(255,255,255,0.9);
  line-height: 1.5;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.pricing-card ul.price-list li:last-child { border-bottom: none; }
.pricing-card ul.price-list li::before {
  content: ""; position: absolute; left: 0; top: 22px;
  width: 14px; height: 1px; background: var(--dmb-beige-2);
}

/* ── Pastille offre avec halo (ex-« no-fee ») ── */
.no-fee {
  position: relative;
  display: inline-flex; flex-direction: column; align-items: center; gap: 6px;
  margin: 28px auto 0;
  padding: 16px 28px 18px;
  border: 1px solid rgba(211,199,180,0.5);
  background: linear-gradient(180deg, rgba(211,199,180,0.10) 0%, rgba(211,199,180,0.02) 100%);
  overflow: visible;
  isolation: isolate;
}
.no-fee-glow {
  position: absolute; inset: -20px;
  background: radial-gradient(ellipse at center, rgba(211,199,180,0.28) 0%, rgba(211,199,180,0) 65%);
  z-index: -1;
  animation: noFeePulse 3.6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes noFeePulse {
  0%, 100% { opacity: 0.55; transform: scale(0.95); }
  50%      { opacity: 1;    transform: scale(1.04); }
}
.no-fee-label {
  font-family: var(--font-body); font-weight: 500;
  font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--dmb-beige-2);
}
.no-fee-text {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(17px, 2.1vw, 22px);
  line-height: 1.2;
  color: var(--dmb-beige);
  text-align: center;
}
.no-fee-spark {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--dmb-beige-2);
  box-shadow: 0 0 8px 2px rgba(211,199,180,0.7);
  opacity: 0;
  pointer-events: none;
  animation: spark 4s ease-in-out infinite;
}
.no-fee-spark.s1 { top:  10%; left:  6%; animation-delay: 0.0s; }
.no-fee-spark.s2 { top:  72%; left: 12%; animation-delay: 0.7s; width: 3px; height: 3px; }
.no-fee-spark.s3 { top:  20%; right: 8%; animation-delay: 1.4s; }
.no-fee-spark.s4 { top:  78%; right:14%; animation-delay: 2.1s; width: 5px; height: 5px; }
.no-fee-spark.s5 { top: -10%; left: 48%; animation-delay: 2.8s; width: 3px; height: 3px; }
.no-fee-spark.s6 { top: 100%; left: 38%; animation-delay: 3.4s; }
@keyframes spark {
  0%   { opacity: 0; transform: translate(0,0) scale(0.4); }
  20%  { opacity: 1; transform: translate(0,-2px) scale(1); }
  60%  { opacity: 0.6; transform: translate(2px,-10px) scale(0.8); }
  100% { opacity: 0; transform: translate(4px,-18px) scale(0.2); }
}
@media (prefers-reduced-motion: reduce) {
  .no-fee-glow, .no-fee-spark { animation: none; }
  .no-fee-glow { opacity: 0.7; }
  .no-fee-spark { opacity: 0.7; transform: none; }
}
.pricing-card .btn {
  margin-top: 36px;
  background: var(--dmb-beige-2); border-color: var(--dmb-beige-2);
  color: var(--dmb-encre);
}
.pricing-card .btn:hover { background: var(--dmb-beige); border-color: var(--dmb-beige); }
.pricing-card .legal-note { color: rgba(255,255,255,0.65); margin: 26px auto 0; max-width: 56ch; }
.pricing-info {
  margin-top: 22px;
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .pricing-info { grid-template-columns: 1fr 1fr; gap: 22px; } }
.info-block {
  padding: 26px 26px;
  background: var(--dmb-white);
  border: 1px solid var(--border-soft);
}
.info-block h4 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 19px; line-height: 1.2;
  color: var(--dmb-encre);
  margin: 0 0 10px;
}
.info-block p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--dmb-brun-doux); }
.pricing-quote {
  margin-top: 48px;
  padding: 36px 22px;
  text-align: center;
  border-top: 1px solid var(--dmb-brun);
  border-bottom: 1px solid var(--dmb-brun);
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(20px, 2.6vw, 28px); line-height: 1.3;
  color: var(--dmb-encre);
  text-wrap: balance;
}

/* ---------- FAQ Accordion ---------------------------------------- */
.faq {
  margin-top: 40px;
  display: grid; gap: 0;
}
.faq-item {
  border-top: 1px solid var(--border-soft);
}
.faq-item:last-child { border-bottom: 1px solid var(--border-soft); }
.faq-q {
  width: 100%;
  background: transparent; border: none;
  text-align: left;
  padding: 22px 50px 22px 0;
  position: relative;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.3;
  color: var(--dmb-encre);
  cursor: pointer;
}
.faq-q .icon {
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .25s ease;
}
.faq-q .icon::before, .faq-q .icon::after {
  content: ""; position: absolute;
  background: var(--dmb-brun);
}
.faq-q .icon::before { width: 14px; height: 1px; }
.faq-q .icon::after { width: 1px; height: 14px; transition: transform .25s ease; }
.faq-item[open] .icon::after { transform: rotate(90deg); }
.faq-a {
  padding: 0 0 24px;
  font-family: var(--font-body); font-size: 15.5px; line-height: 1.65;
  color: var(--dmb-brun-doux);
  max-width: 70ch;
}
details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }

/* ---------- Final CTA + form ------------------------------------- */
.cta-section {
  background: var(--dmb-beige);
  padding: 72px 0;
}
@media (min-width: 768px) { .cta-section { padding: 120px 0; } }
.cta-grid {
  display: grid; gap: 36px;
  grid-template-columns: 1fr;
  margin-top: 40px;
}
@media (min-width: 900px) { .cta-grid { grid-template-columns: 1.2fr 0.8fr; gap: 56px; } }
.form-card {
  padding: 36px 28px;
  background: var(--dmb-white);
  border: 1px solid var(--border-soft);
}
@media (min-width: 768px) { .form-card { padding: 44px 40px; } }
.form-row { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 6px; }
.field label {
  font-family: var(--font-body); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--dmb-brun-doux);
}
.field input, .field textarea {
  font-family: var(--font-body); font-size: 16px;
  color: var(--dmb-encre);
  background: var(--dmb-beige-field);
  border: 1px solid transparent;
  border-bottom: 1px solid var(--dmb-brun-doux);
  padding: 14px 14px;
  border-radius: 0;
  transition: border-color .18s ease, background .18s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--dmb-encre);
  background: var(--dmb-white);
}
.field textarea { resize: vertical; min-height: 120px; }
.checkbox {
  display: grid; grid-template-columns: 22px 1fr; gap: 12px;
  align-items: start;
  font-family: var(--font-body); font-size: 14px; line-height: 1.5;
  color: var(--dmb-brun-doux);
  margin-top: 8px;
}
.checkbox input { width: 22px; height: 22px; accent-color: var(--dmb-brun); margin-top: 1px; }
.form-submit { margin-top: 26px; }
.form-submit .btn { width: 100%; }
@media (min-width: 600px) { .form-submit .btn { width: auto; } }
.form-message { margin-top: 18px; font-family: var(--font-body); font-size: 14.5px; }
.form-message.success { color: var(--dmb-encre); }
.form-message.error { color: var(--dmb-red); }
.contact-card { display: grid; gap: 22px; align-content: start; }
.contact-item {
  display: grid; grid-template-columns: 36px 1fr; gap: 18px;
  align-items: start;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border-soft);
}
.contact-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-item .ico {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--dmb-brun); color: var(--dmb-beige-2);
}
.contact-item .ico svg { width: 18px; height: 18px; }
.contact-item h4 {
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--dmb-brun-doux);
  margin: 0 0 4px;
}
.contact-item p, .contact-item a {
  margin: 0;
  font-family: var(--font-display); font-weight: 500;
  font-size: 19px; line-height: 1.3;
  color: var(--dmb-encre);
}
.contact-item a { transition: color .18s ease; }
.contact-item a:hover { color: var(--dmb-brun); }

/* ---------- Footer ----------------------------------------------- */
footer.site-footer {
  background: var(--dmb-encre);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 40px;
}
.footer-grid {
  display: grid; gap: 36px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; } }
footer .brand { color: var(--dmb-beige); }
footer .brand small { color: var(--dmb-beige-2); }
footer h5 {
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--dmb-beige-2);
  margin: 0 0 18px;
}
footer .tagline {
  margin: 18px 0 0;
  font-family: var(--font-display); font-style: italic;
  font-size: 18px; line-height: 1.4;
  color: rgba(255,255,255,0.85);
  max-width: 32ch;
}
footer p, footer a { font-family: var(--font-body); font-size: 14.5px; line-height: 1.7; color: rgba(255,255,255,0.7); }
footer a:hover { color: var(--dmb-beige); }
footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-bottom {
  margin-top: 56px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
  font-size: 12.5px; letter-spacing: 0.06em; color: rgba(255,255,255,0.55);
}

/* ---------- A11y: skip link -------------------------------------- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--dmb-encre); color: var(--dmb-beige-2);
  padding: 12px 18px;
  font-family: var(--font-body); font-size: 14px;
  z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}

/* ===== HOME PAGE ===== */
.home-hero { padding: 56px 0 64px; }
@media (min-width: 768px) { .home-hero { padding: 96px 0 120px; } }
.home-hero-inner { max-width: 760px; }
.home-hero-h1 { margin: 0 0 18px; }
.home-hero-headline {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 8vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.012em;
  color: var(--dmb-encre);
}
.home-hero-headline em { font-style: italic; color: var(--dmb-brun); }
.home-hero .hero-subtitle { margin-top: 24px; }
.home-hero .trust-line { margin-top: 22px; }
.home-hero .hero-cta-row { margin-top: 32px; }

/* Catégories de soins */
.soins-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 768px) { .soins-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (min-width: 1100px) { .soins-grid { grid-template-columns: 1fr 1fr 1fr; } }

.soin-card {
  display: flex; flex-direction: column;
  background: var(--dmb-white);
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
}
.soin-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -28px rgba(44, 32, 29, 0.35);
}
.soin-card:focus-visible {
  outline: 2px solid var(--dmb-brun);
  outline-offset: 2px;
}
.soin-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--dmb-beige-2);
}
.soin-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.soin-card-image::after {
  content: "";
  position: absolute; inset: auto 0 0 0;
  height: 50%;
  background: linear-gradient(to top, rgba(67, 48, 44, 0.32), transparent);
  pointer-events: none;
}
.soin-card-body {
  padding: 28px 26px 30px;
  display: flex; flex-direction: column;
  flex: 1;
}
.soin-card-eyebrow {
  margin: 0 0 10px;
  font-family: var(--font-body);
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--dmb-brun-doux);
}
.soin-card-title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.008em;
  color: var(--dmb-encre);
  text-wrap: balance;
}
.soin-card-title em { font-style: italic; color: var(--dmb-brun); }
.soin-card-desc {
  margin: 0 0 22px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--dmb-brun-doux);
  flex: 1;
  text-wrap: pretty;
}
.soin-card-cta {
  font-family: var(--font-body);
  font-size: 13.5px; font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--dmb-encre);
  border-top: 1px solid var(--border-soft);
  padding-top: 16px;
  transition: color .18s ease;
}
.soin-card:hover .soin-card-cta { color: var(--dmb-brun); }

/* Section contact (home) */
.home-contact { padding-bottom: 96px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
  margin-top: 40px;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: repeat(4, 1fr); } }
.contact-grid h5 {
  margin: 0 0 8px;
  font-family: var(--font-body);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--dmb-brun-doux);
}
.contact-grid p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--dmb-encre);
}
.contact-grid a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--border-soft);
  transition: color .18s ease, border-color .18s ease;
}
.contact-grid a:hover {
  color: var(--dmb-brun);
  border-bottom-color: var(--dmb-brun);
}

/* Horaires (home) */
.hours-table {
  margin: 40px 0 0;
  width: 100%;
  max-width: 440px;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 15px;
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-soft);
}
.hours-table th { font-weight: 500; color: var(--dmb-encre); }
.hours-table td { text-align: right; color: var(--dmb-brun-doux); }

/* Top ribbon — pont vers le côté santé (dmb-hormono) */
.top-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--dmb-brun);
  color: rgba(255,255,255,0.86);
  padding: 8px 22px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background-color .18s ease;
}
.top-ribbon:hover { background: var(--dmb-encre); }
.top-ribbon > span:first-child {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 10.5px;
}
.top-ribbon-link {
  color: var(--dmb-beige-2);
  font-weight: 600;
}
@media (max-width: 480px) {
  .top-ribbon { gap: 8px; font-size: 11px; padding: 7px 14px; }
  .top-ribbon > span:first-child { font-size: 9.5px; letter-spacing: 0.18em; }
}

/* Typographie — éviter les mots orphelins sur la home */
.home-hero-headline,
.home-soins h2.lp,
.home-approche h2.lp,
.home-contact h2.lp {
  text-wrap: balance;
}
.home-hero .hero-subtitle,
.home-soins .lead,
.home-approche .lead {
  text-wrap: pretty;
}

/* Home hero — layout 2 colonnes text + form sur desktop */
.home-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 980px) {
  .home-hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
  }
}
.home-hero-grid .home-hero-inner { max-width: none; }

/* Form dans le hero — heading + subtitle */
.home-hero-form-wrap .form-card {
  padding: 28px 24px;
}
@media (min-width: 768px) {
  .home-hero-form-wrap .form-card { padding: 34px 30px; }
}
.form-card-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--dmb-encre);
}
.form-card-title em { font-style: italic; color: var(--dmb-brun); }
.form-card-subtitle {
  margin: 0 0 22px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--dmb-brun-doux);
}

/* Select dans le form (cohérent avec input/textarea) */
.field select {
  font-family: var(--font-body); font-size: 16px;
  color: var(--dmb-encre);
  background: var(--dmb-beige-field);
  border: 1px solid transparent;
  border-bottom: 1px solid var(--dmb-brun-doux);
  padding: 14px 14px;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B5850' stroke-width='1.6'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
  transition: border-color .18s ease, background-color .18s ease;
}
.field select:focus {
  outline: none;
  border-color: var(--dmb-encre);
  background-color: var(--dmb-white);
}
