/* ==========================================================================
   BLUSH — Design tokens
   ========================================================================== */
:root {
  --bg: #fdf9f8;
  --bg-alt: #f3e8e6;
  --surface: #ffffff;
  --surface-2: #faf2f1;
  --border: rgba(30, 20, 20, 0.08);
  --border-strong: rgba(30, 20, 20, 0.14);
  --text: #2b2222;
  --text-muted: #8a7876;

  --rose-gold: #b76e79;
  --rose-gold-rgb: 183, 110, 121;
  --rose-gold-deep: #9c5560;
  --blush: #f3e8e6;
  --black-fine: #1a1414;
  --danger: #a24638;

  --font-head: "Cormorant Garamond", "Georgia", serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 26px;
  --container: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 78px;
  --shadow-sm: 0 8px 24px -12px rgba(30, 20, 20, 0.1);
  --shadow-md: 0 24px 55px -22px rgba(30, 20, 20, 0.16);
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  background: var(--bg); color: var(--text); font-family: var(--font-body);
  line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
body.lightbox-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button {
  font: inherit; color: inherit; background: none; border: none; padding: 0;
  cursor: pointer; appearance: none; -webkit-appearance: none; -webkit-tap-highlight-color: transparent;
}
input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.2; letter-spacing: 0.01em; }

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

/* ==========================================================================
   Layout helpers
   ========================================================================== */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
.section { padding-block: clamp(3.5rem, 8vw, 7.5rem); }
.section--alt { background: var(--bg-alt); }
.section__lead { max-width: 60ch; color: var(--text-muted); font-size: 1.05rem; margin-top: 0.75rem; }

.eyebrow {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rose-gold-deep); margin-bottom: 0.9rem;
}

h2 { font-size: clamp(2rem, 4.5vw, 3rem); max-width: 24ch; letter-spacing: 0.01em; }

.grid { display: grid; gap: 1.25rem; margin-top: 2.5rem; }
.grid--perks { grid-template-columns: 1fr; }
.grid--testimonials { grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .grid--perks { grid-template-columns: repeat(2, 1fr); }
  .grid--testimonials { grid-template-columns: repeat(3, 1fr); }
}

.accent-text { color: var(--rose-gold-deep); font-style: italic; font-weight: 500; }

/* ==========================================================================
   Accessibility utilities
   ========================================================================== */
.skip-link {
  position: fixed; top: -100%; left: 1rem; z-index: 10000;
  background: var(--rose-gold-deep); color: #fff; padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm); font-weight: 600; transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 2px solid var(--rose-gold-deep); outline-offset: 3px; }

/* ==========================================================================
   Progress bar + custom cursor
   ========================================================================== */
.progress-bar { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: var(--rose-gold-deep); z-index: 9999; transition: width 0.1s linear; }
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998; border-radius: 50%; transform: translate(-50%, -50%); display: none; }
.cursor-dot { width: 6px; height: 6px; background: var(--rose-gold-deep); }
.cursor-ring { width: 34px; height: 34px; border: 1px solid rgba(var(--rose-gold-rgb), 0.4); transition: width 0.2s var(--ease), height 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease); }
.cursor-ring.is-active { width: 56px; height: 56px; background: rgba(var(--rose-gold-rgb), 0.08); border-color: var(--rose-gold-deep); }
@media (hover: hover) and (pointer: fine) {
  .has-custom-cursor .cursor-dot, .has-custom-cursor .cursor-ring { display: block; }
  .has-custom-cursor, .has-custom-cursor a, .has-custom-cursor button { cursor: none; }
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500; height: var(--header-h);
  display: flex; align-items: center; background: rgba(253, 249, 248, 0.85);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent; transition: border-color 0.3s var(--ease), height 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled { border-color: var(--border); height: 66px; box-shadow: var(--shadow-sm); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.site-header__brand { display: flex; align-items: center; gap: 0.85rem; min-width: 0; }

.back-link {
  display: none; font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-muted);
  border: 1px solid var(--border-strong); border-radius: 999px; padding: 0.35rem 0.75rem;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease); white-space: nowrap;
}
.back-link:hover { border-color: var(--rose-gold-deep); color: var(--rose-gold-deep); }
@media (min-width: 900px) { .back-link { display: inline-flex; } }

.logo { font-family: var(--font-head); font-weight: 600; font-size: 1.5rem; letter-spacing: 0.08em; display: inline-flex; align-items: center; gap: 0.5rem; white-space: nowrap; color: var(--text); }
.logo__mark { width: 18px; height: 18px; color: var(--rose-gold-deep); flex-shrink: 0; }
.logo__tagline { display: none; font-size: 0.78rem; color: var(--text-muted); border-left: 1px solid var(--border-strong); padding-left: 0.85rem; white-space: nowrap; }
@media (min-width: 640px) { .logo__tagline { display: inline; } }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav__list { display: none; align-items: center; gap: 1.5rem; }
.nav__link { position: relative; font-size: 0.9rem; color: var(--text-muted); transition: color 0.2s var(--ease); white-space: nowrap; }
.nav__link::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--rose-gold-deep); transition: width 0.25s var(--ease); }
.nav__link:hover, .nav__link.is-active { color: var(--text); }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__cta { display: none; }
@media (min-width: 1180px) { .nav__list { display: flex; } .nav__cta { display: inline-flex; } }

.burger { display: flex; flex-direction: column; justify-content: center; align-items: stretch; flex-shrink: 0; gap: 5px; width: 32px; height: 32px; padding: 0; z-index: 600; touch-action: manipulation; }
.burger span { display: block; height: 1px; width: 100%; background: var(--text); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1180px) { .burger { display: none; } }

@media (max-width: 1179px) {
  .nav {
    position: fixed; inset: 0; z-index: 550; background: var(--bg);
    flex-direction: column; justify-content: center; align-items: center; gap: 2.2rem;
    overflow-y: auto; padding-block: 2rem; transform: translateX(100%); transition: transform 0.35s var(--ease);
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { display: flex; flex-direction: column; gap: 1.8rem; text-align: center; }
  .nav__link { font-size: 1.3rem; }
  .nav__cta { display: inline-flex; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 1.7rem; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease), opacity 0.2s var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--rose-gold-deep); color: #fff; }
.btn--primary:hover { box-shadow: 0 14px 32px -12px rgba(var(--rose-gold-rgb), 0.55); transform: translateY(-2px); }
.btn--primary:disabled { opacity: 0.4; cursor: not-allowed; transform: none; box-shadow: none; }
.btn--ghost { border: 1px solid var(--border-strong); color: var(--text); }
.btn--ghost:hover { border-color: var(--rose-gold-deep); color: var(--rose-gold-deep); }
.btn--ghost:disabled { opacity: 0.35; cursor: not-allowed; }
.btn--outline { border: 1px solid var(--border-strong); color: var(--text); }
.btn--outline:hover { border-color: var(--rose-gold-deep); color: var(--rose-gold-deep); background: var(--blush); }
.btn--outline.is-copied { border-color: var(--rose-gold-deep); color: var(--rose-gold-deep); background: var(--blush); }
.btn--sm { padding: 0.6rem 1.2rem; font-size: 0.8rem; }
.btn--full { width: 100%; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: calc(var(--header-h) + 1.5rem); padding-bottom: 4rem; overflow: hidden; }
.hero__bg {
  position: absolute; inset: -20%; z-index: 0; pointer-events: none;
  background: radial-gradient(650px circle at var(--mx, 50%) var(--my, 30%), rgba(var(--rose-gold-rgb), 0.16), transparent 62%);
}
.hero__inner { position: relative; z-index: 1; display: grid; gap: 3rem; }
.hero__title { font-size: clamp(2.4rem, 6vw, 4rem); display: flex; flex-direction: column; gap: 0.1rem; margin-top: 0.75rem; }
.hero__subtitle { margin-top: 1.5rem; max-width: 50ch; color: var(--text-muted); font-size: 1.08rem; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2.25rem; }
.badge { font-family: var(--font-mono); font-size: 0.76rem; border: 1px solid var(--border-strong); border-radius: 999px; padding: 0.4rem 0.9rem; color: var(--text-muted); background: var(--surface); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.25rem; }

@media (min-width: 1024px) { .hero__inner { grid-template-columns: 1.1fr 0.9fr; align-items: center; } }

.hero__showcase { display: none; }
@media (min-width: 1024px) { .hero__showcase { display: block; } }
.hero__showcase-frame { border-radius: var(--radius-lg); aspect-ratio: 4 / 5; box-shadow: var(--shadow-md); border: 1px solid var(--border); }

.scroll-indicator { position: absolute; bottom: 1.75rem; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 1px solid var(--border-strong); border-radius: 999px; z-index: 1; }
.scroll-indicator span { position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; background: var(--rose-gold-deep); border-radius: 2px; transform: translateX(-50%); animation: scrollDot 1.6s infinite; }
@keyframes scrollDot { 0% { top: 8px; opacity: 1; } 70% { top: 22px; opacity: 0; } 100% { top: 22px; opacity: 0; } }

/* ==========================================================================
   Galerie Insta-like
   ========================================================================== */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

.gallery-tile { position: relative; aspect-ratio: 1 / 1; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; }
.gallery-tile--french { background: linear-gradient(175deg, #f3e8e6 0%, #f3e8e6 76%, #ffffff 76%, #ffffff 100%); }
.gallery-tile--chrome { background: linear-gradient(135deg, #cfd8dc, #f5f5f5 35%, #b0bec5 65%, #eceff1); background-size: 200% 200%; }
.gallery-tile--nude { background: linear-gradient(180deg, #e8d5c9, #d9bfae); }
.gallery-tile--fleurs {
  background:
    radial-gradient(circle at 30% 30%, #f2b8c6 0 9%, transparent 10%),
    radial-gradient(circle at 70% 25%, #f2b8c6 0 9%, transparent 10%),
    radial-gradient(circle at 50% 60%, #f2b8c6 0 9%, transparent 10%),
    radial-gradient(circle at 25% 78%, #f2b8c6 0 9%, transparent 10%),
    radial-gradient(circle at 78% 80%, #f2b8c6 0 9%, transparent 10%),
    #fbeeec;
}
.gallery-tile--ombre { background: linear-gradient(180deg, #f3e8e6, var(--rose-gold)); }
.gallery-tile--marbre {
  background:
    radial-gradient(circle at 20% 30%, rgba(183, 110, 121, 0.3), transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(183, 110, 121, 0.2), transparent 45%),
    radial-gradient(circle at 40% 85%, rgba(20, 15, 15, 0.08), transparent 35%),
    #f0e6e1;
}
.gallery-tile--geometrique {
  background: conic-gradient(from 45deg at 50% 50%, #f3e8e6 0deg 90deg, #dcc0b0 90deg 180deg, #f3e8e6 180deg 270deg, #dcc0b0 270deg 360deg);
}
.gallery-tile--paillettes {
  background:
    radial-gradient(circle at 15% 20%, #fff 0 2px, transparent 3px),
    radial-gradient(circle at 45% 10%, #fff 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 75% 30%, #fff 0 2px, transparent 3px),
    radial-gradient(circle at 25% 55%, #fff 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 60% 65%, #fff 0 2px, transparent 3px),
    radial-gradient(circle at 85% 75%, #fff 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 40% 90%, #fff 0 2px, transparent 3px),
    linear-gradient(135deg, #d9b8a3, var(--rose-gold));
}
.gallery-tile--glamour { background: linear-gradient(160deg, #7a2530, #b3323f 45%, #8a2a35); }

.gallery-tile__overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 1rem;
  background: rgba(20, 14, 14, 0.35); opacity: 0; transition: opacity 0.3s var(--ease);
}
.gallery-tile:hover .gallery-tile__overlay, .gallery-tile:focus-within .gallery-tile__overlay { opacity: 1; }
.gallery-tile__like, .gallery-tile__zoom {
  display: flex; align-items: center; gap: 0.35rem; color: #fff; background: rgba(255, 255, 255, 0.18);
  border-radius: 999px; padding: 0.5rem 0.8rem; backdrop-filter: blur(3px); transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.gallery-tile__like:hover, .gallery-tile__zoom:hover { background: rgba(255, 255, 255, 0.3); }
.gallery-tile__like svg, .gallery-tile__zoom svg { width: 18px; height: 18px; }
.gallery-tile__like-count { font-family: var(--font-mono); font-size: 0.78rem; }
.gallery-tile__like.is-liked svg { fill: #e8637a; stroke: #e8637a; }
.gallery-tile__like.pop { animation: likePop 0.4s var(--ease); }
@keyframes likePop { 0% { transform: scale(1); } 40% { transform: scale(1.25); } 100% { transform: scale(1); } }

.gallery-tile__caption {
  position: absolute; left: 0.75rem; bottom: 0.65rem; color: #fff; font-family: var(--font-head); font-style: italic;
  font-size: 0.95rem; text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4); opacity: 0; transition: opacity 0.3s var(--ease);
}
.gallery-tile:hover .gallery-tile__caption, .gallery-tile:focus-within .gallery-tile__caption { opacity: 1; }

/* ==========================================================================
   Prestations — onglets fluides
   ========================================================================== */
.menu-tabs {
  position: relative; display: inline-flex; gap: 0.25rem; margin-top: 2rem; padding: 0.35rem;
  background: var(--surface); border: 1px solid var(--border); border-radius: 999px; overflow-x: auto; max-width: 100%;
}
.menu-tabs__indicator {
  position: absolute; top: 0.35rem; left: 0.35rem; height: calc(100% - 0.7rem); width: 0;
  background: var(--rose-gold-deep); border-radius: 999px; transition: transform 0.35s var(--ease), width 0.35s var(--ease); z-index: 0;
}
.menu-tab { position: relative; z-index: 1; font-size: 0.9rem; color: var(--text-muted); padding: 0.65rem 1.4rem; border-radius: 999px; white-space: nowrap; transition: color 0.25s var(--ease); }
.menu-tab.is-active { color: #fff; }

.prestations-list { margin-top: 2.5rem; }
.prestation-group { display: flex; flex-direction: column; gap: 1rem; }
.prestation-item {
  display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 1rem;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem 1.5rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.prestation-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.prestation-item__info h3 { font-size: 1.05rem; font-weight: 500; margin-bottom: 0.2rem; }
.prestation-item__info p { color: var(--text-muted); font-size: 0.85rem; }
.prestation-item__meta { display: flex; flex-direction: column; align-items: flex-end; gap: 0.2rem; }
.prestation-item__duration { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-muted); }
.prestation-item__price { font-family: var(--font-mono); font-size: 1rem; color: var(--rose-gold-deep); font-weight: 600; }

@media (max-width: 640px) {
  .prestation-item { grid-template-columns: 1fr; text-align: left; }
  .prestation-item__meta { flex-direction: row; align-items: center; gap: 0.75rem; }
}

/* ==========================================================================
   Fidélité & Parrainage
   ========================================================================== */
.perk-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); }
.perk-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.perk-card__desc { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 1.5rem; }

.loyalty-stamps { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1rem; }
.loyalty-stamp { width: 32px; height: 32px; border-radius: 50%; border: 1.5px dashed var(--border-strong); }
.loyalty-stamp.is-filled { border-style: solid; border-color: var(--rose-gold-deep); background: var(--blush); }
.loyalty-hint { font-size: 0.82rem; color: var(--text-muted); font-style: italic; }

.perk-card--referral { background: linear-gradient(160deg, var(--surface), var(--blush)); }
.referral-code {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; background: var(--surface); border: 1px dashed var(--border-strong);
  border-radius: var(--radius-sm); padding: 1rem 1.25rem; margin-bottom: 1rem;
}
.referral-code #referralCode { font-family: var(--font-mono); font-size: 1.05rem; font-weight: 600; color: var(--rose-gold-deep); letter-spacing: 0.04em; }
.referral-hint { font-size: 0.82rem; color: var(--text-muted); }

/* ==========================================================================
   Booking — stepper, calendrier, créneaux
   ========================================================================== */
.booking { max-width: 720px; margin: 2.5rem auto 0; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.75rem); box-shadow: var(--shadow-md); }

.booking__steps { position: relative; display: flex; justify-content: space-between; margin-bottom: 2.5rem; }
.booking__steps::before { content: ""; position: absolute; top: 15px; left: 15px; right: 15px; height: 2px; background: var(--border-strong); z-index: 0; }
.booking__steps::after { content: ""; position: absolute; top: 15px; left: 15px; height: 2px; width: var(--fill, 0%); background: var(--rose-gold-deep); z-index: 0; transition: width 0.4s var(--ease); }
.booking__step { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; flex: 1; }
.booking__step-num {
  width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--surface); border: 2px solid var(--border-strong); font-family: var(--font-mono); font-size: 0.82rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.booking__step-label { font-size: 0.72rem; color: var(--text-muted); text-align: center; }
.booking__step.is-active .booking__step-num { border-color: var(--rose-gold-deep); color: var(--rose-gold-deep); }
.booking__step.is-active .booking__step-label { color: var(--text); }
.booking__step.is-done .booking__step-num { background: var(--rose-gold-deep); border-color: var(--rose-gold-deep); color: #fff; }

.booking__panel { display: none; border: none; }
.booking__panel.is-active { display: block; animation: panelFade 0.35s var(--ease); }
.booking__panel.is-shaking { animation: shake 0.4s; }
@keyframes panelFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes shake {
  10%, 90% { transform: translateX(-2px); } 20%, 80% { transform: translateX(4px); }
  30%, 50%, 70% { transform: translateX(-6px); } 40%, 60% { transform: translateX(6px); }
}
.booking__panel-title { font-size: 1.1rem; margin-bottom: 1.25rem; }
.form-error { font-size: 0.85rem; color: var(--danger); min-height: 1.2em; margin-top: 0.75rem; }

.form-field select {
  width: 100%; background: var(--bg); border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  padding: 0.85rem 1rem; transition: border-color 0.2s var(--ease);
}
.form-field select:focus { border-color: var(--rose-gold-deep); }

.calendar__nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.calendar__nav-btn { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border-strong); font-size: 1.1rem; display: flex; align-items: center; justify-content: center; transition: border-color 0.2s var(--ease), color 0.2s var(--ease); }
.calendar__nav-btn:hover:not(:disabled) { border-color: var(--rose-gold-deep); color: var(--rose-gold-deep); }
.calendar__nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.calendar__label { font-weight: 600; font-size: 1.05rem; }
.calendar__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.4rem; }
.calendar__day-label { text-align: center; font-family: var(--font-mono); font-size: 0.68rem; color: var(--text-muted); padding-bottom: 0.5rem; }
.calendar__day { aspect-ratio: 1 / 1; border-radius: 50%; border: 1px solid transparent; font-size: 0.88rem; display: flex; align-items: center; justify-content: center; color: var(--text); transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease); }
.calendar__day:not(:disabled):hover { border-color: var(--rose-gold-deep); }
.calendar__day:disabled { color: var(--text-muted); opacity: 0.4; cursor: not-allowed; }
.calendar__day.is-closed-day { opacity: 0.55; text-decoration: line-through; }
.calendar__day.is-today { font-weight: 700; }
.calendar__day.is-selected { background: var(--rose-gold-deep); border-color: var(--rose-gold-deep); color: #fff; }
.calendar__legend { display: flex; align-items: center; gap: 0.5rem; margin-top: 1.25rem; font-size: 0.78rem; color: var(--text-muted); }
.calendar__legend-dot { width: 8px; height: 8px; border-radius: 50%; border: 1px solid var(--text-muted); flex-shrink: 0; }

.time-group { margin-top: 1.5rem; }
.time-group__list { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.time-slot { font-family: var(--font-mono); font-size: 0.85rem; border: 1px solid var(--border-strong); border-radius: var(--radius-sm); padding: 0.6rem 1.1rem; color: var(--text); transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease); }
.time-slot:hover { border-color: var(--rose-gold-deep); }
.time-slot.is-selected { background: var(--rose-gold-deep); border-color: var(--rose-gold-deep); color: #fff; }
.time-empty { color: var(--text-muted); font-size: 0.9rem; font-style: italic; margin-top: 1rem; }

.form-row { display: grid; gap: 1.1rem; margin-bottom: 1.1rem; }
@media (min-width: 560px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.1rem; }
.form-row .form-field { margin-bottom: 0; }
.form-field label { font-size: 0.85rem; color: var(--text-muted); }
.form-field input, .form-field textarea {
  background: var(--bg); border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  padding: 0.85rem 1rem; transition: border-color 0.2s var(--ease); resize: vertical;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--rose-gold-deep); }

.booking__summary { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1.25rem; margin-top: 1.25rem; font-size: 0.88rem; }
.booking__summary dl { display: grid; grid-template-columns: auto 1fr; gap: 0.5rem 1rem; }
.booking__summary dt { color: var(--text-muted); font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; }
.booking__summary dd { color: var(--text); }

.booking__nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2rem; }

.booking__success { text-align: center; padding-block: 1.5rem; }
.booking__success svg { margin: 0 auto 1rem; color: var(--rose-gold-deep); }
.booking__success h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.booking__success p { color: var(--text-muted); font-size: 0.92rem; max-width: 48ch; margin: 0 auto; }
.booking__success-recap {
  text-align: left; white-space: pre-wrap; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 1.25rem; margin: 1.5rem 0; font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-muted);
  max-height: 260px; overflow-y: auto;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; }
.testimonial-card__stars { color: var(--rose-gold-deep); letter-spacing: 0.1em; margin-bottom: 0.85rem; }
.testimonial-card__quote { color: var(--text); font-size: 0.96rem; font-style: italic; margin-bottom: 1rem; }
.testimonial-card__author { color: var(--text-muted); font-size: 0.82rem; font-family: var(--font-mono); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 760px; margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); overflow: hidden; }
.faq-item__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.5rem; text-align: left; font-weight: 600; }
.faq-item__icon { font-family: var(--font-mono); color: var(--rose-gold-deep); font-size: 1.2rem; transition: transform 0.3s var(--ease); flex-shrink: 0; }
.faq-item__q[aria-expanded="true"] .faq-item__icon { transform: rotate(45deg); }
.faq-item__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s var(--ease); }
.faq-item__a > p { overflow: hidden; color: var(--text-muted); font-size: 0.92rem; padding: 0 1.5rem; }
.faq-item__q[aria-expanded="true"] + .faq-item__a { grid-template-rows: 1fr; }
.faq-item__q[aria-expanded="true"] + .faq-item__a > p { padding-bottom: 1.25rem; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact__grid { display: grid; gap: 2.5rem; }
@media (min-width: 900px) { .contact__grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.contact__email { display: inline-block; margin-top: 1.75rem; font-family: var(--font-mono); font-size: 1.15rem; color: var(--rose-gold-deep); border-bottom: 1px solid transparent; transition: border-color 0.2s var(--ease); }
.contact__email:hover { border-color: var(--rose-gold-deep); }
.contact__note { margin-top: 0.5rem; color: var(--text-muted); font-size: 0.85rem; }

.contact-info { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; display: flex; flex-direction: column; gap: 1.25rem; box-shadow: var(--shadow-sm); }
.contact-info__label { display: block; font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--rose-gold-deep); margin-bottom: 0.35rem; }
.contact-info__row p { color: var(--text-muted); font-size: 0.92rem; }
.contact-info__row a { color: var(--text); transition: color 0.2s var(--ease); }
.contact-info__row a:hover { color: var(--rose-gold-deep); }
.contact-info__socials { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.social-icon { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border-strong); border-radius: 50%; color: var(--text-muted); transition: border-color 0.2s var(--ease), color 0.2s var(--ease); }
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover { border-color: var(--rose-gold-deep); color: var(--rose-gold-deep); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { border-top: 1px solid var(--border); padding-block: 3rem; background: var(--surface); }
.site-footer__inner { display: grid; gap: 2rem; }
@media (min-width: 768px) { .site-footer__inner { grid-template-columns: 1.5fr 1fr 1fr; } }
.site-footer__tagline { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.75rem; max-width: 34ch; }
.site-footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.site-footer__links a { color: var(--text-muted); font-size: 0.9rem; transition: color 0.2s var(--ease); }
.site-footer__links a:hover { color: var(--rose-gold-deep); }
.site-footer__contact a { color: var(--rose-gold-deep); font-family: var(--font-mono); font-size: 0.9rem; }
.site-footer__contact p { color: var(--text-muted); font-size: 0.8rem; margin-top: 0.6rem; }
.site-footer__credit a { color: var(--text-muted); text-decoration: underline; text-decoration-color: var(--border-strong); }
.site-footer__credit a:hover { color: var(--rose-gold-deep); }
.logo--footer { font-size: 1.6rem; font-family: var(--font-head); font-weight: 600; letter-spacing: 0.08em; }

/* ==========================================================================
   Lightbox
   ========================================================================== */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 900; background: rgba(20, 14, 14, 0.55);
  backdrop-filter: blur(3px); opacity: 0; transition: opacity 0.35s var(--ease);
}
.lightbox-overlay.is-visible { opacity: 1; }

.lightbox {
  position: fixed; top: 50%; left: 50%; z-index: 901; width: min(420px, calc(100vw - 2.5rem));
  background: var(--surface); border-radius: var(--radius-lg); padding: 1.5rem;
  transform: translate(-50%, -50%) scale(0.94); opacity: 0; pointer-events: none;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); box-shadow: var(--shadow-md);
}
.lightbox.is-open { transform: translate(-50%, -50%) scale(1); opacity: 1; pointer-events: auto; }
.lightbox__close {
  position: absolute; top: 1rem; right: 1rem; width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border-strong); display: flex; align-items: center; justify-content: center;
  color: var(--text); transition: border-color 0.2s var(--ease), color 0.2s var(--ease); z-index: 1;
}
.lightbox__close:hover { border-color: var(--rose-gold-deep); color: var(--rose-gold-deep); }
.lightbox__close svg { width: 16px; height: 16px; }
.lightbox__art { aspect-ratio: 1 / 1; border-radius: var(--radius-sm); margin-bottom: 1rem; }
.lightbox__caption { font-family: var(--font-head); font-style: italic; font-size: 1.2rem; text-align: center; }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   QA Mobile — correctifs forcés (n'affectent que <= 768px, desktop inchangé)
   ========================================================================== */
@media (max-width: 768px) {
  /* Nav mobile : header réduit à l'essentiel (logo + burger), comme le site racine */
  .logo__tagline { display: none !important; }

  /* Filtre Prestations : onglets pleine largeur et à cible tactile égale plutôt qu'un
     ruban à défilement horizontal cramé — même logique ergonomique que le site racine */
  .menu-tabs { display: flex !important; width: 100% !important; overflow-x: visible !important; }
  .menu-tab { flex: 1 !important; text-align: center !important; padding: 0.65rem 0.5rem !important; font-size: 0.82rem !important; }

  /* Menu de navigation : écrasement complet de l'état fermé ET de l'état ouvert.
     .nav.is-open porte elle-même la totalité des propriétés de dimensionnement
     (aucune dépendance à inset seul) pour garantir un plein écran réel. */
  .nav {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 9999 !important;
    background-color: var(--bg) !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 2rem !important;
    overflow-y: auto !important;
    transform: translateX(100%) !important;
    transition: transform 0.35s var(--ease) !important;
  }
  .nav.is-open {
    position: fixed !important;
    inset: 0 !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 9999 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 2rem !important;
    background-color: var(--bg) !important;
    transform: translateX(0) !important;
  }
  .nav__list {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    text-align: center !important;
  }
  .nav__link { font-size: 1.4rem !important; }
  .nav__cta { display: inline-flex !important; }

  /* Bouton de fermeture (.nav__close = le burger) : sorti du flux standard,
     ancré en haut à droite de l'écran, toujours au-dessus de l'overlay. */
  .burger,
  .nav__close {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    z-index: 10000 !important;
  }

  /* Stepper Réservation : les boutons Précédent / Suivant / Confirmer débordaient
     du viewport en ligne — structure forcée en colonne, pleine largeur, sans overflow-x */
  .booking__nav {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
  }
  .booking__nav .btn {
    width: 100% !important;
    box-sizing: border-box !important;
  }
}
