/* =====================================================
   NAILS 673 — Stylesheet · DA blanc & rose pastel
   ===================================================== */

:root {
  --bg: #fffafc;
  --bg-2: #fff1f6;
  --bg-3: #ffe7f0;
  --card: #ffffff;
  --line: #f3dce6;
  --line-2: #ecc9d9;

  --text: #4a3540;          /* prune douce */
  --text-dim: #8a6f7c;
  --text-mute: #b39aa6;

  --rose: #f4a3c2;          /* rose pastel principal */
  --rose-deep: #e87aa4;     /* rose plus soutenu */
  --rose-soft: #ffd9e6;
  --rose-bg: #ffeef5;
  --gold: #d9ad7c;          /* touche rose-gold */
  --accent: var(--rose-deep);

  --radius: 22px;
  --radius-sm: 14px;
  --maxw: 1280px;
  --pad: clamp(20px, 4vw, 64px);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-script: 'Parisienne', 'Cormorant Garamond', cursive;
  --font-body: 'Jost', system-ui, sans-serif;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  --shadow-sm: 0 6px 20px -10px rgba(232, 122, 164, 0.35);
  --shadow: 0 24px 60px -28px rgba(212, 105, 150, 0.45);
  --shadow-lg: 0 40px 90px -40px rgba(212, 105, 150, 0.5);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px; line-height: 1.6; font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--rose); color: #fff; }

em {
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--rose-deep);
}

/* Scrollbars */
* { scrollbar-width: thin; scrollbar-color: var(--line-2) transparent; }
*::-webkit-scrollbar { width: 10px; height: 10px; }
*::-webkit-scrollbar-track { background: var(--bg-2); }
*::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 999px; border: 2px solid var(--bg-2); }
*::-webkit-scrollbar-thumb:hover { background: var(--rose); }

/* =====================================================
   LOADER — ongle qui se peint + voile révélé
   ===================================================== */
.loader {
  position: fixed; inset: 0; z-index: 2000;
  background:
    radial-gradient(circle at 50% 35%, #fff 0%, var(--rose-bg) 60%, var(--bg-3) 100%);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .7s var(--ease), visibility .7s var(--ease);
  overflow: hidden;
}
.loader.is-done { opacity: 0; visibility: hidden; }

.loader-stage {
  position: relative; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 26px;
}
/* lueur radiale derrière l'ongle — se fond complètement (pas de bord net
   comme le faisait filter: drop-shadow sur Safari iOS) */
.loader-nail-wrap { position: relative; display: grid; place-items: center; }
.loader-nail-glow {
  position: absolute; z-index: 0; pointer-events: none;
  width: 230px; height: 280px; border-radius: 50%;
  background: radial-gradient(ellipse 45% 50% at 50% 52%, rgba(232,122,164,.40), rgba(232,122,164,.12) 55%, rgba(232,122,164,0) 75%);
  opacity: 0;
  animation: glowIn 1s var(--ease-out) .5s forwards;
}
@keyframes glowIn { to { opacity: 1; } }
.loader-nail {
  position: relative; z-index: 1;
  width: 120px; height: auto;
  opacity: 0;
  transform: translateY(14px) scale(.96);
  animation: nailIn .7s var(--ease-out) .15s forwards;
}
@keyframes nailIn { to { opacity: 1; transform: none; } }

/* le vernis monte de bas en haut dans le masque */
.loader-polish {
  transform: translateY(280px);
  animation: polishFill 1.5s var(--ease) .55s forwards;
}
@keyframes polishFill { to { transform: translateY(0); } }

.loader-shine {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  opacity: 0;
  animation: shineDraw 1s var(--ease) 1.5s forwards;
}
@keyframes shineDraw { to { stroke-dashoffset: 0; opacity: .9; } }

.loader-nail-line { opacity: .8; }
.loader-lunule { opacity: 0; animation: lunuleIn .6s ease 1.7s forwards; }
@keyframes lunuleIn { to { opacity: 1; } }

.loader-sparkles { opacity: 0; transform-origin: center; animation: sparkPop .7s var(--ease-out) 1.9s forwards; }
@keyframes sparkPop { 0% { opacity: 0; transform: scale(.3); } 60% { opacity: 1; transform: scale(1.15); } 100% { opacity: 1; transform: scale(1); } }

.loader-word {
  display: flex; align-items: baseline; gap: 8px;
  opacity: 0; animation: wordIn .7s var(--ease-out) 2s forwards;
}
.loader-script {
  font-family: var(--font-script);
  font-size: 56px; line-height: 1;
  color: var(--rose-deep);
}
.loader-num {
  font-family: var(--font-display);
  font-weight: 600; font-size: 40px;
  letter-spacing: .04em;
  color: var(--text);
}
@keyframes wordIn { to { opacity: 1; } }

.loader-tagline-text {
  font-size: 11px; letter-spacing: .42em; text-transform: uppercase;
  color: var(--text-mute);
  opacity: 0; animation: wordIn .7s var(--ease-out) 2.25s forwards;
}

/* voile rose qui glisse vers le haut pour révéler le site */
.loader-veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, var(--rose-soft), #fff);
  transform: translateY(100%);
  opacity: 0;
}
.loader.is-revealing .loader-veil {
  opacity: 1;
  animation: veilSweep 1s var(--ease) forwards;
}
@keyframes veilSweep {
  0% { transform: translateY(100%); }
  45% { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}

/* =====================================================
   BOUTONS
   ===================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 500; font-size: 15px; letter-spacing: .01em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s var(--ease), color .3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn .btn-arrow { transition: transform .3s var(--ease); }
.btn-primary:hover .btn-arrow { transform: translateX(3px); }
.btn-ghost {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover { background: var(--rose-bg); border-color: var(--rose); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }
.btn:disabled { opacity: .4; cursor: not-allowed; transform: none !important; box-shadow: var(--shadow-sm); }

/* =====================================================
   TOPBAR + NAV
   ===================================================== */
.topbar {
  background: linear-gradient(90deg, var(--rose-deep), var(--rose));
  color: #fff;
  font-size: 12.5px; letter-spacing: .03em;
}
.topbar-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 9px var(--pad);
  display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
}
.topbar-inner span { display: inline-flex; align-items: center; gap: 6px; }
.topbar-inner svg { stroke: currentColor; }
.topbar-sep { opacity: .6; }
.topbar-cta { font-weight: 600; }

.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 16px var(--pad);
  background: rgba(255, 250, 252, .72);
  backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: padding .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.nav.is-scrolled {
  padding-top: 11px; padding-bottom: 11px;
  background: rgba(255, 250, 252, .9);
  border-color: var(--line);
  box-shadow: 0 10px 30px -22px rgba(212, 105, 150, .5);
}
.nav-logo { display: flex; align-items: baseline; gap: 5px; }
.nav-logo-script { font-family: var(--font-script); font-size: 30px; color: var(--rose-deep); line-height: 1; }
.nav-logo-num { font-family: var(--font-display); font-weight: 600; font-size: 22px; color: var(--text); letter-spacing: .03em; }

.nav-links { display: flex; gap: 26px; }
.nav-links a {
  position: relative; display: inline-flex; align-items: center; gap: 7px;
  font-size: 15px; color: var(--text-dim); font-weight: 400;
  transition: color .25s var(--ease);
}
.nav-links a svg { width: 16px; height: 16px; color: var(--rose-deep); opacity: .55; transition: opacity .25s var(--ease), transform .25s var(--ease); }
.nav-links a:hover svg { opacity: 1; transform: scale(1.12); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -5px; width: 0; height: 2px;
  background: var(--rose-deep); border-radius: 2px; transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 999px;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: #fff; font-size: 14px; font-weight: 500;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.nav-cta svg { width: 17px; height: 17px; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { transform: translateY(-0px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 0; right: 0; z-index: 99;
  width: min(80vw, 320px); height: 100vh;
  background: var(--bg);
  box-shadow: -20px 0 60px -30px rgba(212, 105, 150, .6);
  display: flex; flex-direction: column; gap: 6px;
  padding: 100px 32px 32px;
  transform: translateX(100%); transition: transform .4s var(--ease);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu a {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-display); font-size: 26px; color: var(--text);
  padding: 12px 0; border-bottom: 1px solid var(--line);
}
.mobile-menu a svg { width: 23px; height: 23px; color: var(--rose-deep); opacity: .8; }
.mobile-menu a:last-child { color: var(--rose-deep); font-weight: 600; }

/* =====================================================
   HERO
   ===================================================== */
.hero { position: relative; padding: clamp(40px, 7vw, 90px) var(--pad) clamp(60px, 8vw, 100px); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.blob {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55;
}
.blob-1 { width: 480px; height: 480px; top: -120px; right: -80px; background: radial-gradient(circle, var(--rose-soft), transparent 70%); }
.blob-2 { width: 420px; height: 420px; bottom: -120px; left: -100px; background: radial-gradient(circle, #ffe3ef, transparent 70%); }
.blob-3 { width: 300px; height: 300px; top: 40%; left: 45%; background: radial-gradient(circle, #fff0d9, transparent 70%); opacity: .4; }

.hero-content { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  font-size: 13px; color: var(--text-dim); letter-spacing: .02em;
  box-shadow: var(--shadow-sm);
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--rose-deep); box-shadow: 0 0 0 4px var(--rose-soft); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

.hero-title {
  font-family: var(--font-display);
  font-weight: 600; font-size: clamp(46px, 8vw, 92px); line-height: .98;
  letter-spacing: -.01em; margin: 24px 0 22px; color: var(--text);
}
/* padding/marge négative : la zone de masquage descend sous la ligne de base
   pour ne pas couper les jambages (g, q, p…) tout en gardant l'interligne serrée */
.hero-title .line { display: block; overflow: hidden; padding-bottom: .3em; margin-bottom: -.3em; }
.hero-title .accent { color: var(--rose-deep); font-style: italic; }

.hero-sub { font-size: clamp(16px, 2vw, 19px); color: var(--text-dim); max-width: 30em; margin-bottom: 32px; }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-stats { display: flex; gap: clamp(20px, 4vw, 48px); }
.stat-num { font-family: var(--font-display); font-weight: 600; font-size: clamp(30px, 4vw, 44px); color: var(--text); line-height: 1; }
.stat-label { font-size: 13px; color: var(--text-mute); margin-top: 4px; }

/* visuel hero */
.hero-visual { position: relative; }
.hero-visual-frame {
  position: relative; aspect-ratio: 4/5; border-radius: 30px; overflow: hidden;
  background: linear-gradient(160deg, var(--rose-bg), #fff);
  background-size: cover; background-position: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
}
.hero-visual-placeholder { text-align: center; color: var(--text-mute); display: grid; place-items: center; gap: 14px; padding: 24px; }
.hero-visual-placeholder svg { width: 64px; height: 64px; color: var(--rose); }
.hero-visual-placeholder code { background: #fff; padding: 2px 8px; border-radius: 6px; font-size: 13px; color: var(--rose-deep); }
.hero-visual-glow { position: absolute; inset: 0; background: radial-gradient(circle at 70% 20%, rgba(255,255,255,.5), transparent 50%); pointer-events: none; }

.hero-visual-badge, .hero-visual-tag {
  position: absolute; background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; padding: 9px 16px; box-shadow: var(--shadow);
  animation: floaty 5s ease-in-out infinite;
}
.hero-visual-badge { bottom: 24px; left: -18px; color: var(--text); }
.hero-visual-tag-2 { top: 26px; right: -14px; flex-direction: column; gap: 2px; padding: 12px 18px; animation-delay: 1s; }
.hero-visual-tag-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.hero-scroll { display: flex; align-items: center; gap: 12px; margin-top: 54px; color: var(--text-mute); font-size: 13px; letter-spacing: .15em; text-transform: uppercase; }
.hero-scroll-line { width: 60px; height: 1px; background: var(--line-2); position: relative; overflow: hidden; }
.hero-scroll-line::after { content: ''; position: absolute; inset: 0; width: 30%; background: var(--rose-deep); animation: scrollLine 2s var(--ease) infinite; }
@keyframes scrollLine { 0% { transform: translateX(-100%); } 100% { transform: translateX(330%); } }

/* =====================================================
   MARQUEE
   ===================================================== */
.marquee {
  overflow: hidden; white-space: nowrap; padding: 18px 0;
  background: linear-gradient(90deg, var(--rose-deep), var(--rose));
  border-top: 1px solid rgba(255,255,255,.2);
}
.marquee-track { display: inline-flex; align-items: center; gap: 26px; animation: marquee 28s linear infinite; }
.marquee-track span { font-family: var(--font-display); font-size: 24px; font-weight: 600; letter-spacing: .12em; color: #fff; }
.marquee-dot { color: rgba(255,255,255,.6); font-size: 16px !important; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =====================================================
   SECTION HEADS
   ===================================================== */
.section-head { max-width: var(--maxw); margin: 0 auto; padding: clamp(56px, 8vw, 100px) var(--pad) 0; }
.section-head-center { text-align: center; display: flex; flex-direction: column; align-items: center; }
.section-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.section-head-left { max-width: 30em; }
.section-tag {
  display: inline-block; font-size: 12.5px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--rose-deep); font-weight: 500; margin-bottom: 16px;
}
.section-title { font-family: var(--font-display); font-weight: 600; font-size: clamp(34px, 5.5vw, 60px); line-height: 1.02; color: var(--text); letter-spacing: -.01em; }
.section-lead { font-size: clamp(15px, 1.6vw, 18px); color: var(--text-dim); max-width: 38em; margin-top: 18px; }
.section-head-center .section-lead { margin-left: auto; margin-right: auto; }

/* =====================================================
   PRESTATIONS / SERVICES
   ===================================================== */
.services { max-width: var(--maxw); margin: 0 auto; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  padding: clamp(36px, 5vw, 56px) var(--pad) 0;
}
.service-card {
  position: relative; padding: 34px 30px 30px; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  overflow: hidden;
}
.service-card::before {
  content: attr(data-num); position: absolute; top: 18px; right: 24px;
  font-family: var(--font-display); font-size: 40px; color: var(--rose-soft);
  transition: color .4s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--rose); }
.service-card:hover::before { color: var(--rose); }
.service-icon {
  width: 64px; height: 64px; border-radius: 18px; margin-bottom: 22px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--rose-bg), #fff);
  border: 1px solid var(--line); color: var(--rose-deep);
}
.service-icon svg { width: 34px; height: 34px; }
.service-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 25px; margin-bottom: 10px; color: var(--text); }
.service-card p { font-size: 15px; color: var(--text-dim); }
.service-arrow { display: inline-block; margin-top: 18px; color: var(--rose-deep); font-size: 20px; transition: transform .3s var(--ease); }
.service-card:hover .service-arrow { transform: translateX(6px); }

/* =====================================================
   GALERIE
   ===================================================== */
.galerie { max-width: var(--maxw); margin: 0 auto; }
.galerie-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.galerie-filter {
  padding: 9px 18px; border-radius: 999px; font-size: 14px; color: var(--text-dim);
  background: #fff; border: 1px solid var(--line);
  transition: all .25s var(--ease);
}
.galerie-filter:hover { border-color: var(--rose); color: var(--text); }
.galerie-filter.is-active { background: linear-gradient(135deg, var(--rose), var(--rose-deep)); color: #fff; border-color: transparent; box-shadow: var(--shadow-sm); }

.galerie-grid {
  columns: 4; column-gap: 18px;
  padding: clamp(32px, 4vw, 48px) var(--pad) 0;
}
.galerie-item {
  position: relative; break-inside: avoid; margin-bottom: 18px;
  border-radius: var(--radius-sm); overflow: hidden; cursor: pointer;
  border: 1px solid var(--line); background: var(--bg-2);
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), opacity .4s var(--ease);
}
.galerie-item img { width: 100%; height: auto; display: block; transition: transform .6s var(--ease); }
.galerie-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.galerie-item:hover img { transform: scale(1.06); }
.galerie-item-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 18px; gap: 4px;
  background: linear-gradient(to top, rgba(74,53,64,.6), transparent 55%);
  opacity: 0; transition: opacity .4s var(--ease);
}
.galerie-item:hover .galerie-item-overlay { opacity: 1; }
.galerie-item-tag { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: #fff; opacity: .85; }
.galerie-item-title { font-family: var(--font-display); font-size: 20px; color: #fff; }
.galerie-item.is-hidden { display: none; }

/* placeholder galerie */
.galerie-ph {
  break-inside: avoid; margin-bottom: 18px; border-radius: var(--radius-sm);
  border: 1px dashed var(--line-2); background: #fff;
  display: grid; place-items: center; gap: 12px; padding: 40px 24px; text-align: center;
  color: var(--text-mute);
}
.galerie-ph svg { width: 40px; height: 40px; color: var(--rose); }
.galerie-ph code { background: var(--rose-bg); padding: 2px 8px; border-radius: 6px; color: var(--rose-deep); font-size: 12.5px; }

.galerie-cta { text-align: center; padding: clamp(36px, 5vw, 56px) var(--pad) 0; }
.galerie-cta p { font-family: var(--font-display); font-size: clamp(20px, 3vw, 28px); color: var(--text); margin-bottom: 22px; font-style: italic; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1500;
  background: rgba(74, 53, 64, .82); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; padding: 5vw;
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-img { max-width: 90vw; max-height: 86vh; border-radius: 14px; box-shadow: 0 30px 80px -20px rgba(0,0,0,.6); transform: scale(.94); transition: transform .35s var(--ease); }
.lightbox.is-open .lightbox-img { transform: scale(1); }
.lightbox-close, .lightbox-nav {
  position: absolute; display: grid; place-items: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.15); color: #fff; backdrop-filter: blur(6px);
  transition: background .25s var(--ease);
}
.lightbox-close svg, .lightbox-nav svg { width: 24px; height: 24px; }
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,.32); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 3vw; }
.lightbox-next { right: 3vw; }

/* =====================================================
   TARIFS
   ===================================================== */
.tarifs { max-width: var(--maxw); margin: 0 auto; }
.tarifs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  padding: clamp(36px, 5vw, 56px) var(--pad) 0;
}
.tarifs-card {
  position: relative; padding: 34px 30px; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.tarifs-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.tarifs-card-feature {
  background: linear-gradient(165deg, var(--rose-bg), #fff);
  border-color: var(--rose);
  box-shadow: var(--shadow);
}
.tarifs-card-tag {
  display: inline-block; font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--rose-deep); margin-bottom: 8px;
}
.tarifs-card-title { font-family: var(--font-display); font-weight: 600; font-size: 28px; margin-bottom: 20px; color: var(--text); }
.tarifs-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.tarifs-list li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  padding: 12px 0; border-bottom: 1px dashed var(--line); font-size: 15px; color: var(--text-dim);
}
.tarifs-list li:last-child { border-bottom: none; }
.tarifs-price { font-family: var(--font-display); font-weight: 600; font-size: 20px; color: var(--text); white-space: nowrap; }
.tarifs-note { text-align: center; padding: 24px var(--pad) 0; color: var(--text-mute); font-size: 14px; }

/* =====================================================
   RÉSERVATION
   ===================================================== */
.reservation { position: relative; overflow: hidden; }
.reservation-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.blob-4 { width: 600px; height: 600px; top: 10%; right: -200px; background: radial-gradient(circle, var(--rose-soft), transparent 70%); opacity: .5; filter: blur(70px); position: absolute; border-radius: 50%; }

.booking {
  position: relative; z-index: 2;
  max-width: 1060px; margin: clamp(36px, 5vw, 56px) auto 0;
  padding: 0 var(--pad);
}
.booking-steps {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-bottom: 28px; flex-wrap: wrap;
}
.booking-step { display: flex; align-items: center; gap: 10px; opacity: .5; transition: opacity .3s var(--ease); }
.booking-step.is-active, .booking-step.is-done { opacity: 1; }
.booking-step-num {
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; border: 1px solid var(--line-2); font-size: 14px; color: var(--text-dim);
  transition: all .3s var(--ease);
}
.booking-step.is-active .booking-step-num { background: linear-gradient(135deg, var(--rose), var(--rose-deep)); color: #fff; border-color: transparent; box-shadow: var(--shadow-sm); }
.booking-step.is-done .booking-step-num { background: var(--rose-soft); color: var(--rose-deep); border-color: transparent; }
.booking-step-label { font-size: 14px; color: var(--text); }
.booking-step-line { width: 28px; height: 1px; background: var(--line-2); }

.booking-body {
  display: grid; grid-template-columns: 1.4fr .9fr; gap: 0;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
}
.booking-panels { padding: clamp(24px, 3vw, 38px); min-height: 360px; }
.booking-panel { display: none; animation: panelIn .4s var(--ease); }
.booking-panel.is-active { display: block; }
@keyframes panelIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.booking-panel-title { font-family: var(--font-display); font-weight: 600; font-size: 26px; margin-bottom: 22px; color: var(--text); }

.booking-services { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.booking-service {
  text-align: left; padding: 16px 18px; border-radius: var(--radius-sm);
  background: #fff; border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 4px;
  transition: all .25s var(--ease);
}
.booking-service:hover { border-color: var(--rose); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.booking-service.is-selected { border-color: var(--rose-deep); background: var(--rose-bg); box-shadow: var(--shadow-sm); }
.booking-service-name { font-size: 15px; font-weight: 500; color: var(--text); }
.booking-service-meta { font-size: 13px; color: var(--text-mute); }

/* Calendrier */
.calendar { max-width: 380px; }
.calendar-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.calendar-month { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--text); text-transform: capitalize; }
.calendar-nav { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: #fff; border: 1px solid var(--line); transition: all .25s var(--ease); }
.calendar-nav svg { width: 18px; height: 18px; color: var(--text-dim); }
.calendar-nav:hover { border-color: var(--rose); background: var(--rose-bg); }
.calendar-nav:disabled { opacity: .3; cursor: not-allowed; }
.calendar-weekdays, .calendar-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.calendar-weekdays span { text-align: center; font-size: 12px; color: var(--text-mute); padding: 6px 0; }
.calendar-day {
  aspect-ratio: 1; border-radius: 12px; display: grid; place-items: center;
  font-size: 14px; color: var(--text); background: transparent; border: 1px solid transparent;
  transition: all .2s var(--ease);
}
.calendar-day:not(:disabled):hover { background: var(--rose-bg); border-color: var(--rose); }
.calendar-day:disabled { color: var(--line-2); cursor: not-allowed; }
.calendar-day.is-empty { pointer-events: none; }
.calendar-day.is-selected { background: linear-gradient(135deg, var(--rose), var(--rose-deep)); color: #fff; box-shadow: var(--shadow-sm); }
.calendar-day.is-today { font-weight: 600; }
.calendar-day.is-today::after { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--rose-deep); position: absolute; transform: translateY(13px); }
.calendar-day { position: relative; }
.calendar-day.is-selected.is-today::after { background: #fff; }
.calendar-note { font-size: 13px; color: var(--text-mute); margin-top: 14px; }

/* Slots horaires */
.booking-slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 10px; }
.booking-slot {
  padding: 13px 0; border-radius: 12px; text-align: center; font-size: 15px;
  background: #fff; border: 1px solid var(--line); color: var(--text);
  transition: all .2s var(--ease);
}
.booking-slot:not(:disabled):hover { border-color: var(--rose); background: var(--rose-bg); }
.booking-slot.is-selected { background: linear-gradient(135deg, var(--rose), var(--rose-deep)); color: #fff; border-color: transparent; box-shadow: var(--shadow-sm); }
.booking-slot:disabled { opacity: .35; cursor: not-allowed; text-decoration: line-through; }

/* Form */
.booking-form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-label { font-size: 13px; color: var(--text-dim); letter-spacing: .02em; }
.field input, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: 12px;
  background: #fff; border: 1px solid var(--line); color: var(--text);
  font-family: var(--font-body); font-size: 15px; resize: vertical;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-mute); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--rose); box-shadow: 0 0 0 4px var(--rose-soft); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Récap */
.booking-summary {
  background: linear-gradient(170deg, var(--rose-bg), #fff);
  border-left: 1px solid var(--line);
  padding: clamp(24px, 3vw, 36px);
  display: flex; flex-direction: column;
  position: relative;
}
.booking-summary-head { margin-bottom: 18px; }
.booking-summary-script { font-family: var(--font-script); font-size: 32px; color: var(--rose-deep); }
.booking-summary-list { list-style: none; display: flex; flex-direction: column; gap: 2px; margin-bottom: 22px; }
.booking-summary-list li { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px dashed var(--line); }
.booking-summary-label { font-size: 13px; color: var(--text-mute); }
.booking-summary-value { font-size: 14px; color: var(--text); font-weight: 500; text-align: right; }
.booking-actions { display: flex; gap: 10px; margin-top: auto; }
.booking-actions .btn { flex: 1; padding: 13px 18px; font-size: 14px; }
.booking-back { flex: 0 0 auto !important; }
.booking-back span { display: none; }
.booking-note { font-size: 12px; color: var(--text-mute); text-align: center; margin-top: 12px; }

.booking-success {
  position: absolute; inset: 0; z-index: 5;
  background: linear-gradient(170deg, var(--rose-bg), #fff);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  padding: 32px; text-align: center;
  opacity: 0; visibility: hidden; transform: scale(.96);
  transition: opacity .4s var(--ease), visibility .4s var(--ease), transform .4s var(--ease);
}
.booking-success.is-visible { opacity: 1; visibility: visible; transform: scale(1); }
.booking-success-check {
  width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep)); color: #fff;
  box-shadow: var(--shadow);
}
.booking-success-check svg { width: 32px; height: 32px; }
.booking-success strong { font-family: var(--font-display); font-size: 26px; color: var(--text); }
.booking-success span { font-size: 15px; color: var(--text-dim); max-width: 22em; }
.booking-success .btn { margin-top: 8px; }

/* =====================================================
   AVIS
   ===================================================== */
.avis { max-width: var(--maxw); margin: 0 auto; padding-bottom: clamp(40px, 6vw, 70px); }
.avis-rating { display: inline-flex; align-items: center; gap: 10px; margin-top: 18px; }
.avis-stars { color: var(--gold); letter-spacing: 2px; }
.avis-rating-text { font-size: 14px; color: var(--text-dim); }
.avis-rating-text strong { color: var(--text); }

.avis-carousel { position: relative; margin-top: clamp(32px, 4vw, 48px); }
.avis-track {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px var(--pad) 20px; scrollbar-width: none;
}
.avis-track::-webkit-scrollbar { display: none; }
.avis-card {
  flex: 0 0 clamp(280px, 32vw, 380px); scroll-snap-align: start;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 16px;
}
.avis-card .avis-stars { font-size: 15px; }
.avis-text { font-family: var(--font-display); font-size: 20px; font-style: italic; line-height: 1.4; color: var(--text); }
.avis-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avis-avatar {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep)); color: #fff;
  font-family: var(--font-display); font-size: 20px; font-weight: 600;
}
.avis-author strong { display: block; font-size: 15px; color: var(--text); }
.avis-author span { font-size: 13px; color: var(--text-mute); }

.avis-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); z-index: 3;
  transition: all .25s var(--ease);
}
.avis-btn svg { width: 20px; height: 20px; color: var(--text); }
.avis-btn:hover { background: var(--rose-bg); border-color: var(--rose); }
.avis-btn-prev { left: calc(var(--pad) - 24px); }
.avis-btn-next { right: calc(var(--pad) - 24px); }

/* =====================================================
   SALON / HISTOIRE
   ===================================================== */
.salon { max-width: var(--maxw); margin: 0 auto; padding: clamp(56px, 8vw, 100px) var(--pad); }
.salon-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.salon-visual { position: relative; }
.salon-img {
  aspect-ratio: 4/5; border-radius: 30px; overflow: hidden;
  background: linear-gradient(160deg, var(--rose-bg), #fff);
  background-size: cover; background-position: center;
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
  display: grid; place-items: center;
}
.salon-img-placeholder { text-align: center; color: var(--text-mute); display: grid; place-items: center; gap: 12px; }
.salon-img-placeholder svg { width: 60px; height: 60px; color: var(--rose); }
.salon-img-placeholder code { background: #fff; padding: 2px 8px; border-radius: 6px; color: var(--rose-deep); font-size: 13px; }
.salon-badge {
  position: absolute; bottom: -22px; right: -16px;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 16px 22px; display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow);
}
.salon-badge-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.salon-badge-text strong { display: block; font-family: var(--font-display); font-size: 24px; color: var(--text); white-space: nowrap; }
.salon-badge-text span { font-size: 13px; color: var(--text-mute); white-space: nowrap; }

.salon-content .section-tag { margin-bottom: 14px; }
.salon-text { color: var(--text-dim); margin-top: 16px; font-size: 16px; }
.salon-text-lead { font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 26px); font-style: italic; color: var(--text); margin-top: 22px; }
.salon-values { display: flex; flex-direction: column; gap: 14px; margin: 30px 0; }
.salon-value { display: flex; align-items: center; gap: 14px; }
.salon-value-icon { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: var(--rose-bg); border: 1px solid var(--line); color: var(--rose-deep); flex: 0 0 auto; }
.salon-value-icon svg { width: 24px; height: 24px; }
.salon-value strong { display: block; font-size: 16px; color: var(--text); }
.salon-value span { font-size: 14px; color: var(--text-mute); }
.salon-cta { margin-top: 8px; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer { background: linear-gradient(180deg, #fff, var(--rose-bg)); border-top: 1px solid var(--line); }
.footer-info-strip { border-bottom: 1px solid var(--line); }
.footer-info-strip-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 28px var(--pad);
  display: flex; align-items: center; justify-content: center; gap: clamp(16px, 3vw, 48px); flex-wrap: wrap;
}
.footer-info-item { display: flex; align-items: center; gap: 14px; }
.footer-info-icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: #fff; border: 1px solid var(--line); color: var(--rose-deep); }
.footer-info-item strong { display: block; font-size: 15px; color: var(--text); }
.footer-info-item span { font-size: 13px; color: var(--text-mute); }
.footer-info-divider { width: 1px; height: 36px; background: var(--line); }

.footer-cta-band { max-width: var(--maxw); margin: 0 auto; padding: clamp(48px, 6vw, 80px) var(--pad); }
.footer-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); }
.footer-cta-tag { display: inline-block; font-size: 12.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--rose-deep); margin-bottom: 14px; }
.footer-cta-title { font-family: var(--font-display); font-weight: 600; font-size: clamp(26px, 3.5vw, 38px); line-height: 1.05; color: var(--text); margin-bottom: 24px; }
.footer-cta-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 26px; }
.footer-cta-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--text-dim); font-size: 15px; }
.footer-cta-icon { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: #fff; border: 1px solid var(--line); color: var(--rose-deep); flex: 0 0 auto; }
.footer-cta-icon svg { width: 19px; height: 19px; }
.footer-cta-list a:hover { color: var(--rose-deep); }
.footer-hours div { display: flex; gap: 10px; justify-content: space-between; font-size: 14px; }
.footer-hours strong { color: var(--text); font-weight: 500; }
.footer-cta-btn { margin-top: 4px; }

.footer-top {
  max-width: var(--maxw); margin: 0 auto; padding: 40px var(--pad);
  display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  border-top: 1px solid var(--line);
}
.footer-logo-wrap { display: flex; align-items: baseline; gap: 5px; }
.footer-logo-script { font-family: var(--font-script); font-size: 32px; color: var(--rose-deep); }
.footer-logo-num { font-family: var(--font-display); font-weight: 600; font-size: 24px; color: var(--text); }
.footer-brand p { color: var(--text-mute); font-size: 14px; margin-top: 6px; }
.footer-cols { display: flex; gap: clamp(32px, 6vw, 72px); }
.footer-col-title { display: block; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--text); margin-bottom: 14px; }
.footer-cols a { display: block; color: var(--text-mute); font-size: 14px; padding: 4px 0; transition: color .25s var(--ease); }
.footer-cols a:hover { color: var(--rose-deep); }

.footer-bottom {
  max-width: var(--maxw); margin: 0 auto; padding: 22px var(--pad);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid var(--line); color: var(--text-mute); font-size: 13px;
}

/* =====================================================
   REVEAL ANIMATIONS
   ===================================================== */
.reveal, .reveal-up { opacity: 0; transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-up { transform: translateY(28px); }
.reveal.is-visible, .reveal-up.is-visible { opacity: 1; transform: none; }
.word { display: inline-block; opacity: 0; transform: translateY(105%); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.word.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .galerie-grid { columns: 3; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { width: 100%; max-width: 440px; margin: 28px auto 0; }
  /* min-height : garantit que le cadre ne s'effondre pas si aspect-ratio flanche */
  .hero-visual-frame { aspect-ratio: 4 / 5; min-height: 420px; }
  .salon-grid { grid-template-columns: 1fr; }
  .salon-visual { max-width: 440px; margin: 0 auto 18px; }
  /* min-height : même garde-fou que le hero pour ne pas effondrer l'image */
  .salon-img { aspect-ratio: 4 / 5; min-height: 420px; }
}
@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .services-grid, .tarifs-grid { grid-template-columns: 1fr 1fr; }
  .booking-body { grid-template-columns: 1fr; }
  .booking-summary { border-left: none; border-top: 1px solid var(--line); }
}
@media (max-width: 720px) {
  .galerie-grid { columns: 2; }
  .booking-services { grid-template-columns: 1fr; }
  .booking-step-label { display: none; }
  .booking-step-line { width: 18px; }
  .section-head-row { flex-direction: column; align-items: flex-start; }
  .footer-cta-grid { grid-template-columns: 1fr; }
  .footer-info-divider { display: none; }
  .form-row-2 { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .services-grid, .tarifs-grid { grid-template-columns: 1fr; }
  .galerie-grid { columns: 1; }
  .hero-title { font-size: clamp(40px, 13vw, 60px); }
  .hero-stats { gap: 18px; }
  /* CTA empilés en pleine largeur (plus de débordement) */
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  /* bulles bien posées sur les coins de l'image, sans déborder l'écran */
  .hero-visual-badge { left: 10px; bottom: 12px; }
  .hero-visual-tag-2 { right: 10px; top: 12px; }
  /* badge salon dans les limites de l'écran */
  .salon-badge { right: 8px; bottom: -16px; padding: 13px 18px; }
}
