/* ============================================================
   STYLE.CSS — Rivélisse · Institut Dermo-Esthétique · GSAP Edition
   Palette : "Clinique Premium" — blanc, bleu glacier, gris perle, chrome
   Typo : Playfair Display (titres) + Montserrat (corps)
   ============================================================ */

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --cream:         #F4F7F9;   /* gris perle pâle — nos soins, stats, créations */
  --ivory:         #FCFDFE;   /* blanc ivoire très doux */
  --sand:          #EAF0F4;   /* bleu-gris pâle — contact */
  --gold-pale:     #E5ECF1;   /* bleu glacier clair — fonds légers */
  --gold:          #6C93B5;   /* bleu acier principal — accent boutons, lignes */
  --gold-light:    #96B8D4;   /* bleu glacier clair — survols, highlights */
  --gold-dim:      #4E7396;   /* bleu profond — début dégradé */
  --charcoal:      #24343F;   /* ardoise bleu-gris — pourquoi nous, FAQ, footer */
  --dark:          #16232E;   /* bleu nuit profond — statement, témoignages, header scrolled */
  --dark-soft:     #24343F;   /* = charcoal */
  --taupe:         #5A6B78;   /* gris ardoise — textes secondaires */
  --gray:          #96A6B2;   /* gris bleu moyen */
  --gray-light:    #D7E0E6;   /* gris très clair — bordures */
  --white:         #FFFFFF;
  --overlay:       rgba(6, 10, 14, 0.62);

  --font-serif:    'Playfair Display', Georgia, serif;
  --font-sans:     'Montserrat', Arial, sans-serif;

  --transition:    0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-soft:   0 4px 32px rgba(0,0,0,0.09);
  --shadow-card:   0 2px 20px rgba(0,0,0,0.07);
  --radius:        2px;

  --header-h:      76px;
  --banner-h:      0px;
}

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

html { font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: #FFFFFF;
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.7;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-sans); }
section { position: relative; }

/* ── ACCESSIBILITÉ ──────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -60px; left: 0.5rem;
  z-index: 10001;
  background: var(--dark);
  color: var(--white);
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  transition: top 0.25s ease;
}
.skip-link:focus { top: 0.5rem; }

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

@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;
  }
}

/* ── TYPOGRAPHIE ────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); letter-spacing: 0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: 0.01em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
p  { font-size: 0.96rem; color: var(--dark-soft); }

/* ── UTILITAIRES ────────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 { color: var(--dark); margin-bottom: 1rem; }
.section-header p  { color: var(--taupe); font-size: 1rem; max-width: 520px; margin: 0.8rem auto 0; }

.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
  box-shadow: 0 4px 20px rgba(108,147,181,0.30);
}
.btn-gold:hover { background: transparent; color: var(--gold); box-shadow: none; }
.btn-outline { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--white); }

/* ── SHIMMER — bande lumineuse qui balaie les boutons pleins au survol ── */
.btn::before,
.btn-hero::before,
.btn-header-reserver::before,
.form-submit::before,
#floating-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 45%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: translateX(-280%) skewX(-20deg);
  transition: transform 0.75s ease;
  pointer-events: none;
}
.btn:hover::before,
.btn-hero:hover::before,
.btn-header-reserver:hover::before,
.form-submit:hover::before,
#floating-btn:hover::before {
  transform: translateX(320%) skewX(-20deg);
}
@media (prefers-reduced-motion: reduce) {
  .btn::before, .btn-hero::before, .btn-header-reserver::before,
  .form-submit::before, #floating-btn::before { display: none; }
}

/* ── Micro-interaction au clic — léger tassement tactile ─────── */
.btn:active, .btn-header-reserver:active, .form-submit:active, #floating-btn:active {
  transform: scale(0.97);
}
.btn-hero:active { box-shadow: 0 2px 12px rgba(108,147,181,0.30); }
@media (prefers-reduced-motion: reduce) {
  .btn:active, .btn-header-reserver:active, .form-submit:active, #floating-btn:active { transform: none; }
}

/* ── VAGUES SVG ─────────────────────────────────────────────── */
.wave-divider {
  display: block;
  line-height: 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.wave-divider svg {
  display: block;
  width: 200%;
  height: 80px;
  animation: waveFlow 14s linear infinite;
}
@keyframes waveFlow {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── BANDEAU ANNONCE ────────────────────────────────────────── */
#announcement-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--banner-h);
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1002;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.70);
  overflow: hidden;
  transition: height 0.35s ease;
  padding: 0 3rem;
}
#announcement-bar a { color: var(--gold); font-weight: 700; }
#close-banner {
  position: absolute;
  right: 1.2rem; top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.35);
  font-size: 0.85rem;
  padding: 0.3rem;
  transition: color var(--transition);
  line-height: 1;
}
#close-banner:hover { color: rgba(255,255,255,0.8); }

/* ── HEADER ─────────────────────────────────────────────────── */
#main-header {
  position: fixed;
  top: var(--banner-h); left: 0; right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4%;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}
#main-header.scrolled {
  background: rgba(22,35,46,0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 28px rgba(0,0,0,0.25);
}

.logo { display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
.logo-img { height: 44px; width: 44px; object-fit: cover; border-radius: 50%; border: 1.5px solid var(--gold); }
.logo-initials {
  width: 44px; height: 44px;
  border: 1.5px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1rem;
  color: var(--gold); letter-spacing: 0.05em; flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.15rem; letter-spacing: 0.08em;
  color: var(--white); transition: color var(--transition);
}

nav.main-nav { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
nav.main-nav a {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  transition: color var(--transition); position: relative;
}
nav.main-nav a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width var(--transition);
}
nav.main-nav a:hover::after { width: 100%; }
nav.main-nav a:hover { color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.header-insta { display: flex; align-items: center; color: rgba(255,255,255,0.80); transition: color var(--transition); }
.header-insta:hover { color: var(--gold); }

.btn-header-reserver {
  padding: 0.55rem 1.4rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: var(--radius); background: var(--gold); color: var(--white);
  border: 1.5px solid var(--gold);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 14px rgba(108,147,181,0.30);
  will-change: transform;
  position: relative;
  overflow: hidden;
}
.btn-header-reserver:hover { background: transparent; color: var(--gold); box-shadow: none; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; z-index: 1001; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

#mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: rgba(22,35,46,0.97);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  z-index: 999;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 2.2rem; opacity: 0; transition: opacity 0.4s ease;
}
#mobile-menu::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(108,147,181,0.14) 0%, transparent 60%);
  pointer-events: none;
}
#mobile-menu.open { display: flex; opacity: 1; }
#mobile-menu a {
  font-family: var(--font-serif); font-size: 2rem; color: var(--white); letter-spacing: 0.05em;
  transition: color var(--transition);
  position: relative; z-index: 1;
}
#mobile-menu a:hover { color: var(--gold); }
#mobile-menu .menu-reserver {
  margin-top: 1rem; font-family: var(--font-sans); font-size: 0.8rem;
  font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.8rem 2.5rem; border: 1.5px solid var(--gold); color: var(--gold); border-radius: var(--radius);
}

/* ════════════════════════════════════════════════════════════
   HERO — Editorial left-aligned
════════════════════════════════════════════════════════════ */
#accueil {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10vh 6% 6vh;
  background: var(--dark);
}

/* ── AURORA GLOW — halos glacier animés, fond du hero (plus de photo) ── */
.hero-aurora {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  mix-blend-mode: screen;
}
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.5;
  will-change: transform, opacity;
}
.aurora-blob:nth-child(1) {
  width: 38vw; height: 38vw;
  top: -14%; left: 8%;
  background: radial-gradient(circle, rgba(150,184,212,0.55) 0%, transparent 72%);
  animation: auroraFloat1 17s ease-in-out infinite;
}
.aurora-blob:nth-child(2) {
  width: 34vw; height: 34vw;
  bottom: -14%; right: 6%;
  background: radial-gradient(circle, rgba(108,147,181,0.48) 0%, transparent 72%);
  animation: auroraFloat2 21s ease-in-out infinite;
}
.aurora-blob:nth-child(3) {
  width: 26vw; height: 26vw;
  top: 34%; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(229,236,241,0.32) 0%, transparent 72%);
  animation: auroraFloat3 14s ease-in-out infinite;
}
.aurora-blob:nth-child(4) {
  width: 22vw; height: 22vw;
  bottom: 6%; left: 14%;
  background: radial-gradient(circle, rgba(150,184,212,0.4) 0%, transparent 72%);
  animation: auroraFloat2 18s ease-in-out infinite reverse;
}
@keyframes auroraFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  50%      { transform: translate(-4%, 6%) scale(1.12); opacity: 0.68; }
}
@keyframes auroraFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  50%      { transform: translate(5%, -5%) scale(1.08); opacity: 0.58; }
}
@keyframes auroraFloat3 {
  0%, 100% { transform: translate(-50%, 0) scale(1); opacity: 0.28; }
  50%      { transform: translate(-50%, -8%) scale(1.15); opacity: 0.44; }
}
@media (prefers-reduced-motion: reduce) {
  .aurora-blob { animation: none; }
}

/* ── FAISCEAUX — fins traits lumineux qui balaient le fond, écho discret
   du thème laser. Chaque trait a sa propre keyframe (rotation figée dans
   le transform) pour éviter les glitchs d'un translate+rotate partagé. */
.hero-beams {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero-beam {
  position: absolute;
  top: -30%;
  width: 1px;
  height: 160%;
  background: linear-gradient(180deg, transparent 0%, rgba(150,184,212,0.6) 45%, rgba(229,236,241,0.4) 55%, transparent 100%);
  opacity: 0;
}
.hero-beam:nth-child(1) { left: 18%; animation: beamSweep1 11s ease-in-out infinite; }
.hero-beam:nth-child(2) { left: 52%; animation: beamSweep2 14s ease-in-out infinite 3.5s; }
.hero-beam:nth-child(3) { left: 82%; animation: beamSweep3 17s ease-in-out infinite 7s; }
@keyframes beamSweep1 {
  0%, 100% { opacity: 0; transform: translateX(-3vw) rotate(13deg); }
  50%      { opacity: 0.5; transform: translateX(3vw) rotate(13deg); }
}
@keyframes beamSweep2 {
  0%, 100% { opacity: 0; transform: translateX(3vw) rotate(-10deg); }
  50%      { opacity: 0.38; transform: translateX(-3vw) rotate(-10deg); }
}
@keyframes beamSweep3 {
  0%, 100% { opacity: 0; transform: translateX(-3vw) rotate(16deg); }
  50%      { opacity: 0.32; transform: translateX(3vw) rotate(16deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-beam { animation: none; opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

h1.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.05rem;
  margin-bottom: 1.4rem;
}

.hero-word1 {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2.6rem, 6.6vw, 5.2rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 0.92;
  text-shadow: 0 4px 40px rgba(0,0,0,0.55);
}

.hero-word1 .letter {
  display: inline-block;
  will-change: transform, filter, opacity;
}

.hero-word2 {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.1vw, 1.7rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.10em;
  color: var(--gold-light);
  line-height: 1.6;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.9rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.58);
  margin-bottom: 2.4rem;
  letter-spacing: 0.04em;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.btn-hero {
  display: inline-block;
  padding: 0.88rem 2.4rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 24px rgba(108,147,181,0.38);
  will-change: transform;
  position: relative;
  overflow: hidden;
}
.btn-hero:hover { background: transparent; color: var(--gold); box-shadow: none; }

.btn-text-link {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}
.btn-text-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}
.btn-text-link:hover { color: var(--gold); }
.btn-text-link:hover::after { width: 100%; }

/* États initiaux hero — GSAP anime vers visible après l'entrée */
.hero-eyebrow,
.hero-word1,
.hero-word2,
.hero-subtitle,
#hero-ctas,
#hero-trust,
.hero-scroll-hint {
  opacity: 0;
}

/* ── BADGE DE CONFIANCE — glassmorphism ──────────────────────── */
.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.8rem;
  padding: 0.7rem 1.3rem;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  animation: heroTrustFloat 5s ease-in-out infinite;
}
.hero-trust-stars {
  color: var(--gold-light);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  line-height: 1;
}
.hero-trust-text {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.82);
  white-space: nowrap;
}
@keyframes heroTrustFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-trust-badge { animation: none; }
}

/* ── TEXTURE GRAIN — profondeur éditoriale subtile ───────────── */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.05;
  pointer-events: none;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Scroll hint — bottom right */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.scroll-hint-text {
  font-family: var(--font-sans);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.40em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
  writing-mode: vertical-rl;
}
.scroll-hint-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.40), transparent);
  animation: scrollHintAnim 2.2s ease-in-out infinite;
}
@keyframes scrollHintAnim {
  0%, 100% { opacity: 0.35; transform: scaleY(1); }
  50%       { opacity: 0.85; transform: scaleY(0.55); }
}

/* ════════════════════════════════════════════════════════════
   TICKER STRIP — entre hero et statement
════════════════════════════════════════════════════════════ */
.ticker-strip {
  background: var(--dark);
  padding: 1.1rem 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: tickerScroll 32s linear infinite;
  -webkit-mask: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}
.ticker-track span {
  font-family: var(--font-sans);
  font-size: 0.60rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  padding: 0 2.2rem;
}
.ticker-track span.ticker-sep {
  color: rgba(108,147,181,0.50);
  padding: 0 0.5rem;
  letter-spacing: 0;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════════════════
   STATEMENT SECTION
════════════════════════════════════════════════════════════ */
#statement {
  padding: 7rem 5%;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#statement::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(108,147,181,0.05) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

/* Photo en fond, très peu opaque — `mix-blend-mode:luminosity` sur le fond
   bleu nuit du bloc recolore la photo en duotone bleuté au lieu de laisser
   apparaître ses teintes chaudes naturelles à travers la transparence.
   Le bas de la photo est masqué en suivant la même courbe que la vague
   du `.wave-divider` juste en dessous (au lieu d'un bord rectangulaire
   sec) — le masque est un rectangle plein sur ~90% de la hauteur puis
   la même série de courbes que le path SVG de la vague sur les 10%
   restants, pour que la photo semble "couler" dans la vague plutôt que
   d'être coupée net. */
.statement-photo {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/statement-legs.jpg');
  background-image: -webkit-image-set(url('../assets/images/statement-legs.webp') 1x);
  background-image: image-set(url('../assets/images/statement-legs.webp') 1x);
  background-size: cover;
  background-position: center 42%;
  opacity: 0.32;
  mix-blend-mode: luminosity;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2880 800' preserveAspectRatio='none'%3E%3Crect x='0' y='0' width='2880' height='720' fill='white'/%3E%3Cpath fill='white' d='M0,760 C360,800 720,720 1080,760 C1440,800 1800,720 2160,760 C2520,800 2880,720 2880,760 L2880,720 L0,720 Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2880 800' preserveAspectRatio='none'%3E%3Crect x='0' y='0' width='2880' height='720' fill='white'/%3E%3Cpath fill='white' d='M0,760 C360,800 720,720 1080,760 C1440,800 1800,720 2160,760 C2520,800 2880,720 2880,760 L2880,720 L0,720 Z'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}

.statement-inner {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.2rem;
  position: relative;
  z-index: 2;
}

.statement-line {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.statement-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.32;
  letter-spacing: 0.01em;
}
.statement-quote em {
  font-style: italic;
  color: var(--gold-light);
}

.statement-body {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

.statement-cta {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}
.statement-cta::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}
.statement-cta:hover { color: var(--gold-light); }
.statement-cta:hover::after { width: 100%; }

/* ── NOS SOINS ───────────────────────────────────────────────── */
#nos-soins {
  padding: 7rem 5%;
  background:
    linear-gradient(110deg,
      transparent 0%, transparent 39%,
      rgba(36,52,63,0.07) 39%, rgba(36,52,63,0.07) 39.8%,
      rgba(36,52,63,0.04) 39.8%, rgba(36,52,63,0.04) 41%,
      rgba(36,52,63,0.02) 41%, rgba(36,52,63,0.02) 42%,
      transparent 42%),
    radial-gradient(ellipse 100% 80% at 25% 75%, rgba(244,247,249,0.50) 0%, transparent 65%),
    radial-gradient(ellipse 80% 90% at 75% 25%, rgba(244,247,249,0.35) 0%, transparent 60%),
    #F4F7F9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(108,147,181,0.18);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(0,0,0,0.10); border-color: rgba(108,147,181,0.35); }
.service-card:hover::before { width: 100%; }

.service-icon { font-size: 1.6rem; color: var(--gold); margin-bottom: 1rem; display: block; }
.service-title { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 0.6rem; }
.service-desc  { font-size: 0.82rem; color: var(--taupe); line-height: 1.6; margin-bottom: 1rem; }
.service-prix  {
  font-family: var(--font-sans) !important; font-size: 0.8rem !important; font-style: normal !important;
  font-weight: 700 !important; letter-spacing: 0.14em !important; text-transform: uppercase !important;
  color: var(--gold) !important; background: none !important; border: none !important;
  border-top: 1px solid rgba(108,147,181,0.22) !important; border-radius: 0 !important;
  padding: 0.65em 0 0 !important; display: block !important; margin-bottom: 0.4rem !important;
}
.service-cta {
  display: inline-block; margin-top: 1.2rem;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); position: relative; padding-bottom: 2px;
}
.service-cta::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 1px; background: var(--gold-pale); transition: background var(--transition);
}
.service-cta:hover::after { background: var(--gold); }

/* Accordion sous-services */
.service-expand-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  width: 100%; margin-top: 1rem; padding: 0.55rem 0 0;
  border-top: 1px solid rgba(108,147,181,0.18);
  font-family: var(--font-sans); font-size: 0.60rem; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--gold);
  cursor: pointer; background: none; border-left: none; border-right: none; border-bottom: none;
  transition: color var(--transition);
}
.service-expand-btn:hover { color: var(--gold-light); }
.expand-arrow { font-size: 0.85rem; display: inline-block; transition: transform 0.3s ease; line-height: 1; }
.service-expand-panel { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.25,0.46,0.45,0.94); }
.service-expand-panel.open { max-height: 320px; }
.service-expand-panel ul { list-style: none; padding-top: 0.75rem; text-align: left; }
.service-expand-panel li {
  display: flex; justify-content: space-between; align-items: center; gap: 0.5rem;
  font-size: 0.76rem; color: var(--taupe); padding: 0.32rem 0;
  border-bottom: 1px solid rgba(108,147,181,0.10);
}
.service-expand-panel li:last-child { border-bottom: none; }
.ss-prix { color: var(--gold); font-weight: 600; font-size: 0.72rem; white-space: nowrap; flex-shrink: 0; }

/* ── POURQUOI NOUS ───────────────────────────────────────────── */
#pourquoi-nous {
  padding: 8rem 5%;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
#pourquoi-nous::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 90%, rgba(108,147,181,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 90% 10%, rgba(108,147,181,0.07) 0%, transparent 50%);
  pointer-events: none;
}
#pourquoi-nous .section-header h2 { color: var(--white); }
#pourquoi-nous .section-header p  { color: rgba(255,255,255,0.45); }

.arguments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1100px; margin: 0 auto; }
.argument-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(108,147,181,0.20);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.argument-card::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width var(--transition);
}
.argument-card:hover::before { width: 80%; }
.argument-card:hover { background: rgba(108,147,181,0.07); border-color: rgba(108,147,181,0.40); transform: translateY(-6px); }
.argument-icon { font-size: 2.2rem; color: var(--gold); margin-bottom: 1.4rem; }
.argument-card h3 { font-family: var(--font-serif); font-size: 1.25rem; color: var(--white); margin-bottom: 0.8rem; }
.argument-card p  { font-size: 0.88rem; color: rgba(255,255,255,0.50); line-height: 1.75; }

.argument-card-img {
  margin: -3rem -2rem 1.6rem;
  aspect-ratio: 16/11;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.argument-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(0.92) contrast(1.05);
  transition: transform 0.6s ease;
}
.argument-card:hover .argument-card-img img { transform: scale(1.05); }

/* ── CHIFFRES CLÉS ───────────────────────────────────────────── */
#stats {
  padding: 5rem 5%;
  background:
    repeating-linear-gradient(45deg, rgba(108,147,181,0.022) 0, rgba(108,147,181,0.022) 1px, transparent 1px, transparent 5px),
    repeating-linear-gradient(-45deg, rgba(108,147,181,0.022) 0, rgba(108,147,181,0.022) 1px, transparent 1px, transparent 5px),
    var(--cream);
  position: relative;
}
#stats::before, #stats::after {
  content: ''; position: absolute; left: 5%; right: 5%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(108,147,181,0.25), transparent);
}
#stats::before { top: 0; }
#stats::after  { bottom: 0; }

.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  max-width: 1100px; margin: 0 auto; text-align: center;
}
.stat-item { padding: 1.5rem 1rem; position: relative; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(108,147,181,0.20);
}
.stat-number {
  font-family: var(--font-serif); font-size: clamp(2.5rem, 3.5vw, 4rem); font-weight: 700;
  color: var(--gold); line-height: 1; display: flex; align-items: baseline; gap: 0.06em;
}
.stat-suffix  { font-size: 0.5em; font-family: var(--font-sans); font-weight: 600; letter-spacing: 0.04em; color: var(--gold-light); }
.stat-label   { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--taupe); }

.google-badge {
  display: flex; align-items: center; justify-content: center; gap: 0.8rem; margin-top: 2.8rem; flex-wrap: wrap;
}
.google-stars { color: var(--gold); font-size: 1.15rem; letter-spacing: 0.08em; line-height: 1; }
.google-badge-text { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--taupe); font-weight: 600; }
.google-badge-sep  { width: 1px; height: 20px; background: rgba(108,147,181,0.25); }

/* ── GALERIE CRÉATIONS ───────────────────────────────────────── */
#nos-creations {
  padding: 7rem 5%;
  background:
    linear-gradient(68deg, transparent 0%, transparent 44%, rgba(36,52,63,0.06) 44%, rgba(36,52,63,0.06) 44.9%, rgba(36,52,63,0.03) 44.9%, rgba(36,52,63,0.03) 46.2%, transparent 46.2%),
    radial-gradient(ellipse 90% 70% at 70% 30%, rgba(244,247,249,0.45) 0%, transparent 60%),
    radial-gradient(ellipse 70% 80% at 20% 80%, rgba(244,247,249,0.30) 0%, transparent 58%),
    #F4F7F9;
}

.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.gallery-item { display: flex; flex-direction: column; overflow: visible; }
.gallery-img-wrap { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; box-shadow: var(--shadow-card); flex-shrink: 0; cursor: zoom-in; }
.gallery-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.55s ease; }
.gallery-item:hover .gallery-img-wrap img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,35,46,0) 40%, rgba(22,35,46,0.65) 100%);
  display: flex; align-items: flex-end; justify-content: flex-end;
  padding: 1rem; opacity: 0; transition: opacity 0.4s ease;
  pointer-events: none;
}
.gallery-item:hover .gallery-overlay,
.gallery-img-wrap:focus-visible .gallery-overlay { opacity: 1; }
.gallery-zoom-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.16); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.1rem;
  transform: translateY(8px); transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-zoom-icon { transform: translateY(0); }

/* ── LIGHTBOX ─────────────────────────────────────────────────── */
#lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,15,19,0.94);
  display: flex; align-items: center; justify-content: center;
  padding: 4vh 4vw;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}
/* visibility explicite sur les enfants plutôt que de compter sur
   l'héritage — l'héritage d'une visibility en transition sur le parent
   n'est pas résolu de façon fiable/immédiate pour le calcul de style
   des descendants (focus() échoue sinon juste après l'ouverture). */
#lightbox-close, #lightbox img { visibility: hidden; transition: visibility 0s linear 0.35s; }
#lightbox.open { opacity: 1; visibility: visible; transition: opacity 0.35s ease, visibility 0s; }
#lightbox.open #lightbox-close, #lightbox.open img { visibility: visible; transition: visibility 0s; }
#lightbox img {
  max-width: 100%; max-height: 92vh; object-fit: contain;
  border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: scale(0.96); transition: transform 0.35s ease;
}
#lightbox.open img { transform: scale(1); }
#lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
  color: var(--white); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); min-height: 44px; min-width: 44px;
}
#lightbox-close:hover { background: var(--gold); border-color: var(--gold); }
@media (prefers-reduced-motion: reduce) {
  #lightbox, #lightbox img, .gallery-overlay, .gallery-zoom-icon { transition: none; }
}
.gallery-caption {
  padding: 0.9rem 0 0.2rem; font-family: var(--font-sans); font-size: 0.68rem;
  font-weight: 700; letter-spacing: 0.20em; text-transform: uppercase; color: var(--taupe); text-align: center;
}

/* ── MODAL RÉSERVATION — widget Planity marque blanche ────────── */
#planity-modal {
  position: fixed; inset: 0; z-index: 2100;
  background: rgba(22,35,46,0.72);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 4vh 4vw;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}
/* même piège documenté sur #lightbox : visibility explicite sur le
   panneau plutôt que de compter sur l'héritage depuis le parent. */
#planity-modal-panel { visibility: hidden; transition: visibility 0s linear 0.35s; }
#planity-modal.open {
  opacity: 1; visibility: visible; pointer-events: auto;
  transition: opacity 0.35s ease, visibility 0s;
}
#planity-modal.open #planity-modal-panel { visibility: visible; transition: visibility 0s; }
#planity-modal-panel {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius);
  width: min(900px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.6rem 1.6rem 1.6rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: scale(0.96);
  transition: transform 0.35s ease;
}
#planity-modal.open #planity-modal-panel { transform: scale(1); }
#planity-modal-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 1;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(22,35,46,0.06); border: 1px solid rgba(22,35,46,0.15);
  color: var(--dark); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); min-height: 44px; min-width: 44px;
}
#planity-modal-close:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
#planity-modal-loading {
  text-align: center; color: var(--taupe); font-size: 0.9rem; padding: 3rem 1rem;
}
#planity-modal.widget-ready #planity-modal-loading { display: none; }
@media (prefers-reduced-motion: reduce) {
  #planity-modal, #planity-modal-panel { transition: none; }
}
@media (max-width: 640px) {
  #planity-modal { padding: 0; }
  #planity-modal-panel { width: 100%; max-height: 100vh; height: 100%; border-radius: 0; padding-top: 3.4rem; }
}

/* Widget Planity (module marque blanche) — sélecteurs fournis par
   Planity, couleurs adaptées de leur indigo par défaut (#222671) vers
   l'accent Rivélisse pour que le calendrier s'intègre à la charte. */
#planitywl { background-color: var(--cream); }
@media (min-width: 768px) { #planitywl h3 { color: var(--dark) !important; } }
#planitywl .planity_bookappointment-button-choose { background-color: var(--gold); }
.planity_ui_appointment_background > div:nth-child(2) { padding: 10px; }
.planity-gift-voucher-button-choose { background-color: var(--gold) !important; }
#planitywl > div:nth-child(2) > div:nth-child(2) > div > div > div > div > h2 { color: var(--dark) !important; }
#planitywl > div:nth-child(2) > div:nth-child(2) > div > div > div > h2 { color: var(--dark) !important; }
#planitywl > div:nth-child(2) > div:nth-child(2) > div > div > div:nth-child(2) > span { color: var(--dark) !important; }

/* ── TÉMOIGNAGES ─────────────────────────────────────────────── */
#temoignages {
  padding: 7rem 5%;
  background: var(--dark);
  position: relative; overflow: hidden;
}
#temoignages::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 50% at 5% 50%, rgba(108,147,181,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 95% 50%, rgba(108,147,181,0.05) 0%, transparent 50%);
  pointer-events: none;
}
#temoignages .section-header h2 { color: var(--white); }
#temoignages .section-header p  { color: rgba(255,255,255,0.45); }

.resultats-strip {
  display: flex; align-items: center; gap: 2rem;
  max-width: 1100px; margin: 0 auto 3rem; position: relative; z-index: 1;
}
.resultats-strip .resultat-img {
  flex: 1; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; box-shadow: var(--shadow-card);
  border: 1px solid rgba(108,147,181,0.20);
}
.resultats-strip .resultat-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.resultats-label {
  flex-shrink: 0; text-align: center; padding: 0 1rem;
  font-family: var(--font-serif); font-size: 0.95rem; color: var(--gold-light);
  letter-spacing: 0.06em;
}

.temoignages-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 1100px; margin: 0 auto; }
.temoignage-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(108,147,181,0.18);
  border-radius: var(--radius); padding: 2.5rem;
  position: relative; transition: var(--transition);
}
.temoignage-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.20); border-color: rgba(108,147,181,0.35); background: rgba(255,255,255,0.06); }
.temoignage-card::before {
  content: '"'; position: absolute; top: 1rem; left: 1.5rem;
  font-family: var(--font-serif); font-size: 5rem; color: rgba(108,147,181,0.18); line-height: 1;
}
.stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
.temoignage-texte { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.8; font-style: italic; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.temoignage-auteur { display: flex; flex-direction: column; gap: 0.2rem; }
.temoignage-nom  { font-family: var(--font-serif); font-size: 1rem; font-weight: 700; color: var(--white); }
.temoignage-soin { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }

/* ── CONTACT ─────────────────────────────────────────────────── */
#contact {
  padding: 7rem 5%;
  background:
    repeating-linear-gradient(45deg, rgba(108,147,181,0.025) 0, rgba(108,147,181,0.025) 1px, transparent 1px, transparent 5px),
    repeating-linear-gradient(-45deg, rgba(108,147,181,0.025) 0, rgba(108,147,181,0.025) 1px, transparent 1px, transparent 5px),
    var(--sand);
}
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1100px; margin: 0 auto; align-items: start; }
.contact-form-col h2 { font-family: var(--font-serif); font-size: 2.2rem; color: var(--dark); margin-bottom: 1rem; }
.contact-form-col .gold-line { margin: 0 0 2rem 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--taupe); }
.form-group input, .form-group textarea, .form-group select {
  padding: 0.85rem 1rem; border: 1px solid rgba(108,147,181,0.25); border-radius: var(--radius);
  font-family: var(--font-sans); font-size: 0.9rem; color: var(--dark);
  background: rgba(255,255,255,0.88); outline: none; transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%; padding: 1rem;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  background: var(--gold); color: var(--white); border: 2px solid var(--gold);
  border-radius: var(--radius); cursor: pointer; transition: var(--transition); margin-top: 0.5rem;
  box-shadow: 0 4px 20px rgba(108,147,181,0.25);
  position: relative; overflow: hidden;
}
.form-submit:hover { background: transparent; color: var(--gold); box-shadow: none; }
.contact-info-col h3 { font-family: var(--font-serif); font-size: 1.6rem; margin-bottom: 1.5rem; color: var(--dark); }
.contact-info-list { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2rem; }
.contact-info-list li { display: flex; align-items: flex-start; gap: 0.9rem; font-size: 0.9rem; color: var(--dark-soft); }
.info-icon { font-size: 1rem; color: var(--gold); flex-shrink: 0; margin-top: 0.1rem; }
.contact-map { width: 100%; height: 220px; border: none; border-radius: var(--radius); filter: grayscale(20%); }

.contact-facade-wrap {
  margin: 1.5rem 0; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-card); aspect-ratio: 4/5; max-height: 340px;
}
.contact-facade-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }

.form-success { text-align: center; padding: 4rem 2rem; }
.form-success-icon { font-size: 3rem; color: var(--gold); margin-bottom: 1.2rem; }
.form-success h3 { font-family: var(--font-serif); font-size: 2rem; color: var(--dark); margin-bottom: 1rem; }
.form-success p  { color: var(--taupe); max-width: 380px; margin: 0 auto; line-height: 1.7; }

/* ── RÉSERVER EN LIGNE ───────────────────────────────────────── */
#reserver-ligne {
  padding: 5rem 5%;
  background: var(--charcoal);
  text-align: center;
  position: relative; overflow: hidden;
}
#reserver-ligne::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 85%, rgba(108,147,181,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 85% 15%, rgba(108,147,181,0.05) 0%, transparent 50%);
  pointer-events: none;
}
#reserver-ligne .section-header { margin-bottom: 2.5rem; }
#reserver-ligne .section-header h2 { color: var(--white); }
#reserver-ligne .section-header p  { color: rgba(255,255,255,0.45); }

.reserver-platforms { display: flex; gap: 2rem; justify-content: center; max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.platform-card {
  flex: 1; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(108,147,181,0.22); border-radius: var(--radius);
  padding: 2.5rem 2rem; display: flex; flex-direction: column; align-items: center;
  gap: 0.7rem; transition: var(--transition); text-decoration: none;
}
.platform-card:hover { background: rgba(108,147,181,0.07); border-color: rgba(108,147,181,0.42); transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.18); }
.platform-name { font-family: var(--font-serif); font-size: 1.55rem; color: var(--white); letter-spacing: 0.06em; }
.platform-desc { font-size: 0.70rem; color: rgba(255,255,255,0.40); letter-spacing: 0.10em; text-transform: uppercase; font-weight: 500; margin-bottom: 0.5rem; }

.platform-qr {
  width: 92px; height: 92px; border-radius: 10px; overflow: hidden;
  border: 1px solid rgba(108,147,181,0.30); margin-bottom: 0.3rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.20);
}
.platform-qr img { width: 100%; height: 100%; object-fit: cover; display: block; }

.promo-anniversaire {
  display: flex; align-items: center; gap: 2rem;
  max-width: 720px; margin: 3rem auto 0; padding: 2rem 2.5rem;
  background: rgba(108,147,181,0.07); border: 1px solid rgba(108,147,181,0.35);
  border-radius: var(--radius); position: relative; z-index: 1; overflow: hidden;
}
.promo-anniversaire::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 120% at 50% 50%, rgba(108,147,181,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.promo-anniv-icon { font-size: 2.8rem; flex-shrink: 0; filter: drop-shadow(0 0 8px rgba(108,147,181,0.5)); }
.promo-anniv-body { flex: 1; text-align: left; }
.promo-anniv-title { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; color: var(--gold-light); margin: 0 0 0.5rem; letter-spacing: 0.04em; }
.promo-anniv-text { font-size: 0.9rem; color: rgba(255,255,255,0.62); line-height: 1.65; margin: 0; }
.promo-anniv-text strong { color: rgba(255,255,255,0.9); font-weight: 600; }
.promo-anniv-badge {
  display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0;
  width: 78px; height: 78px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50%; font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700;
  color: #fff; line-height: 1.1; letter-spacing: -0.02em;
  box-shadow: 0 0 24px rgba(108,147,181,0.35);
}
.promo-anniv-badge span { font-size: 0.85rem; font-weight: 400; letter-spacing: 0; }

/* ── FAQ ─────────────────────────────────────────────────────── */
#faq {
  padding: 6rem 5%;
  background: var(--charcoal);
  position: relative; overflow: hidden;
}
#faq::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(108,147,181,0.07) 0%, transparent 60%);
  pointer-events: none;
}
#faq .section-header h2 { color: var(--white); }
#faq .section-header p  { color: rgba(255,255,255,0.42); }

.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.55rem; position: relative; z-index: 1; }
.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(108,147,181,0.18);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color var(--transition), background var(--transition);
}
.faq-item[open] { border-color: rgba(108,147,181,0.40); background: rgba(108,147,181,0.06); box-shadow: 0 4px 24px rgba(0,0,0,0.15); }
.faq-item summary {
  font-family: var(--font-serif); font-size: 1rem; font-weight: 600; color: var(--white);
  padding: 1.35rem 1.6rem; cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  transition: color var(--transition); user-select: none;
}
.faq-item summary::-webkit-details-marker, .faq-item summary::marker { display: none; }
.faq-item summary::after {
  content: '+'; font-family: var(--font-sans); font-size: 1.3rem; font-weight: 300;
  color: var(--gold); flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94); line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary        { color: var(--gold); }
.faq-answer { padding: 0.9rem 1.6rem 1.4rem; border-top: 1px solid rgba(108,147,181,0.12); }
.faq-answer p { font-size: 0.88rem; color: rgba(255,255,255,0.52); line-height: 1.85; margin: 0; }
.faq-answer strong { color: var(--gold-light); font-weight: 600; }
.faq-cta {
  display: inline-flex; align-items: center; margin-top: 0.9rem;
  font-family: var(--font-sans); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
  transition: color var(--transition); position: relative; padding-bottom: 2px;
}
.faq-cta::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s ease; }
.faq-cta:hover { color: var(--gold-light); }
.faq-cta:hover::after { width: 100%; }

/* ── FOOTER ─────────────────────────────────────────────────── */
footer { background: var(--charcoal); color: rgba(255,255,255,0.65); padding: 4rem 5% 2rem; position: relative; overflow: hidden; }
footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(108,147,181,0.55), transparent);
}
footer::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 15% 0%, rgba(108,147,181,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; position: relative; z-index: 1; }
.footer-brand .logo-text-footer { font-family: var(--font-serif); font-size: 1.5rem; color: var(--white); letter-spacing: 0.1em; margin-bottom: 1rem; display: block; }
.footer-brand p { color: rgba(255,255,255,0.50); font-size: 0.85rem; max-width: 260px; line-height: 1.7; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.3rem; }
.footer-social-icon {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(108,147,181,0.35); color: rgba(255,255,255,0.65);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-social-icon:hover { background: var(--gold); border-color: var(--gold); color: var(--white); transform: translateY(-3px); }
.footer-col h3 { font-family: var(--font-sans); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 2rem; display: flex; align-items: center; justify-content: space-between; font-size: 0.78rem; color: rgba(255,255,255,0.30); position: relative; z-index: 1; }
.footer-bottom a { color: rgba(255,255,255,0.30); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ── BOUTON FLOTTANT ─────────────────────────────────────────── */
#floating-btn {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  padding: 0.9rem 1.8rem; font-family: var(--font-sans); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  background: var(--gold); color: var(--white); border-radius: 50px;
  box-shadow: 0 4px 24px rgba(108,147,181,0.45); transition: var(--transition);
  opacity: 0; transform: translateY(20px); pointer-events: none;
  overflow: hidden;
}
#floating-btn.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
#floating-btn:hover { background: var(--dark); box-shadow: 0 4px 20px rgba(0,0,0,0.25); }

/* ── SCROLL PROGRESS ─────────────────────────────────────────── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-light));
  z-index: 10000; pointer-events: none; transition: width 0.08s linear;
}

/* ══════════════════════════════════════════════════════════════
   CURSEUR PREMIUM
══════════════════════════════════════════════════════════════ */
@media (hover: hover) and (prefers-reduced-motion: no-preference) { body { cursor: none; } }
#cursor-ring {
  position: fixed; top: 0; left: 0; width: 26px; height: 26px;
  border: 1.5px solid rgba(108,147,181,0.88); border-radius: 50%;
  pointer-events: none; z-index: 999999; will-change: transform;
  transition: width 0.22s ease, height 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}
#cursor-ring::after {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 4px; height: 4px; background: rgba(108,147,181,0.75); border-radius: 50%; transition: opacity 0.22s ease;
}
#cursor-ring.is-hover { width: 44px; height: 44px; border-color: rgba(108,147,181,0.95); background: rgba(108,147,181,0.08); }
#cursor-ring.is-hover::after { opacity: 0; }
#cursor-ring.is-click { width: 16px; height: 16px; background: rgba(108,147,181,0.25); }
@media (hover: none) { #cursor-ring { display: none; } }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid  { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .footer-top     { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* ─ Header ─ */
  nav.main-nav, .header-actions .header-insta { display: none; }
  .hamburger { display: flex; }

  /* ─ Padding sections ─ */
  #statement, #nos-soins, #pourquoi-nous, #stats,
  #nos-creations, #temoignages, #contact, #reserver, #faq {
    padding: 4rem 5%;
  }

  /* ─ Hero ─ */
  #accueil {
    align-items: center;
    justify-content: center;
    padding: 0 6% 8vh;
    text-align: center;
  }
  .hero-content   { max-width: 100%; }
  h1.hero-title   { align-items: center; }
  .hero-eyebrow   { justify-content: center; }
  .hero-eyebrow::before,
  .hero-eyebrow::after { display: none; }
  .hero-word1     { text-align: center; font-size: clamp(2.2rem, 11vw, 3.8rem); }
  .hero-word2     { text-align: center; }
  .hero-cta-group { justify-content: center; flex-direction: column; gap: 1rem; }
  .hero-scroll-hint { display: none; }
  .btn-hero       { width: 100%; text-align: center; }

  /* ─ Section header ─ */
  .section-header { margin-bottom: 2.5rem; }

  /* ─ Grids ─ */
  .stats-grid        { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-item::after  { display: none; }
  .arguments-grid    { grid-template-columns: 1fr; gap: 1.2rem; }
  .temoignages-grid  { grid-template-columns: 1fr; gap: 1.2rem; }
  .resultats-strip   { flex-direction: column; gap: 1.2rem; margin-bottom: 2rem; }
  .contact-wrapper   { grid-template-columns: 1fr; gap: 2rem; }
  .footer-top        { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer-bottom     { flex-direction: column; gap: 0.6rem; text-align: center; }
  .reserver-platforms { flex-direction: column; }
  .services-grid     { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* ─ Cards ─ */
  .service-card    { padding: 1.6rem 1.2rem; }
  .argument-card   { padding: 2rem 1.5rem; }
  .argument-card-img { margin: -2rem -1.5rem 1.4rem; }
  .temoignage-card { padding: 1.8rem 1.4rem; }
  .platform-card   { padding: 2rem 1.5rem; }

  /* ─ Touch targets (48px min — recommandation Google Lighthouse) ─ */
  .service-expand-btn  { min-height: 48px; }
  .faq-item summary    { padding: 1.2rem 1.2rem; min-height: 48px; }
  .btn, .btn-hero      { min-height: 48px; }
  .hamburger            { min-width: 48px; min-height: 48px; justify-content: center; align-items: center; }
  #mobile-menu a       { min-height: 52px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; }
  #mobile-menu .menu-reserver { min-height: 52px; padding: 1rem 2.5rem; }

  /* ─ Divers ─ */
  #floating-btn { bottom: 1.2rem; right: 1.2rem; }
  .promo-anniversaire { flex-direction: column; text-align: center; padding: 1.8rem 1.5rem; gap: 1.2rem; }
  .promo-anniv-body   { text-align: center; }
  .statement-quote    { font-size: clamp(1.4rem, 5.5vw, 2.2rem); }
  .statement-body     { font-size: 0.9rem; }
  .statement-photo {
    background-image: url('../assets/images/statement-legs-mobile.jpg');
    background-image: -webkit-image-set(url('../assets/images/statement-legs-mobile.webp') 1x);
    background-image: image-set(url('../assets/images/statement-legs-mobile.webp') 1x);
  }
  .contact-map-wrap   { height: 220px; }
  .footer-brand p     { max-width: 100%; }
}

@media (max-width: 540px) {
  /* ─ Padding serré ─ */
  #statement, #nos-soins, #pourquoi-nous, #stats,
  #nos-creations, #temoignages, #contact, #reserver, #faq {
    padding: 3rem 4%;
  }

  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: 1fr 1fr; }

  /* ─ Hero compact ─ */
  .hero-word1 { font-size: clamp(2rem, 13vw, 3rem); }
  .hero-subtitle { font-size: 0.85rem; }

  /* ─ Textes ─ */
  h2 { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .section-header p { font-size: 0.9rem; }
}
