/* ============================================================
   NOVA HEAD SPA — v4 · Editorial Redesign · Mobile-First
   ============================================================ */

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #3D1F18;
  background: #F8F0EA;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip; /* clip (not hidden) avoids making <body> a scroll container, which broke window.scrollTo */
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --rose:         #875342;  /* text/links — AA on cream 5.6:1, white 6.0:1, card-bg 4.8:1 */
  --rose-light:   #D8A497;  /* accent on dark only — AA on brown-dark 8.2:1 */
  --rose-pale:    #E8C2B8;  /* accent on dark only — AA on brown-dark 10.8:1 */
  --gold:         #C9A062;  /* decorative fills only — not for text (fails AA on cream) */
  --cream:        #F8F0EA;
  --cream-warm:   #F2E4DA;
  --brown:        #3D1F18;
  --brown-dark:   #2C1008;
  --white:        #FEFAF6;
  --text:         #3D1F18;  /* on cream 13.2:1 */
  --text-muted:   #755A4E;  /* on cream 5.60:1 */

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, sans-serif;
  --font-script:  'Great Vibes', cursive;

  /* Typographic scale — Major Third (1.25) · min 12px for decorative labels only */
  --fs-xs:    0.75rem;    /* 12px — labels uppercase décoratifs SEULEMENT */
  --fs-sm:    0.875rem;   /* 14px — petits textes UI, badges */
  --fs-base:  1rem;       /* 16px — corps de texte */
  --fs-md:    1.125rem;   /* 18px — corps large, descriptions */
  --fs-lg:    1.25rem;    /* 20px — sous-titres */
  --fs-xl:    1.5rem;     /* 24px — h3, card titles */
  --fs-2xl:   2rem;       /* 32px — h2 */
  --fs-3xl:   clamp(2rem, 5vw, 3.2rem);  /* h1 sections */
  --fs-hero:  clamp(2.75rem, 9vw, 4.75rem); /* hero title */

  /* Spacing — 8px base grid (with a 4px half-step). Vertical rhythm and
     layout gaps draw from this scale so spacing stays consistent. */
  --space-1:  0.25rem;  /*  4px */
  --space-2:  0.5rem;   /*  8px */
  --space-3:  0.75rem;  /* 12px */
  --space-4:  1rem;     /* 16px */
  --space-6:  1.5rem;   /* 24px */
  --space-8:  2rem;     /* 32px */
  --space-12: 3rem;     /* 48px */
  --space-16: 4rem;     /* 64px */
  --space-20: 5rem;     /* 80px */
  --space-24: 6rem;     /* 96px */
  --space-30: 7.5rem;   /* 120px */
  --space-35: 8.75rem;  /* 140px */

  --max: 1280px;
  --nav-h: 64px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --radius: 16px;
}

/* ── UTILITIES ──────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--space-4); }
.section { padding: var(--space-24) 0; }

.section__label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: var(--space-4);
  display: block;
}
.section__label--light { color: var(--rose-pale); }

.section__title {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.02em;
}
.section__title em { font-style: italic; color: var(--rose); font-weight: 400; }

.section__header { margin-bottom: var(--space-12); text-align: center; }

/* ── PROMO POPUP ───────────────────────────────────────────── */
.promo-popup {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.promo-popup.hidden { display: none; }
.promo-popup__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.promo-popup__card {
  position: relative; z-index: 1;
  background: linear-gradient(160deg, var(--brown-dark) 0%, #4a2518 40%, #5a2e1f 100%);
  border-radius: 20px; padding: 48px 40px; text-align: center;
  max-width: 440px; width: 100%;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.08) inset;
  animation: promoIn 0.5s ease-out;
}
@keyframes promoIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.promo-popup__close {
  position: absolute; top: 16px; right: 16px;
  color: rgba(255,255,255,0.4); font-size: 1.6rem; line-height: 1;
  transition: color 0.2s;
}
.promo-popup__close:hover { color: var(--cream); }
.promo-popup__sparkles {
  color: var(--gold); font-size: 1rem; letter-spacing: 0.5em; margin-bottom: 12px;
}
.promo-popup__eyebrow {
  font-size: var(--fs-xs); font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--rose-pale); margin-bottom: 16px;
}
.promo-popup__title {
  font-family: var(--font-display); font-size: clamp(2.2rem, 8vw, 3rem);
  font-weight: 400; line-height: 1.1; color: var(--cream);
  margin-bottom: 20px;
}
.promo-popup__divider {
  width: 60px; height: 2px; background: var(--gold); margin: 0 auto 24px; border-radius: 2px;
}
.promo-popup__offer {
  font-size: var(--fs-md); color: rgba(255,255,255,0.85); line-height: 1.6; margin-bottom: 8px;
}
.promo-popup__percent {
  font-family: var(--font-display); font-size: clamp(2.5rem, 10vw, 3.5rem);
  font-weight: 400; color: var(--rose-pale); display: block; line-height: 1.1; margin-bottom: 4px;
}
.promo-popup__detail {
  font-size: var(--fs-xs); color: rgba(255,255,255,0.5); margin-bottom: 28px; letter-spacing: 0.03em;
}
.promo-popup__cta {
  display: inline-block;
  background: var(--rose-pale); color: var(--brown-dark);
  padding: 14px 36px; border-radius: 10px;
  font-size: var(--fs-sm); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}
.promo-popup__cta:hover { background: var(--cream); transform: translateY(-1px); }
.promo-popup__tagline {
  font-size: var(--fs-xs); color: rgba(255,255,255,0.3); margin-top: 20px; letter-spacing: 0.1em;
}

/* ── PROMO BAR (after popup closes) ────────────────────────── */
.promo-bar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1002;
  background: linear-gradient(135deg, var(--brown-dark) 0%, #5a2e1f 100%);
  color: var(--cream);
  padding: 10px 0;
  overflow: hidden;
}
.promo-bar ~ .navbar { top: calc(var(--promo-h, 42px) - 2px); }
.promo-bar.hidden ~ .navbar { top: 0; }
.promo-bar__track {
  overflow: hidden;
  padding-right: 36px;
  -webkit-mask-image: -webkit-linear-gradient(left, transparent 0, #000 2%, #000 98%, transparent 100%);
}
.promo-bar__inner {
  display: inline-flex; align-items: center; flex-wrap: nowrap;
  gap: 24px;
  white-space: nowrap;
  will-change: transform;
  -webkit-animation: marquee 20s linear infinite;
  animation: marquee 20s linear infinite;
}
.promo-bar__inner > * { flex-shrink: 0; }
.promo-bar:hover .promo-bar__inner {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
@-webkit-keyframes marquee {
  0% { -webkit-transform: translateX(0); transform: translateX(0); }
  100% { -webkit-transform: translateX(-33.333%); transform: translateX(-33.333%); }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}
.promo-bar__sparkle {
  color: var(--gold); font-size: 0.85rem; flex-shrink: 0;
}
.promo-bar__sep {
  color: var(--gold); font-size: 0.85rem; flex-shrink: 0;
}
.promo-bar__text {
  display: inline; font-size: var(--fs-xs); line-height: 1.5; letter-spacing: 0.02em; flex-shrink: 0;
}
.promo-bar__text strong { color: var(--rose-pale); }
.promo-bar__cta {
  display: inline-block; flex-shrink: 0;
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--brown-dark); background: var(--rose-pale);
  padding: 5px 14px; border-radius: 6px;
  transition: background 0.2s;
}
.promo-bar__cta:hover { background: var(--cream); }
.promo-bar__close {
  position: absolute; top: 50%; right: 12px; transform: translateY(-50%);
  color: rgba(255,255,255,0.5); font-size: 1.3rem; line-height: 1;
  transition: color 0.2s; z-index: 1;
}
.promo-bar__close:hover { color: var(--cream); }
.promo-bar.hidden { display: none; }
@media (prefers-reduced-motion: reduce) {
  .promo-bar__inner { animation: none; }
}

/* ── ACCESSIBILITY ─────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--text); color: var(--white);
  padding: 12px 24px; z-index: 10000; font-size: var(--fs-sm);
}
.skip-link:focus { top: 0; }
:focus-visible { outline: 2px solid var(--rose); outline-offset: 3px; }
:focus:not(:focus-visible) { outline: none; }

/* ── REVEAL & SCROLL ANIMATIONS ───────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0; transform: scale(0.92);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger delays for grid children */
.stagger > :nth-child(1) { transition-delay: 0s; }
.stagger > :nth-child(2) { transition-delay: 0.12s; }
.stagger > :nth-child(3) { transition-delay: 0.24s; }
.stagger > :nth-child(4) { transition-delay: 0.36s; }
.stagger > :nth-child(5) { transition-delay: 0.48s; }
.stagger > :nth-child(6) { transition-delay: 0.6s; }

/* ── HERO ENTRANCE ────────────────────────────────────────── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.hero__eyebrow { animation: heroFadeUp 0.8s 0.2s var(--ease-out) both; }
.hero__title { animation: heroFadeUp 0.9s 0.4s var(--ease-out) both; }
.hero__subtitle { animation: heroFadeUp 0.8s 0.7s var(--ease-out) both; }
.hero__actions { animation: heroFadeUp 0.8s 0.9s var(--ease-out) both; }

/* ── SECTION DIVIDER LINE ─────────────────────────────────── */
@keyframes drawLine {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.section-line {
  width: 60px; height: 2px; background: var(--gold);
  margin: 0 auto var(--space-8); border-radius: 2px;
  transform-origin: center; transform: scaleX(0);
}
.section-line.visible { animation: drawLine 0.6s var(--ease-out) forwards; }

/* Respect users who ask for reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; }
  .section-line { transform: scaleX(1); }
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-size: var(--fs-sm); font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: var(--space-4) var(--space-8); border-radius: 40px;
  transition: all 0.3s var(--ease); white-space: nowrap; min-height: 48px;
}
.btn--dark { background: var(--brown-dark); color: var(--white); }
.btn--dark:hover { background: var(--brown); transform: translateY(-1px); }
.btn--outline-dark { border: 1.5px solid var(--brown); color: var(--brown); background: transparent; }
.btn--outline-dark:hover { background: var(--brown); color: var(--white); }
.btn--cream { background: var(--cream); color: var(--brown); }
.btn--cream:hover { background: var(--white); transform: translateY(-1px); }
.btn--accent { background: var(--rose-light); color: var(--brown-dark); }
.btn--accent:hover { background: var(--rose-pale); transform: translateY(-1px); }
.btn--primary { background: var(--rose-light); color: var(--brown); }
.btn--primary:hover { background: var(--rose); color: var(--white); }
.btn--outline { border: 1.5px solid var(--text); color: var(--text); background: transparent; }
.btn--outline:hover { background: var(--text); color: var(--white); }
.btn--sm { padding: 10px 20px; font-size: var(--fs-sm); min-height: 44px; }
.btn--lg { padding: 18px 40px; font-size: var(--fs-sm); }
.btn--full { width: 100%; }

/* ── NAVBAR ────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1001;
  height: var(--nav-h); transition: all 0.4s var(--ease);
  background: var(--brown-dark); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.navbar.navbar--light {
  background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
}
.navbar.navbar--light .navbar__logo-text { color: var(--brown-dark); }
.navbar.navbar--light .navbar__logo-sep { color: var(--rose); }
.navbar.navbar--light .navbar__toggle span { background: var(--brown-dark); }
.navbar.navbar--light.scrolled { box-shadow: 0 4px 20px rgba(61,31,24,0.08); }

.navbar__inner {
  padding: 0 20px; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}

.navbar__logo { display: flex; align-items: center; }
.navbar__logo-text {
  font-family: var(--font-body); font-size: var(--fs-sm); font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--white);
}
.navbar__logo-sep { color: var(--rose-light); margin: 0 6px; font-weight: 300; }

.navbar__toggle {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; width: 44px; height: 44px; z-index: 1001;
}
.navbar__toggle span {
  display: block; height: 1.5px; width: 24px; background: var(--white);
  border-radius: 2px; transition: all 0.3s var(--ease); transform-origin: center;
}
.navbar__toggle.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.navbar__toggle.is-active span:nth-child(2) { opacity: 0; }
.navbar__toggle.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.navbar__toggle.is-active span { background: var(--white) !important; }

.navbar__nav {
  position: fixed; inset: 0; background: var(--brown-dark);
  display: flex; align-items: center; justify-content: center;
  transform: translateX(100%); transition: transform 0.4s var(--ease); z-index: 1000;
}
.navbar__nav.is-open { transform: translateX(0); }
.navbar__list { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.navbar__link {
  font-size: var(--fs-lg); font-weight: 400; color: var(--white);
  letter-spacing: 0.04em; transition: color 0.2s;
}
.navbar__link:hover { color: var(--rose-pale); }

.navbar__actions { display: flex; align-items: center; gap: var(--space-4); }

/* Language switcher */
.lang-switch {
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.12em;
  color: var(--white); border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 40px; padding: 8px 14px; min-height: 40px;
  transition: all 0.3s var(--ease);
}
.lang-switch:hover { background: var(--white); color: var(--brown-dark); border-color: var(--white); }
.navbar--light .lang-switch { color: var(--brown-dark); border-color: rgba(61,31,24,0.3); }
.navbar--light .lang-switch:hover { background: var(--brown-dark); color: var(--white); border-color: var(--brown-dark); }
.navbar.is-nav-open .lang-switch { color: var(--white); border-color: rgba(255,255,255,0.4); }
.navbar__cta {
  display: none; font-size: var(--fs-sm); font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text); border: 1.5px solid var(--text);
  padding: 10px 20px; border-radius: 40px; transition: all 0.3s;
}
.navbar__cta:hover { background: var(--text); color: var(--white); }
.navbar.is-nav-open { background: var(--brown-dark) !important; }
.navbar.is-nav-open .navbar__logo-text { color: var(--white); }

/* ── HERO — split layout ──────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100dvh;
  padding-top: calc(var(--nav-h) + var(--promo-h, 0px));
  overflow: hidden;
}
.hero__video-bg {
  position: absolute; inset: 0; z-index: 0; background: #1a1412;
}
.hero__video {
  width: 100%; height: 100%; object-fit: cover; object-position: center center;
}
.hero__video--desktop { display: none; }
.hero__video--mobile { display: block; }
@media (min-width: 768px) {
  .hero__video--desktop { display: block; }
  .hero__video--mobile { display: none; }
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.25) 100%);
}

.hero__content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; justify-content: center;
  min-height: 100vh; min-height: 100dvh;
  padding: var(--space-12) var(--space-6) var(--space-16);
}
.hero__eyebrow {
  font-size: var(--fs-xs); font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: #d4a69e; margin-bottom: var(--space-6);
}
.hero__title {
  font-family: var(--font-display); font-size: var(--fs-hero);
  font-weight: 400; line-height: 1.05; color: var(--cream);
  letter-spacing: -0.02em; margin-bottom: var(--space-8);
  text-shadow: 0 2px 16px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.3);
}
.hero__title em { font-style: italic; color: var(--rose); }
.hero__subtitle {
  font-size: var(--fs-md); color: rgba(245,240,235,0.9);
  line-height: 1.8; margin-bottom: var(--space-12); max-width: 440px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}
.hero__actions { display: flex; flex-direction: column; gap: 12px; }

.btn--outline-light {
  border: 1.5px solid var(--cream); color: var(--cream);
  background: transparent; padding: 14px 28px; border-radius: 8px;
  font-weight: 500; text-decoration: none; text-align: center;
  transition: background 0.3s, color 0.3s;
}
.btn--outline-light:hover { background: var(--cream); color: var(--brown-dark); }

/* ── INTRO STRIP ───────────────────────────────────────────── */
.intro-strip { background: var(--brown-dark); padding: 14px 20px; }
.intro-strip__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap;
  font-size: var(--fs-xs); font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
}
.intro-strip__inner .sep { color: var(--rose); }

/* ── SOINS ─────────────────────────────────────────────────── */
.soins {
  background: var(--brown-dark); position: relative; overflow: hidden;
  padding: 80px 0 100px;
}
.soins .section__label { color: var(--rose-pale); }
.soins .section__title { color: var(--white); }
.soins .section__title em { color: var(--rose-light); }
.soins .soins__header-right { color: rgba(255,255,255,0.6); }

.soins::before,
.soins::after {
  content: ''; position: absolute; pointer-events: none;
  width: 220px; height: 220px; opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg fill='%23E8C2B8'%3E%3Ccircle cx='100' cy='80' r='18'/%3E%3Ccircle cx='75' cy='100' r='16'/%3E%3Ccircle cx='125' cy='100' r='16'/%3E%3Ccircle cx='82' cy='125' r='14'/%3E%3Ccircle cx='118' cy='125' r='14'/%3E%3Ccircle cx='100' cy='105' r='6' fill='%23C9A062'/%3E%3Ccircle cx='55' cy='55' r='10'/%3E%3Ccircle cx='40' cy='70' r='8'/%3E%3Ccircle cx='65' cy='72' r='9'/%3E%3Ccircle cx='50' cy='62' r='4' fill='%23C9A062'/%3E%3Ccircle cx='150' cy='45' r='12'/%3E%3Ccircle cx='140' cy='60' r='10'/%3E%3Ccircle cx='160' cy='62' r='9'/%3E%3Ccircle cx='150' cy='55' r='4' fill='%23C9A062'/%3E%3Ccircle cx='30' cy='140' r='9'/%3E%3Ccircle cx='20' cy='155' r='7'/%3E%3Ccircle cx='40' cy='152' r='8'/%3E%3Ccircle cx='30' cy='148' r='3' fill='%23C9A062'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
}
.soins::before { top: -20px; left: -40px; transform: rotate(-15deg); display: none; }
.soins::after { bottom: -30px; right: -40px; transform: rotate(160deg); display: none; }
@media (min-width: 768px) {
  .soins::before, .soins::after { display: block; }
}

.soins__header {
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 48px;
}
.soins__header .section__title { text-align: left; }
.soins__header-right {
  font-size: var(--fs-base); color: var(--text-muted); line-height: 1.7;
  max-width: 380px;
}

.soins__grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  max-width: 1100px; margin: 0 auto;
}

.soin-card {
  background: linear-gradient(170deg, #FAF0EB 0%, #F3DDD4 100%);
  border: 1px solid rgba(200,144,126,0.15);
  border-radius: var(--radius); padding: 32px 28px;
  display: flex; flex-direction: column; cursor: pointer;
  transition: all 0.35s var(--ease); position: relative; z-index: 1;
}
.soin-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.25); transform: translateY(-3px); }
.soin-card.is-selected { border-color: var(--rose); box-shadow: 0 8px 32px rgba(200,144,126,0.3); }

.soin-card__duration {
  display: inline-block; font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 16px;
}
.soin-card__badges { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.soin-card__badge {
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--rose);
}
.soin-card__name {
  font-family: var(--font-display); font-size: var(--fs-xl); font-weight: 500;
  color: var(--text); margin-bottom: 10px;
}
.soin-card__desc {
  font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.7; margin-bottom: 20px;
}
.soin-card__list {
  display: flex; flex-direction: column; gap: 6px; margin-bottom: 24px; flex-grow: 1;
}
.soin-card__list li {
  font-size: var(--fs-sm); color: var(--text-muted); padding-left: 20px;
  position: relative; line-height: 1.5;
}
.soin-card__list li::before {
  content: '—'; position: absolute; left: 0; color: var(--rose); font-size: 0.7rem;
}
.soin-card__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 20px; border-top: 1px solid rgba(61,31,24,0.06);
}
.soin-card__price {
  font-family: var(--font-display); font-size: var(--fs-xl); font-weight: 400; color: var(--text);
}
.soin-card__tax { font-family: var(--font-body); font-size: var(--fs-xs); font-weight: 400; opacity: 0.6; }
.soin-card__cta {
  font-size: var(--fs-sm); font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-muted);
  border-bottom: 1px solid var(--text-muted); padding-bottom: 2px;
  transition: all 0.3s;
}
.soin-card:hover .soin-card__cta { color: var(--rose); border-color: var(--rose); }
.soin-card.is-selected .soin-card__cta { color: var(--rose); border-color: var(--rose); }

/* Featured card (dark) */
.soin-card--featured { background: linear-gradient(170deg, #3D1F18 0%, #2C1008 100%); border-color: rgba(200,144,126,0.2); }
.soin-card--featured .soin-card__name,
.soin-card--featured .soin-card__price { color: var(--white); }
.soin-card--featured .soin-card__desc,
.soin-card--featured .soin-card__list li { color: rgba(255,255,255,0.75); }
.soin-card--featured .soin-card__list li::before { color: var(--rose-pale); }
.soin-card--featured .soin-card__duration { color: rgba(255,255,255,0.5); }
.soin-card--featured .soin-card__badge { color: var(--rose-pale); }
.soin-card--featured .soin-card__bottom { border-color: rgba(255,255,255,0.1); }
.soin-card--featured .soin-card__cta { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.4); }
.soin-card--featured:hover .soin-card__cta { color: var(--rose-pale); border-color: var(--rose-pale); }
.soin-card--featured:hover { border-color: var(--rose); }

/* Soins footer tagline */
.soins__footer {
  text-align: center; margin-top: 48px; position: relative; z-index: 1;
}
.soins__tagline {
  font-family: var(--font-script); font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--rose-pale); letter-spacing: 0.02em;
}

/* Flower decorations on soin cards */
.soin-card::before {
  content: ''; position: absolute; top: -8px; right: -8px;
  width: 60px; height: 60px; opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'%3E%3Cg fill='%23D8A497'%3E%3Ccircle cx='40' cy='25' r='12'/%3E%3Ccircle cx='28' cy='38' r='10'/%3E%3Ccircle cx='52' cy='38' r='10'/%3E%3Ccircle cx='32' cy='52' r='9'/%3E%3Ccircle cx='48' cy='52' r='9'/%3E%3Ccircle cx='40' cy='40' r='4' fill='%23C9A062'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
  pointer-events: none;
}
.soin-card--featured::before { opacity: 0.1; }

/* Extras — horizontal */
.soins__extras {
  max-width: 1100px; margin: 48px auto 0;
  padding-top: 32px;
}
.extras__row {
  display: grid; grid-template-columns: 1fr; gap: 0;
}
.extras__item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; border-bottom: 1px solid rgba(61,31,24,0.06);
}
.extras__item:first-child { border-top: 1px solid rgba(61,31,24,0.06); }
.extras__name { font-size: var(--fs-sm); color: var(--text); }
.extras__price {
  font-family: var(--font-display); font-size: var(--fs-sm);
  color: var(--rose); font-style: italic; white-space: nowrap;
}

/* ── TÉMOIGNAGES ───────────────────────────────────────────── */
.temoignages { background: var(--cream); }
.temoignages__featured { max-width: 720px; margin: 0 auto; text-align: center; }
.temoignages__featured .temoignage-card { text-align: left; }
.temoignages__featured .temoignage-card__text { font-size: var(--fs-md); }
.temoignages__cta {
  display: inline-block; margin-top: var(--space-8);
  font-size: var(--fs-sm); font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text);
  border-bottom: 1.5px solid var(--text); padding-bottom: 4px; transition: all 0.2s;
}
.temoignages__cta:hover { color: var(--rose); border-color: var(--rose); }
.temoignages__grid {
  display: flex; flex-direction: column; gap: 16px;
  max-width: 1100px; margin: 0 auto;
}
.temoignage-card {
  background: var(--white); border: 1px solid rgba(61,31,24,0.04);
  border-radius: var(--radius); padding: 32px 28px;
  transition: all 0.3s var(--ease);
}
.temoignage-card:hover { box-shadow: 0 8px 32px rgba(61,31,24,0.06); transform: translateY(-2px); }
.temoignage-card__stars { color: var(--rose); font-size: var(--fs-sm); letter-spacing: 2px; margin-bottom: 20px; }
.temoignage-card__text {
  font-size: var(--fs-base); color: var(--text-muted); line-height: 1.8;
  font-style: italic; margin-bottom: 24px;
}
.temoignage-card__author {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid rgba(61,31,24,0.06);
}
.temoignage-card__name {
  font-family: var(--font-display); font-size: 1rem; font-weight: 500; color: var(--text);
}
.temoignage-card__soin {
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--rose);
}

/* ── ABOUT ─────────────────────────────────────────────────── */
.about { background: var(--cream); }
.about__inner {
  display: flex; flex-direction: column; gap: 40px;
}
.about__image-wrapper {
  position: relative; border-radius: var(--radius); overflow: visible;
  padding-bottom: 40px;
}
.about__main-img {
  width: 100%; height: 320px; object-fit: cover;
  border-radius: var(--radius);
}
.about__portrait {
  position: absolute; bottom: -40px; right: 20px;
  width: 120px; height: 120px; border-radius: 50%;
  overflow: hidden; border: 4px solid var(--cream);
  box-shadow: 0 8px 24px rgba(61,31,24,0.12);
}
.about__portrait img { width: 100%; height: 100%; object-fit: cover; }
.about__content p {
  font-size: var(--fs-base); color: var(--text-muted); line-height: 1.8; margin-bottom: 16px;
}
.about__values {
  display: flex; flex-direction: column; gap: 0;
  margin-top: 24px;
}
.about__value {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
  font-size: var(--fs-base); font-weight: 500; color: var(--text);
  border-left: 2px solid var(--rose-light); padding-left: 16px;
}

/* ── RESERVATION — dark section ───────────────────────────── */
.reservation {
  background: var(--brown-dark); padding: 80px 0;
  position: relative; overflow: hidden;
}
.reservation::before {
  content: ''; position: absolute; top: -120px; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(200,144,126,0.06);
}
.resa__inner {
  display: flex; flex-direction: column; gap: 48px;
  position: relative; z-index: 1;
}
.resa__title {
  font-family: var(--font-display); font-size: var(--fs-3xl);
  font-weight: 400; line-height: 1.1; color: var(--cream);
  margin-bottom: 16px;
}
.resa__title em { font-style: italic; color: var(--rose-pale); }
.resa__desc {
  font-size: var(--fs-base); color: rgba(255,255,255,0.55); line-height: 1.7;
  margin-bottom: 32px;
}
.resa__image {
  border-radius: var(--radius); overflow: hidden; margin-top: 8px;
}
.resa__image img {
  width: 100%; height: 240px; object-fit: cover; border-radius: var(--radius);
}

/* Steps */
.resa__step {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s var(--ease);
}
.resa__step:last-of-type { border-bottom: none; }
.resa__step-header {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 24px 0; cursor: pointer;
}
.resa__step-num {
  font-family: var(--font-display); font-size: var(--fs-xl);
  font-style: italic; color: var(--rose-pale); width: 40px; flex-shrink: 0;
}
.resa__step-title {
  font-family: var(--font-display); font-size: var(--fs-md); font-weight: 600;
  color: var(--white); margin-bottom: 4px;
}
.resa__step-sub { font-size: var(--fs-sm); color: rgba(255,255,255,0.6); }
.resa__step-body { display: none; padding: 0 0 24px 60px; }
.resa__step--active .resa__step-body { display: block; }

/* Pills in dark context */
.resa__pills { display: flex; flex-wrap: wrap; gap: 8px; }
.resa__pill {
  font-size: var(--fs-sm); font-weight: 500; padding: 10px 20px; min-height: 44px;
  border: 1px solid rgba(255,255,255,0.15); border-radius: 30px;
  color: rgba(255,255,255,0.7); transition: all 0.3s; background: transparent;
}
.resa__pill:hover { border-color: var(--rose-pale); color: var(--rose-pale); }
.resa__pill.is-active { background: var(--rose-pale); color: var(--brown-dark); border-color: var(--rose-pale); }

/* Oil chips dark */
.resa__oils { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.oil-chip { cursor: pointer; position: relative; }
.oil-chip input { position: absolute; opacity: 0; pointer-events: none; }
.oil-chip__inner {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; background: rgba(255,255,255,0.04); transition: all 0.3s var(--ease);
}
.oil-chip__icon { font-size: var(--fs-md); }
.oil-chip__name { font-size: var(--fs-sm); font-weight: 500; color: rgba(255,255,255,0.8); }
.oil-chip__tag { font-size: var(--fs-xs); color: rgba(255,255,255,0.6); margin-left: auto; }
.oil-chip__detail {
  display: block; font-size: var(--fs-sm); color: rgba(255,255,255,0.6);
  line-height: 1.4; max-height: 0; overflow: hidden; opacity: 0;
  padding: 0 14px; transition: all 0.3s;
}
.oil-chip:hover .oil-chip__inner,
.oil-chip.is-tapped .oil-chip__inner { border-color: var(--rose-pale); }
.oil-chip:hover .oil-chip__detail,
.oil-chip.is-tapped .oil-chip__detail { max-height: 60px; opacity: 1; padding: 6px 14px 10px; }
.oil-chip.is-selected .oil-chip__inner { background: var(--rose); border-color: var(--rose); }
.oil-chip.is-selected .oil-chip__name { color: var(--white); }
.oil-chip.is-selected .oil-chip__tag { color: rgba(255,255,255,0.7); }

/* Date/time dark */
.resa__datetime { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.form-group--dark label {
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--rose-pale); display: block; margin-bottom: 6px;
}
.form-group--dark input,
.form-group--dark textarea,
.form-group--dark select {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  padding: 12px 14px; font-family: var(--font-body); font-size: var(--fs-base);
  color: var(--white); width: 100%; border-radius: 8px; transition: border-color 0.3s;
}
.form-group--dark input::placeholder,
.form-group--dark textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group--dark input:focus,
.form-group--dark textarea:focus,
.form-group--dark select:focus { border-color: var(--rose-pale); outline: none; }

.resa__form { display: flex; flex-direction: column; gap: 14px; }
.resa__summary {
  background: rgba(255,255,255,0.06); border-radius: 10px;
  padding: 14px; font-size: var(--fs-sm); color: rgba(255,255,255,0.7);
  line-height: 1.7; display: none;
}
.resa__summary.is-visible { display: block; }
.resa__summary strong { color: var(--rose-pale); }
.resa__note {
  font-size: var(--fs-sm); color: rgba(255,255,255,0.6); text-align: center; margin-top: var(--space-2);
}
.resa__note a { color: var(--rose-pale); }

.resa__cta-main {
  display: block; text-align: center; margin-top: 32px;
}

/* ── CARTE-CADEAU ──────────────────────────────────────────── */
.gift { background: var(--cream); padding: 80px 0 60px; }
.gift__inner {
  display: flex; flex-direction: column; gap: 32px;
  max-width: 1100px; margin: 0 auto;
}
.gift__media img { width: 100%; border-radius: 12px; display: block; }
.gift__tagline {
  font-family: var(--ff-accent); font-style: italic;
  font-size: var(--fs-lg); color: var(--rose);
  letter-spacing: 0.04em; margin-top: -4px;
}

/* ── CONSULTATION CTA ──────────────────────────────── */
.consult-cta {
  background: var(--brown-dark); padding: 72px 0; position: relative; overflow: hidden;
}
.consult-cta::before {
  content: ''; position: absolute; bottom: -80px; left: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(200,144,126,0.06);
}
.consult-cta__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; position: relative; z-index: 1;
}
.consult-cta__title { color: var(--cream); }
.consult-cta__title em { color: var(--rose-pale); }
.consult-cta .section__label { color: var(--rose-pale); }
.consult-cta__desc {
  font-size: var(--fs-base); color: rgba(255,255,255,0.65); line-height: 1.8;
  max-width: 480px; margin-top: var(--space-4);
}
.consult-cta__action { text-align: center; flex-shrink: 0; }
.consult-cta__note {
  font-size: var(--fs-xs); color: rgba(255,255,255,0.4); margin-top: var(--space-4);
  letter-spacing: 0.02em;
}
.consult-cta__action .btn--dark {
  background: var(--cream); color: var(--brown-dark);
  white-space: nowrap;
}
.consult-cta__action .btn--dark:hover {
  background: var(--rose-pale); color: var(--brown-dark);
}
@media (max-width: 768px) {
  .consult-cta__inner { flex-direction: column; text-align: center; gap: 32px; }
  .consult-cta__desc { max-width: 100%; }
}

.gift__desc {
  font-size: var(--fs-base); color: var(--text-muted); line-height: 1.8; margin-bottom: 24px;
}
.gift__options { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.gift__amount {
  font-size: var(--fs-sm); font-weight: 500; color: var(--text);
  border: 1px solid rgba(61,31,24,0.12); padding: 10px 20px;
  border-radius: 30px; transition: all 0.3s; background: var(--white);
}
.gift__amount:hover { border-color: var(--rose); color: var(--rose); }
.gift__actions { display: flex; flex-direction: column; gap: 12px; }

/* ── CONTACT ───────────────────────────────────────────────── */
.contact { background: var(--cream); }
.contact__grid {
  display: flex; flex-direction: column; gap: 48px;
  max-width: 1100px; margin: 0 auto;
}
.contact__details { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.contact-item__label {
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--rose); display: block; margin-bottom: 4px;
}
.contact-item p { font-size: var(--fs-base); color: var(--text); line-height: 1.6; }
.contact-item a { color: var(--text); transition: color 0.2s; }
.contact-item a:hover { color: var(--rose); }
.contact__map-link {
  display: inline-block; margin-top: 20px;
  font-size: var(--fs-sm); font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text);
  border-bottom: 1.5px solid var(--text); padding-bottom: 4px;
  transition: all 0.2s;
}
.contact__map-link:hover { color: var(--rose); border-color: var(--rose); }

/* Contact form — underline style */
.contact__form {
  display: flex; flex-direction: column; gap: 24px;
  border: 1px solid rgba(61,31,24,0.15); border-radius: var(--radius);
  padding: 32px 24px; background: var(--white);
}
.form-row { display: flex; flex-direction: column; gap: 24px; }
.form-group--underline { display: flex; flex-direction: column; gap: 0; }
.form-group--underline label {
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--rose); margin-bottom: 8px;
}
.form-group--underline input,
.form-group--underline textarea {
  background: transparent; border: none; border-bottom: 1px solid rgba(61,31,24,0.15);
  padding: 10px 0; font-family: var(--font-body); font-size: var(--fs-base);
  color: var(--text); width: 100%; transition: border-color 0.3s; border-radius: 0;
}
.form-group--underline input::placeholder,
.form-group--underline textarea::placeholder { color: rgba(61,31,24,0.3); }
.form-group--underline input:focus,
.form-group--underline textarea:focus { border-color: var(--rose); outline: none; }
.form-group--underline textarea { resize: vertical; min-height: 80px; }
.form-notice { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.5; }
.form-optional { font-weight: 400; text-transform: none; letter-spacing: normal; }

/* ── FOOTER ────────────────────────────────────────────────── */
/* Extra bottom space on mobile so the fixed sticky bar never covers content */
.footer { background: var(--brown-dark); padding: 56px 20px 96px; }
.footer__grid {
  display: grid; grid-template-columns: 1fr; gap: 32px;
}
.footer__logo {
  font-family: var(--font-body); font-size: var(--fs-lg); font-weight: 600;
  letter-spacing: 0.2em; color: var(--white); margin-bottom: 8px;
}
.footer__tagline {
  font-size: var(--fs-sm); color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 14px;
}
.footer__social {
  font-size: var(--fs-sm); color: rgba(255,255,255,0.6); transition: color 0.2s;
}
.footer__social:hover { color: var(--rose-pale); }
.footer__col h4 {
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 14px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col li,
.footer__col li a { font-size: var(--fs-sm); color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer__col li a:hover { color: var(--rose-pale); }

.footer__bottom {
  display: flex; flex-direction: column; gap: 4px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 32px; padding-top: 20px;
}
.footer__bottom p { font-size: var(--fs-xs); color: rgba(255,255,255,0.55); }
.footer__bottom-tagline { color: rgba(255,255,255,0.5); }

/* ── MOBILE STICKY BAR ────────────────────────────────────── */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  display: flex; background: var(--brown-dark); padding: 8px; gap: 8px;
  transform: translateY(100%); transition: transform 0.3s var(--ease);
}
.mobile-bar.is-visible { transform: translateY(0); }
.mobile-bar__phone {
  flex: 1; text-align: center; padding: 12px; font-size: var(--fs-sm);
  font-weight: 600; color: var(--white); border: 1px solid rgba(255,255,255,0.2); border-radius: 8px;
}
.mobile-bar__book {
  flex: 2; text-align: center; padding: 12px; font-size: var(--fs-sm);
  font-weight: 600; color: var(--brown-dark); background: var(--rose-light); border-radius: 8px;
}

/* ── COOKIE CONSENT — Loi 25 ──────────────────────────────── */
.cookie {
  position: fixed; bottom: 84px; left: var(--space-3); right: var(--space-3);
  z-index: 9999; animation: fadeUp 0.5s var(--ease-out) both;
}
.cookie[hidden] { display: none; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie__card {
  background: var(--white); border: 1px solid rgba(61,31,24,0.06);
  padding: var(--space-6); max-width: 420px;
  box-shadow: 0 8px 32px rgba(61,31,24,0.12); border-radius: var(--radius);
}
.cookie__title {
  font-family: var(--font-display); font-size: var(--fs-lg);
  font-weight: 600; color: var(--text); margin-bottom: var(--space-2);
}
.cookie__text { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.6; margin-bottom: var(--space-4); }
.cookie__text a { color: var(--rose); text-decoration: underline; }
/* Equal prominence for all three choices (Loi 25) */
.cookie__actions { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.cookie__actions .btn { flex: 1 1 auto; }

/* Preferences modal */
.cookie-prefs { position: fixed; inset: 0; z-index: 10000; display: flex; align-items: center; justify-content: center; padding: var(--space-4); }
.cookie-prefs[hidden] { display: none; }
.cookie-prefs__backdrop { position: absolute; inset: 0; background: rgba(44,16,8,0.55); }
.cookie-prefs__panel {
  position: relative; background: var(--white); border-radius: var(--radius);
  padding: var(--space-8); max-width: 480px; width: 100%;
  box-shadow: 0 20px 60px rgba(44,16,8,0.3); max-height: 90vh; overflow-y: auto;
}
.cookie-prefs__title { font-family: var(--font-display); font-size: var(--fs-xl); font-weight: 600; color: var(--text); margin-bottom: var(--space-2); }
.cookie-prefs__intro { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.6; margin-bottom: var(--space-6); }
.cookie-pref { padding: var(--space-4) 0; border-top: 1px solid rgba(61,31,24,0.08); }
.cookie-pref__row { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); }
.cookie-pref__name { font-size: var(--fs-base); font-weight: 600; color: var(--text); }
.cookie-pref input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--rose); cursor: pointer; }
.cookie-pref input[type="checkbox"]:disabled { cursor: not-allowed; opacity: 0.6; }
.cookie-pref__desc { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.5; margin-top: var(--space-2); }
.cookie-prefs__actions { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-6); }
.cookie-prefs__actions .btn { flex: 1 1 auto; }

/* Footer "manage cookies" trigger styled like a footer link */
.footer__link-btn {
  font-size: var(--fs-sm); color: rgba(255,255,255,0.6);
  padding: 0; transition: color 0.2s; text-align: left;
}
.footer__link-btn:hover { color: var(--rose-pale); }

@media (min-width: 768px) {
  .cookie { right: auto; left: var(--space-6); bottom: var(--space-6); }
}

/* ── LEGAL / CONFIDENTIALITE ───────────────────────────────── */
.legal { padding-top: calc(var(--nav-h) + var(--space-12)); padding-bottom: var(--space-20); }
.legal__back {
  display: inline-block; font-size: var(--fs-sm); color: var(--text-muted);
  margin-bottom: var(--space-6); transition: color 0.3s;
}
.legal__back:hover { color: var(--rose); }
.legal__title { margin: var(--space-2) 0 var(--space-8); }
.legal__body { max-width: 70ch; }
.legal__body h2 {
  font-family: var(--font-display); font-size: var(--fs-xl); font-weight: 500;
  color: var(--text); margin: var(--space-8) 0 var(--space-3);
}
.legal__body p {
  font-size: var(--fs-base); color: var(--text-muted); line-height: 1.8;
  margin-bottom: var(--space-4);
}
.legal__body a { color: var(--rose); text-decoration: underline; }
.legal__updated { font-size: var(--fs-sm); color: var(--text-muted); margin-top: var(--space-8); }


/* ============================================================
   TABLET (min-width: 768px)
   ============================================================ */
@media (min-width: 768px) {
  :root { --nav-h: 72px; }
  .container { padding: 0 var(--space-12); }
  .section { padding: var(--space-30) 0; }

  /* Nav stays mobile (hamburger) on tablet — desktop nav at 1024px */
  .navbar__inner { padding: 0 40px; }

  /* Hero — fullscreen video bg */
  .hero__content {
    width: 50%; padding: 0 80px; padding-top: var(--nav-h);
  }
  .hero__actions { flex-direction: column; gap: 14px; max-width: 280px; }

  /* Soins */
  .soins__header { flex-direction: row; justify-content: space-between; align-items: flex-end; }
  .soins__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .extras__row { grid-template-columns: repeat(4, 1fr); gap: 0; }
  .extras__item { border-bottom: none; border-right: 1px solid rgba(61,31,24,0.06); padding: 0 20px; }
  .extras__item:last-child { border-right: none; }
  .extras__item:first-child { border-top: none; padding-left: 0; }
  .extras__item:last-child { padding-right: 0; }
  .extras__name { font-size: var(--fs-sm); }

  /* Temoignages */
  .temoignages__grid { flex-direction: row; }
  .temoignage-card { flex: 1; }

  /* About */
  .about__inner { flex-direction: row; gap: 80px; align-items: center; }
  .about__media { flex: 1; }
  .about__content { flex: 1; }
  .about__main-img { height: 480px; }
  .about__portrait { width: 160px; height: 160px; bottom: -50px; right: 40px; }
  .about__values { flex-direction: row; gap: 0; align-items: stretch; }
  .about__value { flex: 0 0 auto; padding: var(--space-2) var(--space-8); white-space: nowrap; }

  /* Reservation */
  .reservation { padding: 120px 0; }
  .resa__inner { flex-direction: row; gap: 64px; }
  .resa__left { flex: 1; }
  .resa__right { flex: 1.2; }
  .resa__image img { height: 280px; }
  .resa__oils { grid-template-columns: repeat(3, 1fr); }
  .resa__datetime { flex-direction: row; gap: 16px; }
  .resa__datetime > * { flex: 1; }

  /* Gift */
  .gift__inner { flex-direction: row; align-items: center; justify-content: center; gap: 64px; }
  .gift__content { flex: 1; }
  .gift__media { flex: 1.2; }
  .gift__actions { flex-direction: row; }

  /* Contact */
  .contact__grid { flex-direction: row; gap: 80px; }
  .contact__info { flex: 1; }
  .contact__form { flex: 1.2; }
  .form-row { flex-direction: row; gap: 24px; }
  .form-row > * { flex: 1; }

  /* Footer */
  .footer__grid { grid-template-columns: 2fr 1fr 1.2fr 0.8fr; gap: 40px; }
  .footer__bottom { flex-direction: row; justify-content: space-between; }
  .footer { padding-bottom: 28px; }
  .mobile-bar { display: none; }

  /* Cookie */
  #cookie-consent { right: auto; left: 24px; bottom: 24px; }
}


/* ============================================================
   DESKTOP (min-width: 1024px)
   ============================================================ */
@media (min-width: 1024px) {
  .container { padding: 0 var(--space-16); }
  .section { padding: var(--space-35) 0; }

  /* Nav desktop — starts at 1024px where there's enough room */
  .navbar__toggle { display: none; }
  .navbar__nav {
    position: static; background: transparent;
    transform: none; display: flex;
  }
  .navbar__list { flex-direction: row; gap: 36px; }
  .navbar__link { font-size: var(--fs-sm); color: rgba(255,255,255,0.75); }
  .navbar__link:hover { color: var(--white); }
  .navbar__cta { display: inline-flex; color: var(--white); border-color: rgba(255,255,255,0.35); }
  .navbar__cta:hover { background: var(--white); color: var(--brown-dark); border-color: var(--white); }
  .navbar.navbar--light .navbar__link { color: rgba(61,31,24,0.6); }
  .navbar.navbar--light .navbar__link:hover { color: var(--brown-dark); }
  .navbar.navbar--light .navbar__cta { color: var(--brown-dark); border-color: rgba(61,31,24,0.3); }
  .navbar.navbar--light .navbar__cta:hover { background: var(--brown-dark); color: var(--white); border-color: var(--brown-dark); }
  .navbar__inner { padding: 0 60px; }

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

  .hero__content { padding: 140px 80px 100px; }

  .about__inner { gap: 100px; }
  .about__main-img { height: 540px; }
  .contact__grid { gap: 100px; }

  .resa__inner { gap: 80px; }
  .resa__image img { height: 340px; }
  .reservation { padding: 140px 0; }
}
