/* ================================================================
   BEAUTÉ DE PROVENCE — Design System
   Palette extraite du site réel : #E0E0DB / #818260 / #1C1A15
   Fonts : Cormorant Garamond (display) + DM Sans (body)
================================================================ */

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --bg:          #E0E0DB;
  --bg-alt:      #D4D4CE;
  --bg-dark:     #1C1A15;
  --bg-card:     #EAEAE4;

  --olive:       #818260;
  --olive-dark:  #5E5F47;
  --olive-light: #A4A586;
  --olive-bg:    #8F9070;

  --text:        #2A2720;
  --text-mid:    #5A5648;
  --text-muted:  #8A8678;
  --text-light:  #AEAA9E;

  --white:       #F8F7F4;
  --line:        rgba(42, 39, 32, 0.12);
  --line-dark:   rgba(248, 247, 244, 0.12);

  --font-display: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --nav-h: 72px;
  --ease:  cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --t:     0.4s var(--ease);
  --t-slow: 0.8s var(--ease);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.65; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--olive-light); color: var(--bg-dark); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--olive-light); border-radius: 2px; }

/* ── Typography ─────────────────────────────────────────────── */
.d1  { font-family: var(--font-display); font-size: clamp(3.5rem, 8vw, 8rem);  line-height: .95; font-weight: 400; letter-spacing: -.01em; }
.d2  { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 5rem);  line-height: 1;   font-weight: 400; letter-spacing: -.01em; }
.d3  { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3.5rem); line-height: 1.05; font-weight: 400; }
.h1  { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.75rem); line-height: 1.1;  font-weight: 400; }
.h2  { font-family: var(--font-display); font-size: clamp(1.4rem, 2vw, 2rem);  line-height: 1.15; font-weight: 400; }
.h3  { font-family: var(--font-display); font-size: clamp(1.2rem, 1.5vw, 1.5rem); line-height: 1.2; font-weight: 400; }
.body-lg  { font-size: 1.125rem; line-height: 1.7; }
.body     { font-size: 1rem;     line-height: 1.65; }
.body-sm  { font-size: .875rem;  line-height: 1.6; }
.caption  { font-size: .75rem;   line-height: 1.5; letter-spacing: .08em; text-transform: uppercase; }
em, i { font-style: italic; }

/* ── Layout ─────────────────────────────────────────────────── */
.wrap  { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 5rem); }
.wrap--narrow { max-width: 800px; }
.section { padding: clamp(5rem, 10vw, 10rem) 0; overflow: hidden; }
.section--sm { padding: clamp(3rem, 6vw, 6rem) 0; overflow: hidden; }

/* ── Utilities ──────────────────────────────────────────────── */
.text-olive  { color: var(--olive); }
.text-muted  { color: var(--text-muted); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }
.italic      { font-style: italic; }
.fw-400      { font-weight: 400; }

/* ── Scroll reveal ──────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
[data-reveal="fade"] { transform: none; }
[data-reveal="left"]  { transform: translateX(-20px); }
[data-reveal="right"] { transform: translateX(20px); }
@media (max-width: 768px) {
  [data-reveal="left"], [data-reveal="right"] { transform: translateY(20px); }
}
[data-reveal].in { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }
[data-delay="4"] { transition-delay: .4s; }
[data-delay="5"] { transition-delay: .5s; }
[data-delay="6"] { transition-delay: .6s; }

/* ================================================================
   NAVIGATION
================================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  transition: background var(--t), backdrop-filter var(--t), border-color var(--t);
  border-bottom: 1px solid transparent;
}
.nav.solid {
  background: rgba(224, 224, 219, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--line);
}
.nav--dark.solid {
  background: rgba(28, 26, 21, 0.92);
  border-color: var(--line-dark);
}
.nav__inner {
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: clamp(1rem, 2vw, 2rem);
}
.nav__logo {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 400;
  color: var(--white); letter-spacing: .01em; white-space: nowrap;
  transition: color var(--t);
}
.nav.solid:not(.nav--dark) .nav__logo { color: var(--text); }
.nav__links { display: none; gap: clamp(0.7rem, 1.5vw, 2.25rem); align-items: center; }
@media (min-width: 1024px) { .nav__links { display: flex; } }
.nav__link {
  font-size: .8125rem; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(248,247,244,.7); transition: color var(--t); white-space: nowrap;
}
.nav.solid:not(.nav--dark) .nav__link { color: var(--text-mid); }
.nav__link:hover,
.nav__link.active { color: var(--white); }
.nav.solid:not(.nav--dark) .nav__link:hover,
.nav.solid:not(.nav--dark) .nav__link.active { color: var(--text); }
.nav__cta {
  font-size: .8125rem; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(248,247,244,.7); border: 1px solid rgba(248,247,244,.3);
  padding: .5rem 1.25rem; border-radius: 100px;
  transition: all var(--t); white-space: nowrap;
  display: none;
}
@media (min-width: 768px) { .nav__cta { display: block; } }
.nav__cta:hover { color: var(--white); border-color: rgba(248,247,244,.8); }
.nav.solid:not(.nav--dark) .nav__cta { color: var(--text); border-color: rgba(42,39,32,.3); }
.nav.solid:not(.nav--dark) .nav__cta:hover { border-color: var(--text); }

/* Burger */
.nav__burger { display: flex; flex-direction: column; gap: 5px; padding: 4px; }
@media (min-width: 1024px) { .nav__burger { display: none; } }
.nav__burger span {
  width: 22px; height: 1.5px; background: rgba(248,247,244,.8);
  transition: all var(--t); transform-origin: center; display: block;
}
.nav.solid:not(.nav--dark) .nav__burger span { background: var(--text); }
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay */
.nav__mobile {
  position: fixed; inset: 0; background: var(--bg-dark); z-index: 99;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2.5rem; opacity: 0; pointer-events: none; transition: opacity var(--t);
}
.nav__mobile.open { opacity: 1; pointer-events: all; }
.nav__mobile a {
  font-family: var(--font-display); font-size: clamp(1.25rem, 5vw, 2.5rem);
  color: rgba(248,247,244,.6); transition: color var(--t);
}
.nav__mobile a:hover { color: var(--white); }

/* ================================================================
   HERO
================================================================ */
.hero {
  position: relative; min-height: 100svh; display: flex;
  align-items: center; justify-content: center; overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0; z-index: 0;
}
.hero__media img, .hero__media video {
  width: 100%; height: 100%; object-fit: cover; object-position: center 25%;
  transition: transform 8s ease-out;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 85% at 50% 22%, rgba(0,0,0,0) 40%, rgba(0,0,0,.30) 100%),
    linear-gradient(to bottom, rgba(12,10,8,.52) 0%, rgba(12,10,8,.58) 55%, rgba(12,10,8,.72) 100%);
}
.hero__content {
  position: relative; z-index: 2; text-align: center;
  color: var(--white); padding: calc(var(--nav-h) + 2rem) 1.5rem 4rem;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
  max-width: 900px;
}
.hero__eyebrow {
  font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(248,247,244,.55); display: flex; align-items: center; gap: .75rem;
}
.hero__eyebrow::before, .hero__eyebrow::after {
  content: ''; flex: 0 0 24px; height: 1px; background: rgba(248,247,244,.3);
}
.hero__title { font-family: var(--font-display); font-size: clamp(2.8rem, 9vw, 9rem); font-weight: 400; line-height: .92; letter-spacing: -.02em; overflow-wrap: break-word; }
.hero__sub { font-size: 1rem; color: rgba(248,247,244,.65); letter-spacing: .05em; max-width: 380px; }
.hero__pill {
  margin-top: .5rem;
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid rgba(248,247,244,.35); color: rgba(248,247,244,.85);
  padding: .75rem 2rem; border-radius: 100px; font-size: .8125rem;
  letter-spacing: .12em; text-transform: uppercase;
  transition: all var(--t);
}
.hero__pill:hover { background: rgba(248,247,244,.1); border-color: rgba(248,247,244,.7); color: var(--white); }
.hero__scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(248,247,244,.4);
}
.hero__scroll-line {
  width: 1px; height: 48px; background: rgba(248,247,244,.2);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .2; } 50% { opacity: .8; }
}

/* ================================================================
   BUTTONS
================================================================ */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 2rem; border-radius: 100px;
  font-family: var(--font-body); font-size: .8125rem;
  letter-spacing: .1em; text-transform: uppercase;
  transition: all var(--t); cursor: pointer; white-space: nowrap;
  font-weight: 400;
}
.btn--outline {
  border: 1px solid rgba(42,39,32,.3); color: var(--text);
  background: transparent;
}
.btn--outline:hover { border-color: var(--text); background: var(--text); color: var(--white); }
.btn--olive {
  background: var(--olive); color: var(--white); border: 1px solid var(--olive);
}
.btn--olive:hover { background: var(--olive-dark); border-color: var(--olive-dark); }
.btn--ghost-dark {
  border: 1px solid rgba(248,247,244,.4); color: var(--white); background: transparent;
}
.btn--ghost-dark:hover { background: rgba(248,247,244,.1); border-color: rgba(248,247,244,.5); }
.btn--lg { padding: 1rem 2.5rem; font-size: .875rem; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ================================================================
   SECTION HEADER
================================================================ */
.section-header { margin-bottom: clamp(3rem, 6vw, 5rem); }
.section-header--center { text-align: center; }
.section-eyebrow {
  display: inline-block; font-size: .75rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--olive); margin-bottom: 1.25rem;
}
.section-title { color: var(--text); }
.section-sub {
  margin-top: 1.25rem; color: var(--text-muted); font-size: 1.0625rem; line-height: 1.7;
  max-width: 520px;
}
.section-header--center .section-sub { margin-left: auto; margin-right: auto; }
.section-header .d2 em { color: var(--olive); font-style: italic; }

/* ================================================================
   GRID
================================================================ */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
.grid-tools { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-tools { grid-template-columns: 1fr 1fr; } }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 600px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-asym { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
@media (min-width: 900px) { .grid-asym { grid-template-columns: 5fr 4fr; } }
.grid-asym.reverse > *:first-child { order: 2; }
.grid-asym.reverse > *:last-child { order: 1; }
@media (max-width: 899px) { .grid-asym.reverse > * { order: unset; } }
/* Empilé + centré (horaires) — une sous-section sous l'autre, même en desktop */
.grid-asym--stack { grid-template-columns: 1fr !important; max-width: 640px; margin-inline: auto; text-align: center; gap: clamp(2.5rem, 5vw, 3.5rem); }
.grid-asym--stack > div { display: flex; flex-direction: column; align-items: center; width: 100%; }
.grid-asym--stack .contact-card { width: 100%; }

/* ================================================================
   CARDS
================================================================ */
/* ── Section Soins : fond vert sauge (rappel des pages Tarifs) ── */
.section--soins { background: #CACFAF; }
.soins-list {
  display: flex; flex-direction: column; gap: 1.25rem;
  max-width: 940px; margin: 0 auto;
}
.card-soin {
  display: flex; flex-direction: column; gap: 1.1rem;
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.75rem);
  background: var(--white);
  border: 1px solid rgba(94, 95, 71, .14);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(42, 39, 32, .04);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  cursor: default; position: relative; isolation: isolate; overflow: hidden;
}
.card-soin::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--olive); z-index: 1;
  transform: scaleY(0); transform-origin: top; transition: transform var(--t);
}
.card-soin:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -18px rgba(42, 39, 32, .28);
  border-color: rgba(94, 95, 71, .28);
}
.card-soin:hover::before { transform: scaleY(1); }
.section--soins .section-eyebrow { color: var(--olive-dark); }
.section--soins .section-sub { color: rgba(42, 39, 32, .72); }
.section--soins .section-header .d2 em { color: var(--olive-dark); }
.card-soin__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.card-soin__num { font-family: var(--font-display); font-size: 1.25rem; font-style: italic; color: var(--olive); line-height: 1; }
.card-soin__title { font-family: var(--font-display); font-size: clamp(1.5rem, 2.4vw, 2.125rem); font-weight: 400; letter-spacing: .01em; transition: color var(--t); }
.card-soin:hover .card-soin__title { color: var(--olive-dark); }
.card-soin__desc { font-size: .9375rem; color: var(--text-muted); line-height: 1.7; max-width: 480px; }
.card-soin__meta { display: flex; align-items: center; gap: 1.5rem; }
.card-soin__price { font-family: var(--font-display); font-size: 1.25rem; color: var(--text); }
.card-soin__duration { font-size: .8125rem; letter-spacing: .05em; color: var(--text-muted); }
.card-soin__link {
  align-self: flex-start; font-size: .8125rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--olive); display: flex; align-items: center; gap: .5rem;
  transition: gap var(--t);
}
.card-soin__link:hover { gap: 1rem; }
.card-soin__link svg { width: 16px; height: 16px; transition: transform var(--t); }

/* ── Photo card ── */
.card-photo {
  position: relative; overflow: hidden; border-radius: 4px;
  background: var(--bg-alt);
}
.card-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.card-photo:hover img { transform: scale(1.04); }
.card-photo__label {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  font-family: var(--font-display); font-size: 1.125rem;
  color: var(--white); background: rgba(28,26,21,.5);
  backdrop-filter: blur(8px); padding: .5rem 1rem; border-radius: 100px;
  font-weight: 400;
}

/* ================================================================
   REVIEW CARD
================================================================ */
.review {
  padding: 2.5rem; background: var(--bg-card); border-radius: 4px;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.review__stars { font-size: .75rem; color: var(--olive); letter-spacing: .2em; }
.review__text { font-family: var(--font-display); font-size: 1.25rem; line-height: 1.55; font-weight: 400; font-style: italic; }
.review__author { font-size: .8125rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); }
.review__service { font-size: .75rem; color: var(--olive-light); letter-spacing: .05em; margin-top: .25rem; }

/* ── Carrousel avis (défilement horizontal + flèches) ── */
.review-carousel { position: relative; }
.review-track {
  display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: .25rem 0;
  scrollbar-width: none; -ms-overflow-style: none;
}
.review-track::-webkit-scrollbar { display: none; }
.review-track .review {
  flex: 0 0 clamp(280px, 78vw, 400px);
  scroll-snap-align: start;
  justify-content: center;
}
.review-track .review__text { font-size: 1.0625rem; line-height: 1.6; }
.review-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--white); color: var(--text);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2;
  box-shadow: 0 6px 20px -10px rgba(42,39,32,.4);
  transition: background var(--t), color var(--t), border-color var(--t), opacity var(--t);
}
.review-nav:hover { background: var(--olive); color: var(--white); border-color: var(--olive); }
.review-nav svg { width: 20px; height: 20px; }
.review-nav--prev { left: -20px; }
.review-nav--next { right: -20px; }
.review-nav:disabled { opacity: .3; cursor: default; box-shadow: none; }
.review-nav:disabled:hover { background: var(--white); color: var(--text); border-color: var(--line); }
@media (max-width: 720px) {
  /* Flèches sous le carrousel pour libérer la zone de swipe */
  .review-carousel { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .review-track { order: 0; flex: 1 1 100%; }
  .review-nav {
    position: static; transform: none; order: 1;
    width: 44px; height: 44px; margin-top: 1.25rem;
  }
}

/* ================================================================
   SIMULATOR
================================================================ */
.modal-bg {
  position: fixed; inset: 0; background: rgba(28,26,21,.6);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  z-index: 200; display: flex; align-items: center; justify-content: center;
  padding: 1.5rem; opacity: 0; pointer-events: none; transition: opacity var(--t);
}
.modal-bg.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--bg); max-width: 580px; width: 100%;
  max-height: 90svh; overflow-y: auto; border-radius: 8px;
  transform: translateY(20px) scale(.98);
  transition: transform var(--t);
  scrollbar-width: thin;
}
.modal-bg.open .modal { transform: none; }
.modal__head {
  position: sticky; top: 0; background: var(--bg); z-index: 1;
  padding: 1.75rem 2rem 1.25rem;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: flex-start; justify-content: space-between;
}
.modal__close {
  width: 32px; height: 32px; border-radius: 50%; background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--text-muted); transition: all var(--t);
}
.modal__close:hover { background: var(--olive); color: var(--white); transform: rotate(90deg); }
.modal__body { padding: 2rem; }

/* Simulator steps */
.sim-progress { height: 2px; background: var(--line); margin-bottom: 2rem; }
.sim-progress__fill { height: 100%; background: var(--olive); transition: width .5s var(--ease); }
.sim-q { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1.75rem; font-weight: 400; }
.sim-options { display: flex; flex-direction: column; gap: .75rem; }
.sim-opt {
  display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem;
  border: 1px solid var(--line); border-radius: 4px; cursor: pointer;
  font-size: .9375rem; color: var(--text); background: var(--bg);
  transition: all var(--t); text-align: left;
}
.sim-opt:hover { border-color: var(--olive); background: var(--bg-card); }
.sim-opt.selected { border-color: var(--olive); background: rgba(129,130,96,.08); color: var(--olive-dark); }
.sim-opt__icon { width: 36px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--olive); }
.sim-opt__icon svg { width: 22px; height: 22px; }
.sim-opt.selected .sim-opt__icon { color: var(--olive-dark); }
.sim-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 2rem; }

.sim-result {
  text-align: center; padding: 1rem 0;
  animation: fadeUp .5s var(--ease) both;
}
.sim-result__icon { margin-bottom: 1.25rem; color: var(--olive); display: flex; justify-content: center; }
.sim-result__icon svg { width: 44px; height: 44px; }
.sim-result__type { font-family: var(--font-display); font-size: 1.75rem; margin-bottom: .75rem; }
.sim-result__desc { color: var(--text-muted); line-height: 1.7; margin-bottom: 1.75rem; }
.sim-result__tags { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 1.75rem; }
.sim-tag {
  display: inline-flex; align-items: center; gap: .4em;
  font-size: .75rem; letter-spacing: .06em; text-transform: uppercase;
  border: 1px solid var(--line); padding: .375rem .875rem; border-radius: 100px;
  color: var(--text-mid);
}
.sim-tag__ic { display: inline-flex; color: var(--olive); }
.sim-tag__ic svg { width: 14px; height: 14px; }
.sim-result__actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

/* ================================================================
   PAGE HERO (inner pages)
================================================================ */
.page-hero {
  padding: calc(var(--nav-h) + clamp(3rem, 6vw, 5rem)) 0 clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--line);
}
.page-hero__label {
  font-size: .75rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--olive); display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem;
}
.page-hero__label::before { content: ''; width: 32px; height: 1px; background: var(--olive); }
.page-hero__breadcrumb {
  font-size: .75rem; letter-spacing: .08em; color: var(--text-muted);
  display: flex; gap: .5rem; margin-bottom: 1.25rem;
}
.page-hero__breadcrumb a { color: var(--olive); }
.page-hero__breadcrumb span { opacity: .4; }

/* ================================================================
   TARIF TABLE
================================================================ */
.tarif-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.125rem 0; border-bottom: 1px solid var(--line);
  gap: 1rem;
}
.tarif-row:first-child { border-top: 1px solid var(--line); }
.tarif-name { font-size: .9375rem; color: var(--text); }
.tarif-meta { display: flex; align-items: center; gap: 1.5rem; flex-shrink: 0; }
.tarif-dur  { font-size: .8125rem; color: var(--text-muted); }
.tarif-price { font-family: var(--font-display); font-size: 1.125rem; color: var(--text); }

/* ================================================================
   OLIV' SECTION
================================================================ */
.oliv-section {
  background: var(--olive-bg); color: var(--white);
  position: relative; overflow: hidden;
}
.oliv-section::before {
  content: "OLIV'";
  position: absolute; right: -2rem; bottom: -3rem;
  font-family: var(--font-display); font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 400; color: rgba(255,255,255,.05); line-height: 1;
  pointer-events: none; white-space: nowrap;
}

/* ================================================================
   CALENDAR
================================================================ */
.gcal-wrap {
  border: 1px solid var(--line); border-radius: 4px; overflow: hidden;
}
.gcal-wrap iframe { display: block; width: 100%; min-height: 540px; border: 0; }
.gcal-placeholder {
  min-height: 400px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.5rem;
  padding: 3rem; text-align: center; background: var(--bg-card);
}
.gcal-pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--olive);
  animation: pulse 2s ease-in-out infinite; flex-shrink: 0;
}
@keyframes pulse { 0%,100%{opacity:.3;transform:scale(1)} 50%{opacity:1;transform:scale(1.3)} }

/* ================================================================
   CONTACT CARD (index.html — horaires)
================================================================ */
.contact-card {
  display: grid; grid-template-columns: 1fr;
  border: 1px solid var(--line); border-radius: 4px; overflow: hidden;
}
@media (min-width: 640px) { .contact-card { grid-template-columns: repeat(3, 1fr); } }
.contact-card__item {
  padding: 1.5rem; border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: .375rem;
}
@media (min-width: 640px) {
  .contact-card__item { border-bottom: none; border-right: 1px solid var(--line); }
  .contact-card__item:last-child { border-right: none; }
}
.contact-card__label { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--olive); }
.contact-card__val { font-family: var(--font-display); font-size: 1.125rem; color: var(--text); }


/* ================================================================
   FOOTER
================================================================ */
.footer {
  background: var(--bg-dark); color: rgba(248,247,244,.45);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}
.footer__grid {
  display: grid; grid-template-columns: 1fr;
  gap: 2.5rem; margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer__brand { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); margin-bottom: .75rem; }
.footer__desc { font-size: .875rem; line-height: 1.7; max-width: 240px; }
.footer__col-title { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(248,247,244,.25); margin-bottom: 1rem; }
.footer__links { display: flex; flex-direction: column; gap: .625rem; }
.footer__link { font-size: .875rem; transition: color var(--t); }
.footer__link:hover { color: var(--white); }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between;
  margin-top: 3rem; padding-top: 2rem; padding-bottom: .5rem;
  border-top: 1px solid var(--line-dark);
  font-size: .8125rem;
}
/* Pages intérieures : footer__bottom hors du .wrap → même gabarit horizontal */
.footer > .footer__bottom {
  width: 100%; max-width: 1400px; margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 5rem);
}
.footer__bottom a { transition: color var(--t); }
.footer__bottom a:hover { color: var(--white); }
.footer__credit { color: var(--text-muted); }
.footer__credit a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }

/* ================================================================
   STICKY CTA / BACK TO TOP
================================================================ */
.back-top {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 90;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--bg-dark); color: var(--white); border: 1px solid var(--line-dark);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(8px); transition: all var(--t); pointer-events: none;
}
.back-top.show { opacity: 1; transform: none; pointer-events: all; }
.back-top:hover { background: var(--olive); border-color: var(--olive); }

/* ================================================================
   PRODUCT CARD (boutique)
================================================================ */
.prod-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: 4px; overflow: hidden;
  transition: box-shadow var(--t), transform var(--t);
}
.prod-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(28,26,21,.08); }
.prod-card__img {
  aspect-ratio: 1; background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; overflow: hidden;
}
.prod-card__img img { width: 100%; height: 100%; object-fit: cover; }
.prod-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.prod-card__cat { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--olive); }
.prod-card__name { font-family: var(--font-display); font-size: 1.25rem; }
.prod-card__desc { font-size: .875rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.prod-card__foot {
  padding: 1rem 1.5rem; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
}
.prod-card__price { font-family: var(--font-display); font-size: 1.25rem; }
.prod-card__vol { font-size: .8125rem; color: var(--text-muted); }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
}
@media (min-width: 768px) {
  .hide-desktop { display: none !important; }
}

/* ================================================================
   MOBILE FIXES (≤ 639px)
================================================================ */
@media (max-width: 639px) {

  /* ── Sections : padding réduit */
  .section        { padding: clamp(3rem, 10vw, 4rem) 0; }
  .section--sm    { padding: clamp(2rem, 7vw, 3rem) 0; }
  .page-hero      { padding-top: calc(var(--nav-h) + 2rem); padding-bottom: 2rem; }
  .page-hero__sub { font-size: 1rem; }

  /* ── Page hero title */
  .d1 { font-size: clamp(2.8rem, 12vw, 4rem); }
  .d2 { font-size: clamp(2rem, 8vw, 3rem); }
  .d3 { font-size: clamp(1.5rem, 6vw, 2.5rem); }

  /* ── Hero */
  .hero__title { font-size: clamp(2.4rem, 11vw, 9rem); }
  .hero__content { padding-left: 1.25rem; padding-right: 1.25rem; }
  .hero__eyebrow::before, .hero__eyebrow::after { display: none; }
  .hero__pill { padding: .625rem 1.25rem; font-size: .75rem; letter-spacing: .08em; max-width: 100%; text-align: center; }

  /* ── Split : stack + images carrées immersives + centrées */
  .split { gap: 2rem; }
  .img-frame, .card-photo { aspect-ratio: 1 / 1 !important; max-height: none; width: 100%; margin-left: auto; margin-right: auto; }

  /* ── Cartes soins : ligne du bas qui s'aère au lieu de couper le prix */
  .card-soin > div:last-of-type { flex-wrap: wrap; gap: .75rem 1rem; }
  .card-soin__meta { flex: 1 1 auto; }
  .card-soin__price { white-space: nowrap; }
  .card-soin__link { margin-left: auto; }

  /* ── Tarif rows : prix à la ligne si long label */
  .tarif-row { flex-wrap: wrap; gap: .5rem; }
  .tarif-row__price { margin-left: auto; }

  /* ── Benefit cards : 1 col, padding réduit */
  .benefit-card { padding: 1.5rem; }

  /* ── Contact strip (pages internes) */
  .contact-strip { padding: 2.5rem 0; }
  .contact-strip__inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .contact-strip__actions { width: 100%; display: flex; flex-direction: column; gap: .75rem; }
  .contact-strip__actions .btn { width: 100%; justify-content: center; }

  /* ── RDV contact cards */
  .rdv-contact__card { padding: 1.5rem; }

  /* ── Product grid : 1 col sur très petits écrans */
  .product-grid { grid-template-columns: 1fr; }

  /* ── Sim launchers */
  .sim-launcher { padding: 1.5rem; }

  /* ── Footer inner */
  .footer__inner { gap: 2rem; }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
    font-size: .75rem;
    padding-bottom: 5rem; /* espace pour back-top */
  }

  /* ── Back-top : plus petit, plus discret */
  .back-top { width: 38px; height: 38px; bottom: 1.25rem; right: 1.25rem; }

  /* ── Boutons full-width dans les sections centrées */
  .section [style*="text-align:center"] .btn,
  .section [style*="text-align: center"] .btn { min-width: 0; }

  /* ── Calendrier placeholder padding */
  .calendar-placeholder { padding: 2rem 1.5rem; }
  .calendar-placeholder__inner { max-width: 100%; }
}

/* ================================================================
   INNER PAGES — EXTRA COMPONENTS
================================================================ */

/* Section backgrounds */
.section--alt { background: var(--bg-alt); }
.section--olive { background: #CACFAF; }
.section--olive-dark { background: var(--bg-dark); color: var(--white); }

/* Eyebrow label */
.eyebrow {
  display: inline-block; font-size: .75rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--olive); margin-bottom: 1rem;
}

/* Badge « certifiée » (experte facialiste) */
.cert-badge {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .5rem .9rem; margin-bottom: 1.25rem;
  border: 1px solid color-mix(in srgb, var(--olive) 35%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--olive) 7%, transparent);
  color: var(--olive);
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 500;
}
.cert-badge__icon { width: 1.15rem; height: 1.15rem; flex: 0 0 auto; }

/* Section head block */
.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .d2 { margin-top: .5rem; }
.section-head__sub {
  margin-top: 1rem; color: var(--text-muted); font-size: 1rem;
  max-width: 560px; line-height: 1.7;
}
.section-head--center .section-head__sub { margin-inline: auto; }

/* Page hero additions */
.page-hero__inner { }
.page-hero__sub {
  margin-top: 1.25rem; font-size: 1.0625rem; color: var(--text-muted);
  max-width: 580px; line-height: 1.7;
}
.breadcrumb {
  font-size: .75rem; letter-spacing: .06em; color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--olive); }

/* Split intro layout — texte centré puis image centrée au milieu de la page */
.split {
  display: flex; flex-direction: column; align-items: center;
  gap: clamp(2rem, 4vw, 3.25rem); text-align: center;
  max-width: 760px; margin-inline: auto;
}
.split__text { display: flex; flex-direction: column; align-items: center; order: 1; }
.split__text .body { max-width: 62ch; }
.split__text .d2 { margin: .5rem 0 1.25rem; }
.split__visual { order: 2; width: 100%; max-width: 480px; }
.split--reverse .split__visual { order: 2; }
.img-frame { border-radius: 4px; overflow: hidden; background: var(--bg-alt); margin-inline: auto; }

/* Tarif table & row sub-elements */
.tarif-table { }
.tarif-row__info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: .25rem; }
.tarif-row__name { font-size: .9375rem; color: var(--text); }
.tarif-row__detail { font-size: .8125rem; color: var(--text-muted); }
.tarif-row__price {
  font-family: var(--font-display); font-size: 1.125rem; color: var(--text);
  white-space: nowrap; flex-shrink: 0;
}

/* Benefit cards (4-col grid) */
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 600px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.benefit-card {
  padding: 2rem; background: var(--bg-card); border-radius: 4px;
}
.benefit-card__num {
  font-family: var(--font-display); font-size: .875rem; color: var(--olive); margin-bottom: 1rem;
}
.benefit-card__title {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; margin-bottom: .625rem;
}
.benefit-card__desc { font-size: .875rem; color: var(--text-muted); line-height: 1.65; }

/* Contact strip — CTA version (inner pages) */
.contact-strip { background: var(--bg-dark); padding: clamp(3rem, 6vw, 4rem) 0; }
.contact-strip__inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.contact-strip__inner .d3 { color: var(--white); }
.contact-strip__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Footer — inner pages variant */
.footer__inner {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .footer__inner { grid-template-columns: 2fr 1fr 1fr; } }
.footer__logo {
  font-family: var(--font-display); font-size: 1.375rem; color: var(--white); margin-bottom: .5rem;
}
.footer__tagline { font-size: .875rem; line-height: 1.6; }
.footer__nav { display: flex; flex-direction: column; gap: .5rem; }
.footer__nav a { font-size: .875rem; transition: color var(--t); }
.footer__nav a:hover { color: var(--white); }
.footer__contact { font-size: .875rem; line-height: 1.7; display: flex; flex-direction: column; gap: .375rem; }
.footer__contact a { transition: color var(--t); }
.footer__contact a:hover { color: var(--white); }

/* Product grid & cards */
.product-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 600px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
.product-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: 4px; overflow: hidden;
  transition: box-shadow var(--t), transform var(--t);
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(28,26,21,.08); }
.product-card__img {
  aspect-ratio: 1; background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
}
.product-card__body {
  padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: .5rem;
}
.product-card__cat { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--olive); }
.product-card__name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; }
.product-card__desc { font-size: .875rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.product-card__price { font-family: var(--font-display); font-size: 1.1rem; margin-top: .75rem; color: var(--text); }

/* OLIV' badges */
.oliv-badges { display: flex; gap: .75rem; flex-wrap: wrap; }
.oliv-badge {
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  border: 1px solid rgba(248,247,244,.25); color: rgba(248,247,244,.65);
  padding: .375rem .875rem; border-radius: 100px;
}

/* Offre diagnostic (page OLIV') */
.oliv-offer {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  margin-top: 2rem; padding: 1.25rem 1.5rem;
  border: 1px solid var(--olive); border-radius: 6px; background: var(--bg-card);
}
.oliv-offer__label { font-family: var(--font-display); font-size: 1.25rem; line-height: 1.2; }
.oliv-offer__meta { font-size: .85rem; color: var(--text-muted); margin-top: .25rem; }
.oliv-offer__price {
  font-family: var(--font-display); font-size: 2rem; line-height: 1;
  color: var(--olive); white-space: nowrap;
}

/* Simulator launchers (RDV page) */
.sim-launchers { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .sim-launchers { grid-template-columns: repeat(2, 1fr); } }
.sim-launcher {
  display: flex; flex-direction: column; align-items: flex-start; gap: .625rem;
  padding: 2rem; border: 1px solid var(--line); border-radius: 4px;
  background: var(--bg-card); transition: all var(--t); cursor: pointer; text-align: left;
}
.sim-launcher:hover { border-color: var(--olive); background: var(--bg); transform: translateY(-2px); }
.sim-launcher__icon { color: var(--olive); }
.sim-launcher__icon svg { width: 2rem; height: 2rem; display: block; }
.sim-launcher__title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; }
.sim-launcher__sub { font-size: .875rem; color: var(--text-muted); }

/* Calendar embed zone */
.calendar-wrap { border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.calendar-wrap iframe { display: block; width: 100%; min-height: 600px; border: 0; }
.calendar-placeholder { min-height: 360px; background: var(--bg-card); display: flex; align-items: center; justify-content: center; padding: 3rem; }
.calendar-placeholder__inner { max-width: 480px; text-align: center; }
.calendar-placeholder__icon { font-size: 2.5rem; margin-bottom: 1rem; }
.calendar-placeholder__title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: .75rem; }
.calendar-placeholder__desc { font-size: .9375rem; color: var(--text-muted); margin-bottom: 1.75rem; line-height: 1.65; }
.calendar-placeholder__steps { text-align: left; display: flex; flex-direction: column; gap: .875rem; margin-bottom: 1.75rem; }
.calendar-step { display: flex; gap: .75rem; align-items: flex-start; font-size: .875rem; color: var(--text-muted); line-height: 1.55; }
.calendar-step__num {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--olive); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: .7rem;
}
.calendar-step code { font-size: .8em; background: var(--bg-alt); padding: .1em .4em; border-radius: 3px; font-family: monospace; }
.calendar-placeholder__note { font-size: .8125rem; color: var(--olive); }

/* RDV contact cards */
.rdv-contact { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .rdv-contact { grid-template-columns: repeat(3, 1fr); } }
.rdv-contact__card {
  padding: 2rem; background: var(--bg-card); border-radius: 4px;
  display: flex; flex-direction: column; gap: .625rem;
}
.rdv-contact__icon { margin-bottom: .25rem; color: var(--olive); }
.rdv-contact__icon svg { width: 1.5rem; height: 1.5rem; display: block; }
.rdv-contact__title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; }
.rdv-contact__info { font-size: 1rem; color: var(--text); line-height: 1.6; }
.rdv-contact__info a { color: var(--olive); }
.rdv-contact__sub { font-size: .8125rem; color: var(--text-muted); }
.rdv-horaires { margin-top: .5rem; }
.rdv-horaires .tarif-row { padding: .625rem 0; }

/* ================================================================
   BOOKING — module de réservation en ligne (style Planity, noir & blanc)
================================================================ */
.booking {
  max-width: 900px; margin: 0 auto;
  /* Palette locale monochrome — indépendante des tokens olive du site */
  --bk-ink: #111111;
  --bk-ink-soft: #3a3a3a;
  --bk-muted: #8c8c8c;
  --bk-line: #e6e6e6;
  --bk-line-strong: #d0d0d0;
  --bk-surface: #ffffff;
  --bk-hover: #f6f6f5;
  --bk-fill: #111111;
  --bk-radius: 12px;
}
.bk {
  background: var(--bk-surface); border: 1px solid var(--bk-line);
  border-radius: var(--bk-radius); overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,.03), 0 18px 50px rgba(0,0,0,.06);
  font-family: var(--font-body); color: var(--bk-ink);
}
.bk__fallback { padding: 2.5rem; text-align: center; color: var(--bk-muted); }
.bk__fallback a { color: var(--bk-ink); text-decoration: underline; }

/* Barre d'étapes */
.bk__steps {
  display: flex; gap: .25rem; padding: 1.1rem clamp(1rem, 3vw, 1.75rem);
  border-bottom: 1px solid var(--bk-line); background: var(--bk-surface);
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.bk__step {
  display: flex; align-items: center; gap: .55rem; flex: 1 1 auto;
  min-width: max-content; font-size: .8125rem; color: var(--bk-muted);
  letter-spacing: .01em; white-space: nowrap; font-weight: 500;
}
.bk__step-no {
  flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center; font-size: .75rem; font-weight: 600;
  background: var(--bk-surface); color: var(--bk-muted);
  border: 1px solid var(--bk-line-strong); transition: all var(--t);
}
.bk__step-no svg { width: 14px; height: 14px; }
.bk__done-icon svg { width: 30px; height: 30px; }
.bk__step.is-active { color: var(--bk-ink); }
.bk__step.is-active .bk__step-no { background: var(--bk-ink); color: #fff; border-color: var(--bk-ink); }
.bk__step.is-done .bk__step-no { background: var(--bk-ink); color: #fff; border-color: var(--bk-ink); }
@media (max-width: 560px) { .bk__step-lbl { display: none; } .bk__step { flex: 0 0 auto; } }

/* Corps */
.bk__body { padding: clamp(1.25rem, 3vw, 2rem); max-height: 62vh; overflow-y: auto; }
.bk__panel { animation: bkFade .35s var(--ease-out); }
@keyframes bkFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* Étape 1 — Prestations groupées par catégorie */
.bk__cat { margin-bottom: 1.75rem; }
.bk__cat:last-child { margin-bottom: 0; }
.bk__cat-title {
  font-family: var(--font-body); font-size: .8rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--bk-muted);
  margin-bottom: .25rem;
}
.bk__service {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  width: 100%; text-align: left; padding: 1.1rem .25rem;
  background: transparent; border: none;
  border-bottom: 1px solid var(--bk-line);
  transition: background var(--t);
}
.bk__service:hover { background: var(--bk-hover); }
.bk__service.is-selected .bk__service-name::after {
  content: ""; display: inline-block; width: 7px; height: 7px;
  margin-left: .5rem; border-radius: 50%; background: var(--bk-ink);
  vertical-align: middle;
}
.bk__service-main { display: flex; flex-direction: column; gap: .2rem; min-width: 0; }
.bk__service-name { font-size: .975rem; color: var(--bk-ink); font-weight: 500; }
.bk__service-dur { font-size: .82rem; color: var(--bk-muted); }
.bk__service-desc { font-size: .8rem; color: var(--bk-muted); line-height: 1.45; margin-top: .15rem; max-width: 52ch; }
.bk__service-price { font-size: .9rem; color: var(--bk-ink); font-weight: 600; white-space: nowrap; }
.bk__service-cta {
  flex: 0 0 auto; font-size: .78rem; font-weight: 600; letter-spacing: .02em;
  padding: .5rem 1.15rem; border-radius: 100px;
  border: 1px solid var(--bk-line-strong); background: var(--bk-surface); color: var(--bk-ink);
  transition: all var(--t);
}
.bk__service:hover .bk__service-cta { border-color: var(--bk-ink); background: var(--bk-ink); color: #fff; }
.bk__service-side { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }

/* Étape 2 — Calendrier */
.bk__panel--date { max-width: 460px; margin: 0 auto; }
.bk__cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.1rem; }
.bk__cal-month { font-family: var(--font-body); font-size: 1.05rem; font-weight: 600; text-transform: capitalize; }
.bk__cal-nav {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--bk-line-strong);
  font-size: 1.15rem; color: var(--bk-ink); background: var(--bk-surface);
  display: grid; place-items: center; transition: all var(--t);
}
.bk__cal-nav:hover:not(:disabled) { border-color: var(--bk-ink); background: var(--bk-ink); color: #fff; }
.bk__cal-nav:disabled { opacity: .3; cursor: not-allowed; }
.bk__cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: .35rem; }
.bk__cal-wdays { margin-bottom: .5rem; }
.bk__cal-wday { text-align: center; font-size: .72rem; color: var(--bk-muted); letter-spacing: .04em; text-transform: uppercase; padding: .25rem 0; font-weight: 600; }
.bk__cal-cell {
  aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%;
  font-size: .9rem; color: var(--bk-ink); background: transparent;
  border: 1px solid transparent; transition: all var(--t);
}
.bk__cal-cell.is-empty { background: none; }
.bk__cal-cell:not(.is-disabled):not(.is-empty):hover { border-color: var(--bk-ink); }
.bk__cal-cell.is-selected { background: var(--bk-ink); color: #fff; border-color: var(--bk-ink); }
.bk__cal-cell.is-disabled { color: #cfcfcf; background: none; cursor: not-allowed; }
.bk__hint { margin-top: 1.25rem; text-align: center; font-size: .8rem; color: var(--bk-muted); }

/* Étape 3 — Créneaux */
.bk__time-date { font-family: var(--font-body); font-size: 1.05rem; font-weight: 600; text-transform: capitalize; margin-bottom: 1.4rem; text-align: center; }
.bk__slots-label { font-size: .72rem; letter-spacing: .11em; text-transform: uppercase; color: var(--bk-muted); font-weight: 600; margin: 1.4rem 0 .7rem; }
.bk__slots-label:first-child { margin-top: 0; }
.bk__slots-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: .55rem; }
.bk__slot {
  padding: .7rem .5rem; text-align: center; font-size: .9rem; font-weight: 500; color: var(--bk-ink);
  background: var(--bk-surface); border: 1px solid var(--bk-line-strong); border-radius: 8px;
  transition: all var(--t);
}
.bk__slot:hover { border-color: var(--bk-ink); }
.bk__slot.is-selected { background: var(--bk-ink); color: #fff; border-color: var(--bk-ink); }
.bk__loading, .bk__empty { text-align: center; color: var(--bk-muted); font-size: .9rem; padding: 1.5rem 0; }
.bk__empty a { color: var(--bk-ink); text-decoration: underline; }
.bk__demo-note { margin-top: 1.4rem; font-size: .75rem; color: var(--bk-muted); text-align: center; }

/* Étape 4 — Coordonnées */
.bk__recap {
  background: var(--bk-hover); border: 1px solid var(--bk-line); border-radius: 8px;
  padding: 1.1rem 1.35rem; margin-bottom: 1.6rem;
}
.bk__recap-row { display: flex; justify-content: space-between; gap: 1rem; padding: .45rem 0; font-size: .9rem; }
.bk__recap-row span { color: var(--bk-muted); }
.bk__recap-row strong { font-weight: 600; text-transform: capitalize; color: var(--bk-ink); }
.bk__recap-row--total { border-top: 1px solid var(--bk-line-strong); margin-top: .3rem; padding-top: .75rem; }
.bk__recap-row--total strong { color: var(--bk-ink); text-transform: none; }
.bk__form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.bk__field { display: flex; flex-direction: column; gap: .4rem; }
.bk__field--full { grid-column: 1 / -1; }
.bk__label { font-size: .78rem; color: var(--bk-ink-soft); letter-spacing: .01em; font-weight: 500; }
.bk__input {
  font-family: var(--font-body); font-size: .95rem; color: var(--bk-ink);
  padding: .8rem .95rem; background: var(--bk-surface);
  border: 1px solid var(--bk-line-strong); border-radius: 8px; transition: border-color var(--t);
}
.bk__input:focus { outline: none; border-color: var(--bk-ink); }
.bk__input::placeholder { color: #b8b8b8; }
textarea.bk__input { resize: vertical; }
.bk__consent { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: .55rem; font-size: .85rem; color: var(--bk-muted); line-height: 1.5; }
.bk__consent input { margin-top: .2rem; accent-color: var(--bk-ink); }
.bk__form-err { grid-column: 1 / -1; color: #c0392b; font-size: .85rem; }
@media (max-width: 560px) { .bk__form { grid-template-columns: 1fr; } }

/* Boutons du module (monochrome, prioritaires sur .btn) */
.bk .btn { border-radius: 100px; font-weight: 600; letter-spacing: .01em; }
.bk .btn--olive { background: var(--bk-ink); color: #fff; border: 1px solid var(--bk-ink); }
.bk .btn--olive:hover { background: #000; border-color: #000; }
.bk .btn--outline { background: var(--bk-surface); color: var(--bk-ink); border: 1px solid var(--bk-line-strong); }
.bk .btn--outline:hover { border-color: var(--bk-ink); }

/* Footer barre */
.bk__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem clamp(1rem, 3vw, 1.75rem); border-top: 1px solid var(--bk-line);
  background: var(--bk-surface);
}
.bk__bar-summary { font-size: .85rem; color: var(--bk-ink-soft); min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; text-transform: capitalize; }
.bk__bar-actions { display: flex; gap: .6rem; flex-shrink: 0; }
.bk__bar .btn { padding: .75rem 1.6rem; }
.bk__next:disabled { opacity: .35; cursor: not-allowed; }
@media (max-width: 680px) {
  .bk__bar { flex-direction: column; align-items: stretch; gap: .75rem; padding: 1rem; }
  .bk__bar-summary { text-align: center; white-space: normal; overflow: visible; }
  .bk__bar-actions { justify-content: stretch; gap: .6rem; }
  .bk__bar-actions .btn {
    flex: 1 1 0; min-width: 0; justify-content: center;
    padding: .85rem 1rem; white-space: normal; line-height: 1.25;
  }
  .bk__back { flex: 0 0 34%; }   /* Retour plus compact, Confirmer plus large */
}

/* Écran final */
.bk__done { text-align: center; padding: 1.5rem 1rem; }
.bk__done-icon {
  width: 64px; height: 64px; margin: 0 auto 1.25rem; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.6rem;
  background: var(--bk-ink); color: #fff;
}
.bk__done-title { font-family: var(--font-body); font-size: 1.5rem; font-weight: 600; margin-bottom: .75rem; color: var(--bk-ink); }
.bk__done-text { color: var(--bk-muted); font-size: .95rem; line-height: 1.7; max-width: 460px; margin: 0 auto 1.75rem; }
.bk__done-text strong { color: var(--bk-ink); font-weight: 600; }
.bk__done-actions { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }

/* Legal content */
.legal-content { max-width: 740px; }
.legal-content h2 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 400;
  margin: 2.5rem 0 1rem;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { font-size: .9375rem; color: var(--text-muted); line-height: 1.75; margin-bottom: .75rem; }
.legal-content ul { padding-left: 1.25rem; list-style: disc; }
.legal-content li { margin-bottom: .375rem; }
.legal-content a { color: var(--olive); }
.legal-content strong { color: var(--text); font-weight: 500; }
.legal-update { margin-top: 2.5rem; font-size: .875rem; color: var(--text-muted); }

/* Ghost button (light on dark bg) */
.btn--ghost {
  border: 1px solid rgba(248,247,244,.3); color: rgba(248,247,244,.85); background: transparent;
}
.btn--ghost:hover { background: rgba(248,247,244,.1); border-color: rgba(248,247,244,.6); color: var(--white); }

/* Modal overlay alias (inner pages use .modal-overlay, index uses .modal-bg) */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(28,26,21,.6);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  z-index: 200; display: flex; align-items: center; justify-content: center;
  padding: 1.5rem; opacity: 0; pointer-events: none; transition: opacity var(--t);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-overlay .modal { transform: translateY(20px) scale(.98); transition: transform var(--t); }
.modal-overlay.open .modal { transform: none; }
.modal__title {
  font-family: var(--font-display); font-size: 1.375rem; font-weight: 400;
  padding: 1.5rem 2rem 1.25rem; border-bottom: 1px solid var(--line);
  position: sticky; top: 0; background: var(--bg); z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
}

/* ── Newsletter ─────────────────────────────────────────────── */
.nl { padding: clamp(3rem, 7vw, 6rem) 0; }
.nl__card {
  background: var(--white); border: 1px solid var(--line); border-radius: 20px;
  padding: clamp(2rem, 5vw, 3.5rem); text-align: center;
  max-width: 720px; margin: 0 auto; box-shadow: 0 20px 60px rgba(42,39,32,.06);
}
.nl__title { margin-bottom: .75rem; }
.nl__title em { color: var(--olive); font-style: italic; }
.nl__sub { color: var(--text-muted); max-width: 460px; margin: 0 auto 1.75rem; line-height: 1.7; }
.nl__row { display: flex; gap: .6rem; flex-wrap: wrap; justify-content: center; }
.nl__input {
  flex: 1 1 200px; min-width: 0; font-family: var(--font-body); font-size: .9375rem;
  background: var(--bg); border: 1px solid var(--line); border-radius: 100px;
  padding: .8rem 1.2rem; color: var(--text); transition: border-color var(--t);
}
.nl__input:focus { outline: none; border-color: var(--olive); }
.nl__row .btn { flex: 0 0 auto; }
.nl__consent {
  display: flex; gap: .6rem; align-items: flex-start; text-align: left;
  font-size: .78rem; color: var(--text-muted); line-height: 1.5;
  max-width: 520px; margin: 1.1rem auto 0;
}
.nl__consent input { margin-top: .15rem; accent-color: var(--olive); width: 16px; height: 16px; flex-shrink: 0; }
.nl__consent a { color: var(--olive); text-decoration: underline; }
.nl__msg { margin-top: 1rem; font-size: .875rem; }
.nl__msg--ok { color: var(--olive); }
.nl__msg--err { color: #a3452f; }
@media (max-width: 520px) {
  .nl__row { flex-direction: column; align-items: stretch; }
  .nl__input { flex: 0 0 auto; width: 100%; border-radius: 12px; padding: .95rem 1.1rem; }
  .nl__row .btn { width: 100%; justify-content: center; }
}
