/* ============================================
   LARISSA BEAUTY STUDIO & PRETTY NAILS – STYLESHEET
   Design: Rose poudré / Doré / Noir élégant
   ============================================ */

/* ---- TOKENS ---- */
:root {
  --rose-light:    #fdf0f4;
  --rose-soft:     #f5d5e2;
  --rose-mid:      #e8aec4;
  --rose-dark:     #c97090;
  --rose-deep:     #a84f6b;

  --gold-light:    #fdf0f4;
  --gold-soft:     #e8aec4;
  --gold-mid:      #c97090;
  --gold-dark:     #a84f6b;

  --dark:          #33101f;
  --dark-2:        #4a1930;
  --dark-3:        #632342;
  --text-dark:     #2b1f26;
  --text-mid:      #6d4e5d;
  --text-light:    #a3839a;

  --white:         #ffffff;
  --off-white:     #fdf8fb;

  --gradient-hero: linear-gradient(135deg, rgba(51,16,31,0.75) 0%, rgba(74,25,48,0.55) 50%, rgba(169,79,107,0.35) 100%);
  --gradient-gold: linear-gradient(135deg, #c97090 0%, #e8aec4 50%, #c97090 100%);
  --gradient-rose: linear-gradient(135deg, #e8aec4 0%, #f5d5e2 50%, #c97090 100%);
  --gradient-card: linear-gradient(145deg, #ffffff 0%, #fdf0f4 100%);

  --shadow-sm:   0 2px 8px rgba(168, 79, 107, 0.08);
  --shadow-md:   0 8px 32px rgba(168, 79, 107, 0.12);
  --shadow-lg:   0 20px 60px rgba(168, 79, 107, 0.18);
  --shadow-gold: 0 8px 24px rgba(201, 112, 144, 0.3);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Outfit', 'Segoe UI', system-ui, sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 10px 16px;
  border-radius: 100px;
  background: var(--dark);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }
input, select, textarea { font-family: inherit; }
address { font-style: normal; }

/* ---- CONTAINER ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 500; }

em { font-style: italic; color: var(--rose-dark); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.2s; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--gradient-gold);
  color: var(--dark);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  box-shadow: 0 12px 36px rgba(201, 168, 76, 0.45);
  transform: translateY(-2px);
}
.hero .btn-primary::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -60%;
  width: 30%;
  height: 140%;
  background: rgba(255,255,255,0.5);
  transform: skewX(-22deg);
  animation: buttonShine 4.8s ease-in-out infinite;
}
.hero .btn-primary span,
.hero .btn-primary svg { position: relative; z-index: 1; }
@keyframes buttonShine {
  0%, 62% { left: -60%; opacity: 0; }
  70% { opacity: 0.7; }
  88%, 100% { left: 140%; opacity: 0; }
}

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--rose-deep);
  border: 2px solid var(--rose-mid);
}
.btn-outline:hover {
  background: var(--rose-light);
  border-color: var(--rose-dark);
  transform: translateY(-2px);
}

.btn-large { padding: 16px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
#whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: floatPulse 2.5s ease-in-out infinite;
}
#whatsapp-float svg { width: 22px; height: 22px; flex-shrink: 0; }
#whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.55);
}

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4); }
  50%       { box-shadow: 0 8px 40px rgba(37, 211, 102, 0.65); }
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(253, 248, 251, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232, 174, 196, 0.25);
  transition: box-shadow 0.3s, background 0.3s;
}

.header.scrolled {
  background: rgba(253, 248, 251, 0.97);
  box-shadow: 0 4px 24px rgba(168, 79, 107, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.logo-mark {
  display: grid;
  place-items: center;
  position: relative;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 50%;
  padding: 3px;
  background: var(--gradient-gold);
  color: var(--dark);
  box-shadow: 0 5px 14px rgba(168, 79, 107, 0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.logo-mark > img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 18%;
  border: 1.5px solid rgba(255,255,255,0.88);
}
.logo-badge {
  position: absolute;
  right: -5px;
  bottom: -4px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--white);
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--dark);
  box-shadow: 0 3px 8px rgba(51, 16, 31, 0.25);
}
.logo-badge svg { width: 13px; height: 13px; overflow: visible; }
.logo:hover .logo-mark {
  transform: rotate(-6deg) scale(1.06);
  box-shadow: 0 8px 20px rgba(168, 79, 107, 0.28);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: clamp(0.78rem, 1.12vw, 1.04rem);
  font-weight: 700;
  color: #000;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  white-space: nowrap;
}
.logo-main i {
  color: var(--rose-deep);
  font-size: 0.95em;
  font-weight: 400;
}
.logo-sub {
  margin-top: 2px;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.13em;
  text-transform: none;
}
.logo-sub em {
  color: var(--rose-deep);
  font-family: 'Playfair Display', serif;
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Nav */
.nav-list {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-link {
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gold-mid);
  border-radius: 1px;
  transition: width 0.25s;
}
.nav-link:hover, .nav-link.active {
  color: var(--rose-deep);
  background: var(--rose-light);
}
.nav-link.active::after { width: calc(100% - 28px); }

.header-cta { font-size: 0.88rem; padding: 10px 22px; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.06);
  transition: transform 8s ease-out;
}
.hero.loaded .hero-img { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: var(--gradient-hero);
}
.hero-atmosphere {
  --spot-x: 74%;
  --spot-y: 30%;
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  background: radial-gradient(ellipse 45% 42% at var(--spot-x) var(--spot-y), rgba(255, 227, 239, 0.24), transparent 70%);
  transition: background 0.25s ease-out;
}
.hero-atmosphere::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.46;
  background-image: radial-gradient(circle at 16% 22%, rgba(255,255,255,0.9) 0 1px, transparent 1.7px), radial-gradient(circle at 78% 18%, rgba(255,224,235,0.9) 0 1px, transparent 1.7px), radial-gradient(circle at 68% 74%, rgba(255,255,255,0.8) 0 1px, transparent 1.8px), radial-gradient(circle at 24% 80%, rgba(255,224,235,0.9) 0 1px, transparent 1.7px);
  animation: starTwinkle 5s ease-in-out infinite alternate;
}
.hero-orb {
  position: absolute;
  display: block;
  width: clamp(210px, 24vw, 380px);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.28;
  mix-blend-mode: screen;
}
.hero-orb--one { top: -12%; right: -4%; background: #ffd7e7; animation: orbFloat 11s ease-in-out infinite; }
.hero-orb--two { bottom: -24%; left: 23%; background: #f8b7d3; animation: orbFloat 14s ease-in-out -4s infinite reverse; }
.hero-spark {
  position: absolute;
  color: rgba(255, 239, 246, 0.82);
  text-shadow: 0 0 22px rgba(255, 210, 231, 0.85);
  animation: sparkle 3.2s ease-in-out infinite;
}
.hero-spark--one { top: 19%; right: 20%; font-size: 1.1rem; }
.hero-spark--two { top: 58%; right: 8%; font-size: 0.75rem; animation-delay: -1.4s; }
.hero-spark--three { bottom: 20%; right: 37%; font-size: 0.7rem; animation-delay: -2.2s; }
@keyframes orbFloat { 0%, 100% { transform: translate3d(0, 0, 0) scale(1); } 50% { transform: translate3d(-28px, 22px, 0) scale(1.12); } }
@keyframes sparkle { 0%, 100% { transform: scale(0.7) rotate(0deg); opacity: 0.25; } 50% { transform: scale(1.25) rotate(25deg); opacity: 1; } }
@keyframes starTwinkle { from { opacity: 0.25; } to { opacity: 0.68; } }

/* A fluid transition from the hero to the services. */
.signature-bar {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding: 22px 0;
  color: var(--white);
  background: linear-gradient(110deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark) 100%);
}
.signature-bar::before,
.signature-bar::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(4px);
}
.signature-bar::before { top: -190px; left: 8%; background: rgba(232, 174, 196, 0.16); }
.signature-bar::after { right: 9%; bottom: -220px; background: rgba(201, 112, 144, 0.2); }
.signature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.signature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
}
.signature-item > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--gold-soft);
  background: rgba(255,255,255,0.06);
  font-size: 1.05rem;
}
.signature-item p { display: grid; gap: 1px; }
.signature-item strong { color: var(--white); font-size: 0.84rem; font-weight: 600; }
.signature-item small { color: rgba(255,255,255,0.58); font-size: 0.75rem; line-height: 1.35; }

/* ============================================================
   POURQUOI NOUS CHOISIR
   ============================================================ */
.why-section {
  background: linear-gradient(180deg, #fff9fb 0%, var(--off-white) 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.why-card {
  min-height: 210px;
  padding: 28px 22px;
  border: 1px solid rgba(232, 174, 196, 0.34);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: var(--rose-mid);
  box-shadow: var(--shadow-md);
}

.why-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  border: 1px solid var(--rose-soft);
  border-radius: 50%;
  color: var(--rose-deep);
  background: var(--rose-light);
  font-size: 1.55rem;
}

.why-card h3 {
  margin-bottom: 9px;
  color: var(--dark);
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
}

.why-card p {
  color: var(--text-mid);
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 80px;
  max-width: 720px;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 20px;
}

.hero-title {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.hero-title em { color: var(--gold-soft); }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-indicator span {
  display: block;
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 8px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50%       { transform: translateX(-50%) translateY(10px); opacity: 0.3; }
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section { position: relative; padding: 108px 0; scroll-margin-top: var(--header-h); }
.services-section,
.tarifs-section,
.avis-section,
.faq-section { isolation: isolate; overflow: hidden; }
.services-section::before,
.tarifs-section::before,
.avis-section::before,
.faq-section::before {
  content: '';
  position: absolute;
  z-index: 0;
  width: 340px;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}
.services-section::before { top: -150px; right: -150px; background: rgba(245, 213, 226, 0.58); }
.tarifs-section::before { bottom: -190px; left: -150px; background: rgba(232, 174, 196, 0.22); }
.avis-section::before { top: 25%; right: -220px; background: rgba(253, 240, 244, 0.9); }
.faq-section::before { bottom: -200px; left: -190px; background: rgba(245, 213, 226, 0.55); }
.services-section > .container,
.tarifs-section > .container,
.avis-section > .container,
.faq-section > .container { position: relative; z-index: 1; }

.section-header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 64px;
}

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 12px;
}

.section-title {
  color: var(--dark);
  margin-bottom: 16px;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px; height: 3px;
  background: var(--gradient-gold);
  border-radius: 2px;
  margin: 16px auto 0;
}

.section-subtitle {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.services-category-title {
  grid-column: 1 / -1;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--rose-deep);
  margin-top: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--rose-soft);
}
.services-category-title:first-child { margin-top: 0; }

.services-category-note {
  grid-column: 1 / -1;
  max-width: 700px;
  margin: -14px 0 2px;
  color: var(--text-light);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.65;
}

.service-card {
  background: var(--gradient-card);
  border: 1px solid rgba(232, 174, 196, 0.3);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--rose-mid);
}

.service-card[data-photo] .service-photo { cursor: zoom-in; }

.service-photo {
  width: calc(100% + 64px);
  margin: -36px -32px 20px;
  height: 200px;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.service-card:hover .service-photo img { transform: scale(1.06); }
.service-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 28%, rgba(255,255,255,0.38) 48%, transparent 68%);
  transform: translateX(-130%);
  transition: transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}
.service-card:hover .service-photo::after { transform: translateX(130%); }

/* Microshading — carrousel automatique, sans interaction requise */
.auto-carousel {
  isolation: isolate;
  background: linear-gradient(135deg, #412a35, #dbaab9);
}

.auto-carousel .auto-carousel-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  object-position: center 34%;
  transform: scale(1.06);
  transition: opacity 750ms ease, transform 5.6s ease;
}

.auto-carousel .auto-carousel-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.service-card:hover .auto-carousel .auto-carousel-slide.is-active { transform: scale(1.025); }

.auto-carousel-dots {
  position: absolute;
  z-index: 3;
  right: 13px;
  bottom: 11px;
  display: flex;
  gap: 5px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.33);
  border-radius: 999px;
  background: rgba(23, 17, 22, 0.42);
  backdrop-filter: blur(8px);
}

.auto-carousel-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: transform 300ms ease, background 300ms ease;
}

.auto-carousel-dots span.is-active {
  background: var(--gold-soft);
  transform: scale(1.35);
}

/* Pose Lace Frontal — triptyque superposé dans le format standard des cartes */
.lace-gallery { isolation: isolate; }
.lace-gallery .portfolio-gallery-label {
  position: absolute;
  z-index: 5;
  right: 10px;
  bottom: 9px;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 100px;
  color: #fff;
  background: rgba(23, 17, 22, 0.48);
  backdrop-filter: blur(8px);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.lace-gallery-photo {
  position: absolute;
  width: 56% !important;
  height: calc(100% - 18px) !important;
  top: 9px;
  margin: 0;
  border: 2px solid rgba(255, 255, 255, 0.94);
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(23, 17, 22, 0.2);
  object-position: center 35%;
  transform-origin: center bottom;
  transition: transform 440ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 440ms ease !important;
}

.lace-gallery-photo--primary {
  left: 22%;
  z-index: 3;
  transform: rotate(-1.5deg) translateY(-2px);
}

.lace-gallery-photo--secondary {
  left: 4%;
  z-index: 1;
  transform: rotate(-7deg) translate(-4px, 9px);
}

.lace-gallery-photo--tertiary {
  right: 4%;
  z-index: 2;
  transform: rotate(7deg) translate(4px, 9px);
}

.service-card:hover .lace-gallery-photo--primary {
  transform: rotate(0) translateY(-7px) scale(1.035);
  box-shadow: 0 16px 28px rgba(23, 17, 22, 0.25);
}

.service-card:hover .lace-gallery-photo--secondary { transform: rotate(-9deg) translate(-8px, 12px); }
.service-card:hover .lace-gallery-photo--tertiary { transform: rotate(9deg) translate(8px, 12px); }

.service-card--featured {
  background: linear-gradient(135deg, #fff0f5 0%, #ffe4ee 100%);
  border-color: rgba(201, 168, 76, 0.4);
}
.service-card--featured:hover { border-color: var(--gold-mid); }

.service-card--catalog {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 30px 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(232, 174, 196, 0.38), transparent 33%),
    var(--gradient-card);
}

.catalog-card-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: var(--rose-deep);
  background: var(--rose-light);
  font-size: 1.1rem;
}

.service-card--catalog .service-desc { flex: 1; }

.service-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gradient-gold);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.03em;
}

.service-icon {
  width: 64px; height: 64px;
  color: var(--rose-dark);
  margin-bottom: 20px;
}

.service-name {
  color: var(--dark);
  margin-bottom: 10px;
}

.service-desc {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 18px;
  font-weight: 300;
}

.service-note {
  margin: -6px 0 16px;
  color: var(--rose-deep);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.45;
}

/* Armande Nails — portfolio immersif */
.nail-showcase {
  grid-column: span 1;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 25px 24px 20px;
  border: 1px solid rgba(181, 150, 88, 0.38);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 96% 4%, rgba(181, 150, 88, 0.2), transparent 31%),
    linear-gradient(135deg, #f8dfe5 0%, #fff6f4 56%, #f2d3dc 100%);
  box-shadow: 0 18px 42px rgba(65, 26, 44, 0.11);
}

[data-photo-gallery].is-clickable { cursor: zoom-in; }

.nail-showcase-copy {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}

.nail-showcase-eyebrow {
  margin: 0 0 6px;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nail-showcase h3 {
  margin: 0;
  color: var(--dark);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.3vw, 2.35rem);
  line-height: 1;
}

.nail-showcase-copy > p:last-child {
  max-width: 30ch;
  margin: 9px 0 0;
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.6;
}

.nail-showcase-gallery {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  flex: 1;
  min-height: 225px;
  margin-top: auto;
  padding: 12px 20px 17px 5px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dark) rgba(255, 255, 255, 0.55);
}

.nail-showcase-gallery::-webkit-scrollbar { height: 7px; }
.nail-showcase-gallery::-webkit-scrollbar-track { border-radius: 20px; background: rgba(255, 255, 255, 0.62); }
.nail-showcase-gallery::-webkit-scrollbar-thumb { border-radius: 20px; background: var(--gold-dark); }

.nail-showcase-slide {
  flex: 0 0 66%;
  aspect-ratio: 3 / 4;
  margin: 0 0 0 -23%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 18px;
  background: var(--rose-pale);
  box-shadow: 0 12px 24px rgba(65, 26, 44, 0.14);
  scroll-snap-align: start;
  transform: perspective(900px) rotate(-3deg) rotateY(-4deg) translateZ(0);
  transition: transform 340ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 340ms ease;
}

.nail-showcase-slide:first-child { margin-left: 0; z-index: 1; }
.nail-showcase-slide:nth-child(2) { z-index: 2; transform: perspective(900px) rotate(2deg) rotateY(3deg) translateY(-8px) translateZ(8px); }
.nail-showcase-slide:nth-child(3) { z-index: 3; transform: perspective(900px) rotate(-1deg) rotateY(-2deg) translateY(5px) translateZ(16px); }

.nail-showcase-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1), filter 500ms ease;
}

.nail-showcase-slide:hover {
  position: relative;
  z-index: 5;
  transform: perspective(900px) rotate(0) rotateY(0) translateY(-10px) scale(1.03);
  box-shadow: 0 20px 32px rgba(65, 26, 44, 0.22);
}

.nail-showcase-slide:hover img { transform: scale(1.07); filter: saturate(1.04) contrast(1.02); }

.nail-showcase-hint {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  margin: 4px 0 0;
  color: var(--rose-deep);
  font-size: 0.75rem;
  font-weight: 700;
}

.nail-showcase-hint span { color: var(--gold-dark); font-size: 1rem; }

.service-price {
  font-size: 0.88rem;
  color: var(--text-mid);
  font-weight: 400;
}
.service-price strong {
  font-size: 1.3rem;
  font-family: 'Playfair Display', serif;
  color: var(--rose-deep);
  font-weight: 700;
}
.service-price span { font-size: 0.78rem; color: var(--text-light); }

.service-rate-list {
  display: grid;
  gap: 7px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(232, 174, 196, 0.38);
}
.service-rate-list > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  color: var(--text-mid);
  font-size: 0.82rem;
  line-height: 1.35;
}
.service-rate-list strong {
  flex: 0 0 auto;
  color: var(--rose-deep);
  font-family: 'Playfair Display', serif;
  font-size: 0.92rem;
}

/* ============================================================
   TARIFS
   ============================================================ */
.tarifs-section { background: linear-gradient(180deg, var(--rose-light) 0%, var(--off-white) 100%); }

.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.tarif-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  transition: var(--transition);
}
.tarif-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--rose-soft);
}

.tarif-card--featured {
  background: linear-gradient(160deg, var(--dark-2) 0%, var(--dark) 100%);
  border-color: var(--gold-mid);
  transform: scale(1.02);
}
.tarif-card--featured:hover {
  transform: scale(1.02) translateY(-4px);
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-gold), var(--shadow-lg);
}

.tarif-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.tarif-header {
  text-align: center;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(232, 174, 196, 0.25);
  margin-bottom: 28px;
}
.tarif-card--featured .tarif-header {
  border-color: rgba(201, 168, 76, 0.25);
}

.tarif-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.tarif-card--featured .tarif-name { color: var(--gold-soft); }

.tarif-price-block { margin-bottom: 8px; }

.tarif-price-old {
  display: inline-block;
  font-size: 0.95rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-right: 8px;
}
.tarif-card--featured .tarif-price-old { color: rgba(255,255,255,0.35); }

.tarif-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--rose-deep);
  line-height: 1;
}
.tarif-card--featured .tarif-price { color: var(--gold-mid); }

.tarif-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 300;
}
.tarif-card--featured .tarif-desc { color: rgba(255,255,255,0.55); }

.tarif-features {
  flex: 1;
  margin-bottom: 28px;
}
.tarif-features li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--text-mid);
  border-bottom: 1px dashed rgba(232, 174, 196, 0.2);
}
.tarif-card--featured .tarif-features li { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.1); }
.tarif-features li.unavailable { opacity: 0.45; }

.tarif-item-price {
  font-weight: 700;
  color: var(--rose-deep);
  flex-shrink: 0;
  white-space: nowrap;
}
.tarif-card--featured .tarif-item-price { color: var(--gold-soft); }

.tarif-promo {
  margin: 6px -8px;
  padding: 11px 8px !important;
  border: 1px solid rgba(201, 168, 76, 0.52) !important;
  border-radius: 10px;
  background: rgba(201, 168, 76, 0.12);
}

.tarif-promo span:first-child { display: grid; gap: 2px; }
.tarif-promo small { color: inherit; font-size: 0.76rem; opacity: 0.82; }
.tarif-promo .tarif-item-price { font-size: 1rem; }

.check { color: var(--gold-mid); font-weight: 700; font-size: 0.95rem; flex-shrink: 0; }
.cross { color: var(--text-light); font-size: 0.9rem; flex-shrink: 0; }
.tarif-card--featured .check { color: var(--gold-soft); }

.tarifs-note {
  text-align: center;
  margin-top: 40px;
  color: var(--text-mid);
  font-size: 0.9rem;
  font-weight: 300;
}
.tarifs-note a {
  color: var(--rose-deep);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
}

/* ============================================================
   BOUTIQUE MÈCHES
   ============================================================ */
.boutique-section {
  overflow: hidden;
  background: linear-gradient(135deg, #fff7f9 0%, #f6e4ea 48%, #fdf8fb 100%);
}
.boutique-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: center;
}
.boutique-visual {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.boutique-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 42%, rgba(51,16,31,0.3));
  pointer-events: none;
}
.boutique-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.boutique-visual:hover img { transform: scale(1.055); }
.boutique-visual-label {
  position: absolute;
  z-index: 1;
  left: 22px;
  bottom: 22px;
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,0.36);
  border-radius: 100px;
  color: var(--white);
  background: rgba(51,16,31,0.32);
  backdrop-filter: blur(10px);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.boutique-content .section-title { text-align: left; }
.boutique-content .section-title::after { margin-left: 0; }
.boutique-intro {
  max-width: 550px;
  margin-bottom: 28px;
  color: var(--text-mid);
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.75;
}
.boutique-categories { display: grid; gap: 12px; margin-bottom: 28px; }
.boutique-categories > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(232, 174, 196, 0.42);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.64);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.boutique-categories > div:hover { transform: translateX(5px); box-shadow: var(--shadow-sm); }
.boutique-categories > div > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--rose-deep);
  background: var(--rose-light);
  font-size: 0.72rem;
  font-weight: 700;
}
.boutique-categories p { display: grid; gap: 2px; }
.boutique-categories strong { color: var(--dark); font-size: 0.9rem; }
.boutique-categories small { color: var(--text-mid); font-size: 0.78rem; line-height: 1.4; }
.boutique-note { margin-top: 14px; color: var(--text-light); font-size: 0.76rem; }

.pret-a-porter-section {
  background: var(--off-white);
}
.pret-a-porter-card {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 60px);
  border: 1px solid rgba(232, 174, 196, 0.48);
  border-radius: var(--radius-xl);
  text-align: center;
  background:
    radial-gradient(circle at 12% 8%, rgba(232, 174, 196, 0.33), transparent 28%),
    radial-gradient(circle at 90% 92%, rgba(201, 168, 76, 0.16), transparent 28%),
    var(--gradient-card);
  box-shadow: var(--shadow-md);
}
.pret-a-porter-card .section-title { margin-bottom: 16px; }
.pret-a-porter-card > p:not(.section-eyebrow):not(.pret-a-porter-price) {
  max-width: 570px;
  margin: 0 auto 24px;
  color: var(--text-mid);
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.7;
}
.pret-a-porter-price {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
  padding: 9px 14px;
  border: 1px solid var(--rose-soft);
  border-radius: 100px;
  color: var(--text-mid);
  background: rgba(255,255,255,0.75);
  font-size: 0.84rem;
}
.pret-a-porter-price strong {
  color: var(--rose-deep);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
}

/* ============================================================
   GALERIE
   ============================================================ */
.galerie-section { background: var(--dark); }
.galerie-section .section-eyebrow { color: var(--gold-soft); }
.galerie-section .section-title { color: var(--white); }
.galerie-section .section-title::after { background: var(--gradient-gold); }
.galerie-section .section-subtitle { color: rgba(255,255,255,0.55); }

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (min-width: 1025px) {
  .galerie-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 82px;
    gap: 16px;
  }
  .galerie-item {
    grid-column: span 4;
    grid-row: span 4;
    aspect-ratio: auto;
  }
  .galerie-item--wide { grid-column: span 8; grid-row: span 5; }
  .galerie-item--tall { grid-row: span 7; }
}

.galerie-item {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
  will-change: transform;
}
.galerie-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.55s ease;
}
.galerie-item:hover img,
.galerie-item.tilting img { transform: scale(1.09); filter: saturate(1.08) contrast(1.03); }
.galerie-item--hair img { object-position: center 18%; }
.galerie-item--microshading img { object-position: center top; }
.galerie-item::before {
  content: '';
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(255,255,255,0.52), transparent 37%);
  mix-blend-mode: soft-light;
  transition: opacity 0.22s ease;
}
.galerie-item.tilting::before { opacity: 1; }
.galerie-item::after {
  content: '';
  position: absolute;
  z-index: 3;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.26);
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.galerie-item:hover::after,
.galerie-item:focus-visible::after { opacity: 1; }
.galerie-item:focus-visible { outline: 3px solid var(--gold-soft); outline-offset: 3px; }

.galerie-overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(to top, rgba(26,17,24,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.3s;
}
.galerie-item:hover .galerie-overlay { opacity: 1; }
.galerie-overlay p {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.galerie-cta { text-align: center; margin-top: 44px; }
.galerie-cta .btn-outline {
  border-color: rgba(201, 168, 76, 0.5);
  color: var(--gold-soft);
}
.galerie-cta .btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold-soft);
}

/* ============================================================
   AVIS CLIENTS
   ============================================================ */
.avis-section { background: var(--off-white); }

.avis-rating-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 56px;
}
.avis-score {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.avis-stars-big {
  font-size: 2rem;
  color: var(--gold-mid);
  letter-spacing: 4px;
}
.avis-rating-summary p { color: var(--text-mid); font-size: 0.9rem; }
.avis-rating-summary strong { color: var(--dark); }

.avis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.avis-card {
  background: var(--white);
  border: 1px solid rgba(232, 174, 196, 0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.avis-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-soft);
}

.avis-stars {
  font-size: 1.15rem;
  color: var(--gold-mid);
  letter-spacing: 3px;
}

.avis-text {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.7;
  font-weight: 300;
  font-style: italic;
  flex: 1;
  position: relative;
  padding-left: 20px;
}
.avis-text::before {
  content: '"';
  position: absolute;
  left: 0; top: -6px;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--rose-soft);
  line-height: 1;
}

.avis-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.avis-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gradient-rose);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.avis-name { display: block; font-size: 0.9rem; font-weight: 600; color: var(--dark); }
.avis-date { display: block; font-size: 0.78rem; color: var(--text-light); margin-top: 2px; }

.avis-authentic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.avis-authentic-card {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(232, 174, 196, 0.38);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.avis-authentic-card--soft { background: linear-gradient(145deg, #fff9fb, #f8e9ef); }
.avis-authentic-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--dark);
  background: var(--gradient-gold);
}
.avis-authentic-card h3 {
  margin-bottom: 10px;
  color: var(--dark);
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
}
.avis-authentic-card > p { color: var(--text-mid); font-size: 0.92rem; font-weight: 300; line-height: 1.7; }
.avis-authentic-card .btn { margin-top: 22px; }
.avis-authentic-label { margin-bottom: 16px; color: var(--rose-deep) !important; font-size: 0.72rem !important; font-weight: 700 !important; letter-spacing: 0.12em; text-transform: uppercase; }
.avis-principles { display: grid; gap: 13px; padding: 0; list-style: none; }
.avis-principles li { display: grid; grid-template-columns: 22px 1fr; gap: 8px; color: var(--text-mid); font-size: 0.87rem; line-height: 1.5; }
.avis-principles span { color: var(--rose-deep); font-weight: 700; }
.avis-authentic-note { margin-top: 20px; color: var(--text-light) !important; font-size: 0.78rem !important; }
.review-form { display: grid; gap: 16px; margin-top: 24px; padding-top: 22px; border-top: 1px solid rgba(126, 45, 75, 0.15); }
.review-form[hidden] { display: none !important; }
.review-form label, .review-rating legend { color: var(--dark); font-size: 0.82rem; font-weight: 600; }
.review-form label { display: grid; gap: 7px; }
.review-form input[type="text"], .review-form textarea { width: 100%; border: 1px solid rgba(126, 45, 75, 0.2); border-radius: 12px; outline: none; color: var(--dark); background: rgba(255, 255, 255, 0.92); padding: 12px 13px; transition: border-color 180ms ease, box-shadow 180ms ease; }
.review-form textarea { min-height: 120px; resize: vertical; }
.review-form input[type="text"]:focus, .review-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(203, 167, 93, 0.18); }
.review-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; }
.review-rating { margin: 0; padding: 0; border: 0; }
.review-rating legend { margin-bottom: 9px; }
.review-stars { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 7px; }
.review-stars label { position: relative; display: grid; place-items: center; min-height: 48px; padding: 7px 4px; border: 1px solid rgba(126, 45, 75, 0.16); border-radius: 10px; background: #fff9fb; cursor: pointer; }
.review-stars input { position: absolute; opacity: 0; pointer-events: none; }
.review-stars span { color: var(--gold); font-size: 0.72rem; letter-spacing: -0.08em; }
.review-stars em { color: var(--text-mid); font-size: 0.67rem; font-style: normal; }
.review-stars label:has(input:checked) { border-color: var(--gold); background: #fff4d7; box-shadow: 0 0 0 2px rgba(203, 167, 93, 0.16); }
.review-stars label:focus-within { outline: 2px solid var(--rose-deep); outline-offset: 2px; }
.review-consent { display: grid !important; grid-template-columns: 18px 1fr; align-items: start; gap: 9px !important; color: var(--text-mid) !important; font-weight: 400 !important; line-height: 1.45; }
.review-consent input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--rose-deep); }
.review-honeypot { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.review-form-message { margin: 0 !important; padding: 11px 13px; border-radius: 10px; font-size: 0.8rem !important; line-height: 1.45 !important; }
.review-form-message--error { color: #941f3a !important; background: #fff0f3; }
.review-form-message--success { color: #285c47 !important; background: #edf8f2; }
.review-form .btn { width: 100%; margin-top: 0 !important; }

/* ============================================================
   RÉSERVATION
   ============================================================ */
.reservation-section {
  background: linear-gradient(135deg, var(--rose-light) 0%, #fff8ef 100%);
}

.reservation-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.reservation-info .section-title {
  text-align: left;
  margin-bottom: 16px;
}
.reservation-info .section-title::after { margin-left: 0; }

.reservation-text {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 36px;
}

.booking-steps {
  display: grid;
  gap: 14px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}
.booking-steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
}
.booking-steps li > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gradient-rose);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
}
.booking-steps strong {
  display: block;
  margin: 2px 0 3px;
  color: var(--dark);
  font-size: 0.9rem;
}
.booking-steps p {
  color: var(--text-mid);
  font-size: 0.84rem;
  line-height: 1.5;
}

.lari-note {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 0 28px;
  padding: 13px 16px 13px 13px;
  border: 1px solid rgba(232, 174, 196, 0.45);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.62);
  box-shadow: 0 12px 28px rgba(168, 79, 107, 0.08);
}
.lari-note img {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border: 2px solid var(--white);
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 16%;
  box-shadow: 0 5px 13px rgba(51,16,31,0.16);
}
.lari-note p { display: grid; gap: 3px; }
.lari-note span { color: var(--rose-deep); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.lari-note strong { color: var(--dark); font-family: 'Playfair Display', serif; font-size: 1.02rem; font-weight: 700; }
.lari-note small { color: var(--text-mid); font-size: 0.77rem; line-height: 1.45; }

.booking-rules {
  margin: 0 0 28px;
  padding: 22px;
  border: 1px solid rgba(201, 112, 144, 0.3);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.58);
}
.booking-rules-eyebrow {
  margin-bottom: 5px;
  color: var(--rose-deep);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.booking-rules h3 { margin-bottom: 14px; color: var(--dark); font-family: 'Playfair Display', serif; font-size: 1.25rem; }
.booking-rules ul { display: grid; gap: 10px; padding: 0; list-style: none; }
.booking-rules li { color: var(--text-mid); font-size: 0.82rem; font-weight: 300; line-height: 1.55; }
.booking-rules strong { color: var(--dark); font-weight: 600; }

.reservation-contact-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition);
  width: fit-content;
}
.contact-link svg { width: 20px; height: 20px; }
.contact-link--whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}
.contact-link--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.45);
}
.contact-link--phone {
  background: var(--rose-light);
  color: var(--rose-deep);
  border: 1.5px solid var(--rose-soft);
}
.contact-link--phone:hover {
  background: var(--rose-soft);
  transform: translateY(-2px);
}

/* Form */
.rdv-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(232, 174, 196, 0.2);
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(232, 174, 196, 0.4);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a3839a' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose-dark);
  box-shadow: 0 0 0 3px rgba(201, 112, 144, 0.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 80px; }

.prestation-group {
  min-width: 0;
  padding: 0;
  border: 0;
}

.prestation-group legend {
  padding: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-hint {
  margin: -2px 0 12px;
  color: var(--text-light);
  font-size: 0.82rem;
  line-height: 1.5;
}

.prestation-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.prestation-menu {
  border: 1px solid rgba(232, 174, 196, 0.35);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 5px 18px rgba(112, 61, 76, 0.04);
  overflow: hidden;
}

.prestation-menu--cils {
  background: linear-gradient(135deg, #fff8fb 0%, #fff0f5 100%);
}

.prestation-menu summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 54px;
  padding: 13px 16px;
  color: var(--rose-deep);
  font-family: 'Playfair Display', serif;
  font-size: 1.03rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.prestation-menu summary::-webkit-details-marker { display: none; }
.prestation-menu summary::after {
  content: '+';
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--rose-deep);
  background: var(--rose-light);
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
}
.prestation-menu[open] summary {
  border-bottom: 1px solid rgba(232, 174, 196, 0.38);
  background: rgba(255,255,255,0.5);
}
.prestation-menu[open] summary::after { content: '–'; }
.prestation-selection-count {
  margin-left: auto;
  color: var(--text-light);
  font-family: 'Outfit', sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  white-space: nowrap;
}

.prestation-cluster-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  padding: 14px 16px 16px;
}

.prestation-option {
  display: flex !important;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 9px 11px;
  border: 1.5px solid rgba(232, 174, 196, 0.42);
  border-radius: 10px;
  color: var(--text-dark) !important;
  font-size: 0.86rem !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  line-height: 1.3;
  text-transform: none !important;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.prestation-option:hover {
  border-color: var(--rose-dark);
  background: #fff7fa;
  transform: translateY(-1px);
}

.prestation-option input[type="checkbox"] {
  appearance: auto;
  width: 17px;
  height: 17px;
  min-width: 17px;
  margin: 0;
  padding: 0;
  accent-color: var(--rose-dark);
  cursor: pointer;
}

.prestation-option:has(input:checked) {
  border-color: var(--rose-dark);
  background: #fdebf2;
}

.prestation-option:has(input:focus-visible) {
  outline: 3px solid rgba(201, 112, 144, 0.18);
  outline-offset: 2px;
}

.prestation-group.is-invalid .prestation-options {
  padding: 8px;
  margin: -8px;
  border: 1.5px solid #e05a7c;
  border-radius: 12px;
}

@media (max-width: 560px) {
  .prestation-options,
  .prestation-cluster-options { grid-template-columns: 1fr; }

  .prestation-menu summary { padding-inline: 13px; }
  .prestation-cluster-options { padding: 13px; }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-note {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
}

.form-error {
  margin-top: 12px;
  color: #b42345;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #e8f8ef, #f0fdf4);
  border: 1.5px solid #6ee7a0;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: #1a6640;
  font-size: 0.9rem;
  margin-top: 16px;
}
.form-success svg { width: 22px; height: 22px; color: #22c55e; flex-shrink: 0; }
.form-success-link {
  display: inline-flex;
  margin-top: 8px;
  color: #126b36;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-direct-whatsapp {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin: 14px auto 0;
  color: #168b43;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--off-white); }
.faq-container { max-width: 840px; }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid rgba(232, 174, 196, 0.35);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(43, 28, 39, 0.04);
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  color: var(--dark);
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex: 0 0 auto;
  color: var(--rose-deep);
  font-size: 1.45rem;
  font-weight: 300;
  line-height: 1;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item p {
  padding: 0 22px 20px;
  color: var(--text-mid);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.7;
}

/* ============================================================
   ASSISTANT DE RÉSERVATION
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.assistant-widget {
  position: fixed;
  right: 24px;
  bottom: 104px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.assistant-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 12px;
  border-radius: 100px;
  color: var(--white);
  background: linear-gradient(135deg, var(--dark-3), var(--dark));
  box-shadow: 0 12px 32px rgba(51, 16, 31, 0.3);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
}
.assistant-toggle:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(51, 16, 31, 0.4); }
.assistant-toggle-icon,
.assistant-avatar {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--dark);
  box-shadow: 0 0 0 4px rgba(232, 174, 196, 0.18);
  font-size: 1rem;
}
.assistant-panel {
  width: min(370px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 22px;
  background: rgba(253, 248, 251, 0.95);
  box-shadow: 0 24px 64px rgba(51, 16, 31, 0.3);
  backdrop-filter: blur(18px);
  transform: translateY(14px) scale(0.96);
  transform-origin: bottom right;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.assistant-panel.open { transform: translateY(0) scale(1); opacity: 1; visibility: visible; }
.assistant-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--dark-2), var(--dark));
}
.assistant-header h2 { color: var(--white); font-family: 'Outfit', sans-serif; font-size: 0.9rem; font-weight: 600; }
.assistant-kicker { margin-bottom: 2px; color: var(--gold-soft); font-size: 0.69rem; font-weight: 600; letter-spacing: 0.11em; text-transform: uppercase; }
.assistant-close { width: 30px; height: 30px; border-radius: 50%; color: rgba(255,255,255,0.75); font-size: 1.5rem; line-height: 1; transition: background 0.2s, color 0.2s; }
.assistant-close:hover { color: var(--white); background: rgba(255,255,255,0.12); }
.assistant-messages { display: grid; gap: 10px; min-height: 138px; max-height: 260px; overflow-y: auto; padding: 18px; }
.assistant-message { max-width: 89%; padding: 11px 13px; border-radius: 14px; font-size: 0.86rem; line-height: 1.55; animation: messageIn 0.24s ease-out; }
.assistant-message--bot { justify-self: start; border-bottom-left-radius: 4px; color: var(--text-dark); background: var(--rose-light); }
.assistant-message--user { justify-self: end; border-bottom-right-radius: 4px; color: var(--white); background: var(--dark-3); }
.assistant-status { min-height: 18px; padding: 0 18px 10px; color: var(--text-light); font-size: 0.7rem; line-height: 1.35; }
.assistant-status--online { color: #168b43; }
.assistant-status--offline { color: var(--rose-deep); }
.assistant-form button:disabled { cursor: wait; opacity: 0.68; transform: none; }
@keyframes messageIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.assistant-suggestions { display: flex; gap: 7px; flex-wrap: wrap; padding: 0 18px 14px; }
.assistant-suggestions button { padding: 6px 10px; border: 1px solid var(--rose-soft); border-radius: 100px; color: var(--rose-deep); background: var(--white); font-size: 0.74rem; font-weight: 600; transition: var(--transition); }
.assistant-suggestions button:hover { border-color: var(--rose-dark); background: var(--rose-light); }
.assistant-form { display: grid; grid-template-columns: 1fr 42px; gap: 8px; padding: 12px 18px; border-top: 1px solid rgba(232, 174, 196, 0.3); }
.assistant-form input { min-width: 0; padding: 10px 12px; border: 1px solid var(--rose-soft); border-radius: 10px; outline: none; color: var(--text-dark); background: var(--white); font: inherit; font-size: 0.84rem; }
.assistant-form input:focus { border-color: var(--rose-dark); box-shadow: 0 0 0 3px rgba(201, 112, 144, 0.12); }
.assistant-form button { display: grid; place-items: center; border-radius: 10px; color: var(--dark); background: var(--gradient-gold); transition: var(--transition); }
.assistant-form button:hover { transform: translateY(-2px); }
.assistant-form svg { width: 17px; height: 17px; }
.assistant-whatsapp { display: block; padding: 0 18px 16px; color: #168b43; font-size: 0.75rem; font-weight: 600; text-align: center; }
.assistant-whatsapp:hover { text-decoration: underline; }
#tiktok-galerie-btn svg { display: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding-top: 72px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo--light .logo-main { color: var(--white); }
.logo--light .logo-main i,
.logo--light .logo-sub em { color: var(--gold-soft); }
.logo--light .logo-sub { color: rgba(255,255,255,0.52); }
.logo--light .logo-mark {
  box-shadow: 0 6px 18px rgba(0,0,0,0.24);
}

.footer-tagline {
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255,255,255,0.7);
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover {
  background: var(--gradient-gold);
  color: var(--dark);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-address p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.footer-address svg { flex-shrink: 0; margin-top: 2px; color: var(--gold-mid); }
.footer-address a { color: var(--gold-soft); transition: color 0.2s; }
.footer-address a:hover { color: var(--gold-mid); }

.horaires-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 6px 0;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.horaires-list li span:first-child { color: rgba(255,255,255,0.85); }

.map-placeholder {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom {
  padding: 20px 0;
  background: rgba(0,0,0,0.2);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom span { color: var(--rose-dark); }

/* ============================================================
   ANIMATIONS (reveal on scroll)
   ============================================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.9s ease forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger siblings */
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
  .boutique-layout {
    grid-template-columns: 1fr;
  }
  .boutique-visual {
    min-height: 440px;
  }
  .boutique-visual img {
    min-height: 440px;
  }

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

  .reservation-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  :root { --header-h: 68px; }
  .section { padding: 72px 0; }

  /* header */
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(253, 248, 251, 0.98);
    backdrop-filter: blur(16px);
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--rose-soft);
    transform: translateY(-110%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 40px rgba(168, 79, 107, 0.12);
  }
  .nav.open { transform: translateY(0); }
  .nav-list { flex-direction: column; align-items: flex-start; gap: 4px; }
  .nav-link { font-size: 1rem; padding: 12px 16px; width: 100%; border-radius: var(--radius-sm); }
  .header-cta { display: none; }
  .burger { display: flex; }
  .logo-mark { width: 40px; height: 40px; flex-basis: 40px; }
  .logo-badge { width: 18px; height: 18px; right: -4px; bottom: -3px; }
  .logo-badge svg { width: 12px; height: 12px; }
  .logo-main { font-size: 0.82rem; }

  .signature-bar { padding: 18px 0; }
  .signature-grid { grid-template-columns: 1fr; gap: 13px; }
  .signature-item { justify-content: flex-start; }

  /* hero */
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .btn-large { width: 100%; justify-content: center; }

  /* services */
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }

  /* tarifs */
  .tarifs-grid { grid-template-columns: 1fr; }
  .tarif-card--featured { transform: none; }
  .tarif-card--featured:hover { transform: translateY(-4px); }

  /* boutique */
  .boutique-visual,
  .boutique-visual img { min-height: 390px; }
  .boutique-categories > div:hover { transform: none; }

  /* galerie */
  .galerie-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* avis */
  .avis-grid,
  .avis-authentic { grid-template-columns: 1fr; }
  .review-form-grid, .review-stars { grid-template-columns: 1fr; }
  .review-stars label { grid-template-columns: auto 1fr; justify-content: start; gap: 10px; min-height: 44px; padding-inline: 12px; }

  /* form */
  .rdv-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* footer */
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  /* WA float */
  #whatsapp-float span { display: none; }
  #whatsapp-float { padding: 14px; border-radius: 50%; bottom: 20px; right: 16px; }
  .assistant-widget { right: 16px; bottom: 84px; }
  .assistant-toggle { padding: 11px; border-radius: 50%; }
  .assistant-toggle > span:last-child { display: none; }
  .assistant-panel { transform-origin: bottom right; }
}

/* Small mobile (≤ 380px) */
@media (max-width: 380px) {
  .hero-title { font-size: 2rem; }
  .tarif-price { font-size: 2rem; }
}

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

/* ============================================================
   PREMIUM DESIGN SYSTEM — LARISSA BEAUTY STUDIO & PRETTY NAILS
   ============================================================ */
:root {
  --rose-light: #f8edf0;
  --rose-soft: #ecd6dc;
  --rose-mid: #d9afb9;
  --rose-dark: #9a4c61;
  --rose-deep: #681e35;
  --gold-light: #f7f0e2;
  --gold-soft: #dfc58c;
  --gold-mid: #b59658;
  --gold-dark: #8a6c38;
  --dark: #171116;
  --dark-2: #24131a;
  --dark-3: #3a1825;
  --text-dark: #21171b;
  --text-mid: #6d535d;
  --text-light: #94767f;
  --white: #ffffff;
  --off-white: #fdfafb;
  --gradient-hero: linear-gradient(96deg, rgba(23, 17, 22, 0.9) 0%, rgba(47, 16, 29, 0.7) 48%, rgba(104, 30, 53, 0.28) 100%);
  --gradient-gold: linear-gradient(135deg, #c5a86e 0%, #e2cc97 52%, #b59658 100%);
  --gradient-rose: linear-gradient(135deg, #f5e6ea 0%, #e7c9d1 100%);
  --gradient-card: linear-gradient(145deg, #ffffff 0%, #fcf6f8 100%);
  --shadow-sm: 0 8px 28px rgba(30, 14, 21, 0.06);
  --shadow-md: 0 18px 46px rgba(30, 14, 21, 0.11);
  --shadow-lg: 0 30px 80px rgba(30, 14, 21, 0.17);
  --shadow-gold: 0 12px 28px rgba(181, 150, 88, 0.22);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 68px;
}

body {
  letter-spacing: -0.01em;
  background: var(--off-white);
  text-rendering: optimizeLegibility;
}

.container { max-width: 1280px; padding-inline: clamp(20px, 4vw, 48px); }

h1, h2, h3 { letter-spacing: -0.035em; }
h1 { font-size: clamp(3.05rem, 6.6vw, 6.45rem); line-height: 0.96; }
h2 { font-size: clamp(2.15rem, 4.15vw, 4.25rem); line-height: 1.02; }
h3 { font-size: clamp(1.15rem, 1.7vw, 1.45rem); }
em { color: var(--gold-soft); }

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

.btn {
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  box-shadow: none;
}
.btn::after { background: rgba(255,255,255,0.18); }
.btn-primary { color: #1d1518; box-shadow: var(--shadow-gold); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(181, 150, 88, 0.3); }
.btn-ghost { border-color: rgba(255,255,255,0.5); background: rgba(23,17,22,0.14); }
.btn-ghost:hover { background: rgba(255,255,255,0.14); }
.btn-outline { border: 1px solid var(--rose-mid); color: var(--rose-deep); }
.btn-outline:hover { background: var(--rose-light); border-color: var(--rose-deep); }
.btn:active { transform: translateY(1px) scale(0.98); }
.hero .btn-primary::before { display: none; }

#whatsapp-float {
  bottom: 22px;
  right: 22px;
  color: var(--white);
  background: var(--rose-deep);
  box-shadow: 0 16px 34px rgba(104, 30, 53, 0.26);
  animation: none;
}
#whatsapp-float:hover { transform: translateY(-3px); background: var(--dark); box-shadow: 0 20px 40px rgba(23,17,22,0.25); }

.header {
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: rgba(253,250,251,0.78);
  backdrop-filter: blur(18px) saturate(130%);
}
.header.scrolled {
  border-color: rgba(104, 30, 53, 0.1);
  background: rgba(253,250,251,0.94);
  box-shadow: 0 10px 30px rgba(23,17,22,0.07);
}
.header-inner { min-height: var(--header-h); }
.nav-list { gap: 4px; }
.nav-link { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.025em; }
.nav-link::after { background: var(--gold-mid); }
.header-cta { padding: 10px 16px; font-size: 0.72rem; }

.hero { min-height: min(850px, 100svh); isolation: isolate; }
.hero::after {
  content: '';
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  height: 22%;
  pointer-events: none;
  background: linear-gradient(to top, rgba(23,17,22,0.24), transparent);
}
.hero-bg { transform: scale(1.001); }
.hero-img {
  object-position: center 32%;
  filter: saturate(0.92) contrast(1.06) brightness(0.83);
  transform: scale(1.075);
  transition: transform 12s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}
.hero.loaded .hero-img { transform: scale(1.015); }
.hero-overlay { background: var(--gradient-hero); }
.hero-atmosphere { background: radial-gradient(ellipse 44% 48% at var(--spot-x) var(--spot-y), rgba(223,197,140,0.16), transparent 72%); }
.hero-atmosphere::after { opacity: 0.32; animation: none; }
.hero-orb { opacity: 0.11; filter: blur(2px); animation: none; }
.hero-spark { color: var(--gold-soft); opacity: 0.55; text-shadow: none; animation: none; }
.hero-content { max-width: 790px; padding-top: calc(var(--header-h) + 78px); }
.hero-eyebrow {
  margin-bottom: 24px;
  color: var(--gold-soft);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.19em;
}
.hero-title { max-width: 710px; margin-bottom: 22px; text-shadow: 0 10px 30px rgba(0,0,0,0.23); }
.hero-title em { color: var(--gold-soft); }
.hero-subtitle { max-width: 490px; margin-bottom: 34px; color: rgba(255,255,255,0.82); font-size: clamp(1rem, 1.5vw, 1.14rem); line-height: 1.6; }
.hero-ctas { gap: 12px; }
.hero-ctas .btn { min-width: 180px; justify-content: center; }
.hero-scroll-indicator { opacity: 0.6; }
.hero-scroll-indicator span { border-color: rgba(223,197,140,0.68); }

/* Accueil — carrousel immersif des univers beauté */
.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  opacity: 0;
  transform: scale(1.09);
  transition: opacity 900ms ease, transform 8s cubic-bezier(0.16, 1, 0.3, 1), filter 700ms ease;
  pointer-events: none;
}

.hero.loaded .hero-slide { transform: scale(1.09); }
.hero.loaded .hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1.015);
}

.hero-slide--horaires { object-position: 64% center; }

/* Contenus administrés : mêmes cartes et rythme que le site public. */
.managed-services-heading { grid-column: 1 / -1; margin: 30px 0 4px; }
.managed-services-heading .services-category-title { margin-bottom: 0; }
.managed-gallery-groups { display: grid; gap: 54px; }
.managed-gallery-group { display: grid; gap: 18px; }
.managed-gallery-group button.galerie-item { padding: 0; border: 0; color: inherit; font: inherit; text-align: left; }
.managed-promotion { margin: 0 0 42px; padding: clamp(20px, 3vw, 34px); display: grid; grid-template-columns: minmax(0, 1fr) minmax(180px, 0.42fr); gap: 28px; align-items: center; border: 1px solid rgba(203,167,93,0.34); border-radius: var(--radius-lg); background: linear-gradient(125deg, rgba(255,244,247,0.96), rgba(255,251,243,0.94)); box-shadow: var(--shadow-soft); }
.managed-promotion h3 { margin: 0 0 10px; font-family: 'Playfair Display', serif; font-size: clamp(1.45rem, 2.3vw, 2rem); }
.managed-promotion p { margin: 0; color: var(--text-soft); line-height: 1.65; }
.managed-promotion strong { display: inline-block; margin-top: 15px; color: var(--burgundy); }
.managed-promotion img { width: 100%; max-height: 260px; border-radius: calc(var(--radius-lg) - 6px); object-fit: cover; }
@media (max-width: 680px) {
  .managed-promotion { grid-template-columns: 1fr; }
  .managed-promotion img { max-height: 220px; order: -1; }
}

.signature-bar { padding: 27px 0; background: var(--dark); }
.signature-bar::before, .signature-bar::after { background: rgba(223,197,140,0.08); }
.signature-grid { gap: 18px; }
.signature-item > span { color: var(--gold-soft); border-color: rgba(223,197,140,0.25); }

.section { padding: clamp(90px, 10vw, 150px) 0; }
.section-header { max-width: 720px; margin-bottom: clamp(44px, 6vw, 74px); }
.section-eyebrow { color: var(--gold-dark); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; }
.section-title { margin-bottom: 18px; }
.section-title::after { width: 42px; height: 2px; margin-top: 22px; background: var(--gold-mid); }
.section-subtitle { font-size: 1rem; line-height: 1.75; }

.trust-section { padding-block: clamp(56px, 7vw, 96px); background: #fff; }
.trust-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 7vw, 80px);
  align-items: center;
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid rgba(104,30,53,0.12);
  border-radius: var(--radius-xl);
  background: linear-gradient(115deg, #fff 0%, #fcf4f6 100%);
  box-shadow: var(--shadow-md);
}
.trust-intro h2 { max-width: 440px; color: var(--dark); font-size: clamp(2rem, 3.3vw, 3.4rem); }
.trust-intro > p:last-child { max-width: 390px; color: var(--text-mid); font-size: 0.95rem; }
.trust-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.trust-item { min-height: 125px; padding: 20px; border-radius: var(--radius-md); background: rgba(255,255,255,0.76); border: 1px solid rgba(104,30,53,0.08); }
.trust-value { display: block; margin-bottom: 8px; color: var(--gold-dark); font-family: 'Playfair Display', serif; font-size: 1.08rem; font-weight: 700; letter-spacing: 0.05em; }
.trust-item p { color: var(--text-mid); font-size: 0.82rem; line-height: 1.45; }

.why-section { background: var(--off-white); }
.why-grid { gap: 16px; }
.why-card {
  min-height: 220px;
  padding: 28px;
  border-radius: var(--radius-md);
  border-color: rgba(104,30,53,0.11);
  background: rgba(255,255,255,0.8);
  box-shadow: none;
}
.why-card:hover { transform: translateY(-5px); border-color: rgba(181,150,88,0.55); box-shadow: var(--shadow-sm); }
.why-icon { color: var(--gold-dark); }
.why-card--team { align-items: center; }
.why-team-photo {
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  overflow: hidden;
  border: 2px solid var(--gold-soft);
  border-radius: 50%;
  background: var(--rose-light);
  box-shadow: 0 8px 18px rgba(104, 30, 53, 0.14);
}
.why-team-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 62% 34%;
}

.services-section { background: #fff; }
.services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; align-items: stretch; }
.services-category-title { margin-top: 38px; padding-bottom: 12px; color: var(--dark); border-color: rgba(181,150,88,0.55); font-size: 1.45rem; }
.services-category-note { margin-top: -12px; color: var(--text-mid); }
.service-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 28px;
  border-color: rgba(104,30,53,0.1);
  border-radius: var(--radius-lg);
  background: var(--gradient-card);
  box-shadow: var(--shadow-sm);
  transform-style: preserve-3d;
  will-change: transform;
}
.service-card:hover { transform: translateY(-8px) rotateX(1.2deg) rotateY(-1deg); border-color: rgba(181,150,88,0.7); box-shadow: var(--shadow-lg); }
.service-card[data-photo] .service-photo { cursor: zoom-in; }
.service-photo {
  width: calc(100% + 56px);
  aspect-ratio: 4 / 5;
  height: auto;
  margin: -28px -28px 24px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transform: translateZ(12px);
}
.service-photo img { filter: saturate(0.96) contrast(1.03); transition: transform 0.7s cubic-bezier(0.16,1,0.3,1), filter 0.45s ease; }
.service-card:hover .service-photo img { transform: scale(1.08); filter: saturate(1.04) contrast(1.06); }
.service-card--catalog { min-height: 420px; padding: 28px; background: linear-gradient(145deg, #fff 0%, #fbf1f4 100%); }
.catalog-card-mark { margin-bottom: 24px; color: var(--gold-dark); background: var(--gold-light); }
.service-name { color: var(--dark); }
.service-desc { flex: 1; margin-bottom: 20px; color: var(--text-mid); }
.service-price strong { color: var(--rose-deep); }
.service-rate-list { border-color: rgba(104,30,53,0.14); }
.service-rate-list strong { color: var(--rose-deep); }

.tarifs-section { background: linear-gradient(180deg, #fcf5f7 0%, #fff 100%); }
.tarifs-grid { max-width: 880px; margin-inline: auto; gap: 22px; }
.tarif-card { min-height: 350px; padding: 34px; border-radius: var(--radius-lg); border-color: rgba(104,30,53,0.12); box-shadow: var(--shadow-sm); }
.tarif-card:hover { transform: translateY(-7px); border-color: rgba(181,150,88,0.7); box-shadow: var(--shadow-lg); }
.tarif-header { padding-bottom: 22px; margin-bottom: 22px; }
.tarif-duration { margin-top: 10px; color: var(--text-light); font-size: 0.76rem; }
.tarif-features li { padding: 12px 0; }
.tarif-item-price { color: var(--rose-deep); }
.tarifs-note { margin-top: 32px; }

.training-program-title {
  margin-bottom: 10px;
  color: var(--rose-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.training-program {
  display: grid;
  gap: 0;
  margin: 0 0 22px;
}

.training-program li {
  position: relative;
  padding: 8px 0 8px 17px;
  color: var(--text-mid);
  border-bottom: 1px dashed rgba(104, 30, 53, 0.14);
  font-size: 0.8rem;
  line-height: 1.38;
}

.training-program li::before {
  position: absolute;
  top: 0.7rem;
  left: 0;
  color: var(--gold-dark);
  content: '✦';
  font-size: 0.62rem;
}

.boutique-section { background: #fff; }
.boutique-visual { min-height: 540px; border-radius: var(--radius-lg); transform-style: preserve-3d; }
.boutique-visual img { min-height: 540px; aspect-ratio: 4 / 5; filter: saturate(0.92) contrast(1.04); }
.boutique-visual:hover { transform: translateY(-5px) rotateY(1deg); box-shadow: var(--shadow-lg); }
.boutique-content .section-title { font-size: clamp(2.25rem, 3.5vw, 3.7rem); }
.boutique-categories > div { border-color: rgba(104,30,53,0.12); background: #fff; }
.boutique-categories > div > span { color: var(--gold-dark); background: var(--gold-light); }
.pret-a-porter-section { background: #fcf6f8; }
.pret-a-porter-card { max-width: 1240px; border-color: rgba(104,30,53,0.12); box-shadow: var(--shadow-sm); }

/* Collection prêt-à-porter */
.pret-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: clamp(30px, 5vw, 58px);
}
.pret-product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(104, 30, 53, 0.12);
  border-radius: var(--radius-lg);
  background: #fffafa;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.pret-product-card:hover { transform: translateY(-7px); border-color: rgba(181, 150, 88, 0.68); box-shadow: var(--shadow-lg); }
.pret-product-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #e7d8dc;
}
.pret-product-image img {
  width: 100%;
  height: 100%;
  display: block;
  cursor: zoom-in;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}
.pret-product-card:hover .pret-product-image img { transform: scale(1.065); }
.pret-product-copy { display: flex; flex: 1; flex-direction: column; padding: 23px 22px 22px; }
.pret-product-copy h3 { margin-bottom: 10px; color: var(--dark); font-family: 'Playfair Display', serif; font-size: 1.28rem; }
.pret-product-copy > p:not(.pret-product-price) { flex: 1; color: var(--text-mid); font-size: 0.88rem; line-height: 1.6; }
.pret-product-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(181, 150, 88, 0.32);
}
.pret-product-price span { color: var(--text-light); font-size: 0.69rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.pret-product-price strong { color: var(--rose-deep); font-family: 'Playfair Display', serif; font-size: 1.02rem; white-space: nowrap; }
.pret-product-cta { width: 100%; justify-content: center; margin-top: 16px; font-size: 0.7rem; }
.pret-product-cta,
.service-booking-cta {
  position: relative;
  z-index: 4;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(181, 150, 88, 0.22);
}
.service-booking-cta {
  width: 100%;
  justify-content: center;
  margin-top: 18px;
  padding-inline: 16px;
  font-size: 0.76rem;
}
.boutique-jewellery-products { margin-top: 0; }

@media (max-width: 900px) {
  .pret-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .pret-product-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* Bijoux & accessoires — extension boutique */
.boutique-jewellery-card {
  grid-column: 1 / -1;
  display: block;
  align-items: center;
  margin-top: clamp(22px, 4vw, 46px);
  overflow: hidden;
  padding: clamp(16px, 2vw, 24px);
  border: 1px solid rgba(181, 150, 88, 0.38);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #fffdf9 0%, #f8edf0 100%);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.boutique-jewellery-card:hover { transform: translateY(-5px); border-color: var(--gold-mid); box-shadow: var(--shadow-md); }
.boutique-jewellery-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 4px);
  background: #0f0d0f;
}
.boutique-jewellery-visual .auto-carousel-slide { object-position: center 48%; }
.boutique-jewellery-copy { max-width: 640px; margin: 0 auto 28px; padding: clamp(10px, 2vw, 24px) clamp(0px, 1vw, 12px); text-align: center; }
.boutique-jewellery-copy h3 {
  margin: 10px 0 14px;
  color: var(--dark);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.04;
}
.boutique-jewellery-copy > p:not(.section-eyebrow):not(.boutique-jewellery-price) { color: var(--text-mid); font-size: 0.96rem; line-height: 1.7; }
.boutique-jewellery-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 24px 0;
  padding-top: 17px;
  border-top: 1px solid rgba(181, 150, 88, 0.35);
}
.boutique-jewellery-price span { color: var(--text-mid); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.boutique-jewellery-price strong { color: var(--rose-deep); font-family: 'Playfair Display', serif; font-size: 1.25rem; }

@media (max-width: 760px) {
  .boutique-jewellery-card { padding: 14px; }
  .boutique-jewellery-copy { padding: 12px 8px 16px; }
}

.galerie-section { background: var(--dark); }
.galerie-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.galerie-item,
.galerie-item--wide,
.galerie-item--tall { grid-column: auto; grid-row: auto; aspect-ratio: 4 / 5; border-radius: var(--radius-md); }
.galerie-item { box-shadow: 0 16px 38px rgba(0,0,0,0.25); transform-style: preserve-3d; }
.galerie-item img { filter: saturate(0.9) contrast(1.05); }
.galerie-item:hover img,
.galerie-item.tilting img { filter: saturate(1.03) contrast(1.08); }
.galerie-overlay { background: linear-gradient(to top, rgba(23,17,22,0.86), rgba(23,17,22,0.03) 62%); opacity: 1; }
.galerie-overlay p { transform: translateY(12px); opacity: 0; transition: transform var(--transition), opacity var(--transition); }
.galerie-item:hover .galerie-overlay p,
.galerie-item:focus-visible .galerie-overlay p { transform: translateY(0); opacity: 1; }

.footer { padding-top: 92px; background: #111014; }
.footer-inner { gap: 42px; }
.footer-socials { gap: 10px; }
.social-link { border: 1px solid rgba(255,255,255,0.1); color: var(--white); }
.social-link:hover { background: var(--gold-mid); color: var(--dark); }
.social-link--soon { cursor: default; color: rgba(255,255,255,0.52); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em; }
.social-link--soon:hover { transform: none; color: rgba(255,255,255,0.52); background: rgba(255,255,255,0.08); }
.footer-heading { color: var(--gold-soft); }
.footer-address svg { color: var(--gold-mid); }
.footer-address a { color: var(--gold-soft); }

.assistant-toggle { background: var(--dark); box-shadow: 0 16px 34px rgba(23,17,22,0.22); }
.assistant-avatar, .assistant-toggle-icon { color: var(--dark); background: var(--gradient-gold); }
.assistant-status--online { color: var(--gold-dark); }

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-panel { grid-template-columns: 1fr; }
  .trust-intro { text-align: center; }
  .trust-intro h2, .trust-intro > p:last-child { margin-inline: auto; }
  .galerie-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .nav { transform: translateY(calc(-100% - var(--header-h) - 12px)); }
  .nav.open { transform: translateY(0); }
  .header-cta { display: inline-flex; padding: 9px 12px; font-size: 0.67rem; }
  .header .logo-text { display: flex; }
  .header .logo-main { font-size: clamp(0.58rem, 2.75vw, 0.74rem); letter-spacing: 0.035em; }
  .hero { min-height: 730px; }
  .hero-content { padding-top: calc(var(--header-h) + 72px); }
  .hero-title { max-width: 500px; }
  .hero-ctas { width: 100%; }
  .hero-ctas .btn { width: 100%; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .trust-item { min-height: 112px; padding: 16px; }
  .services-grid, .galerie-grid { grid-template-columns: 1fr; }
  .service-card, .service-card--catalog { min-height: auto; }
  .service-photo { aspect-ratio: 4 / 5; }
  .galerie-item, .galerie-item--wide, .galerie-item--tall { aspect-ratio: 4 / 5; }
  .section { padding-block: 82px; }
  .footer { padding-top: 70px; }
}

@media (max-width: 430px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { min-height: auto; }
  .hero-title { font-size: clamp(2.8rem, 15vw, 4.2rem); }
}

/* Rose dominant & actions dorées */
:root {
  --rose-light: #f6e1e7;
  --rose-soft: #e9c8d2;
  --rose-mid: #d99ead;
  --off-white: #faeef2;
  --gradient-card: linear-gradient(145deg, #fff8fa 0%, #f4dde4 100%);
}

body { background: var(--off-white); }
.services-section { background: #fbf0f3; }
.why-section { background: #f7e5eb; }
.trust-section { background: #f8e8ed; }
.trust-panel { background: linear-gradient(125deg, #fbeff3 0%, #f1d8e0 100%); }
.trust-item { background: rgba(255, 248, 250, 0.72); }
.tarifs-section { background: linear-gradient(180deg, #f5dfe6 0%, #faedf1 100%); }
.boutique-section { background: #f9e8ed; }
.pret-a-porter-section { background: #f4dfe6; }
.service-card { background: linear-gradient(145deg, #fff9fb 0%, #f3dce4 100%); }
.service-card--catalog { background: linear-gradient(145deg, #fff7fa 0%, #f0d4de 100%); }
.tarif-card { background: #fff7fa; }
.prestation-menu { background: #fff7fa; }

.btn,
.btn-primary,
.btn-ghost,
.btn-outline {
  color: var(--dark);
  border-color: var(--gold-mid);
  background: var(--gradient-gold);
  box-shadow: var(--shadow-gold);
}
.btn:hover,
.btn-primary:hover,
.btn-ghost:hover,
.btn-outline:hover {
  color: var(--dark);
  border-color: var(--gold-dark);
  background: linear-gradient(135deg, #d9c080 0%, #f0dca7 52%, #c09e5c 100%);
  box-shadow: 0 18px 38px rgba(181, 150, 88, 0.34);
}
.btn::after { background: rgba(255,255,255,0.22); }

#whatsapp-float {
  color: var(--dark);
  background: var(--gradient-gold);
  box-shadow: var(--shadow-gold);
}
#whatsapp-float:hover { color: var(--dark); background: linear-gradient(135deg, #d9c080 0%, #f0dca7 52%, #c09e5c 100%); }
.assistant-toggle { color: var(--dark); background: var(--gradient-gold); box-shadow: var(--shadow-gold); }
.assistant-toggle-icon { background: var(--dark); color: var(--gold-soft); }
.assistant-suggestions button,
.assistant-form button { color: var(--dark); background: var(--gradient-gold); border-color: var(--gold-mid); }
.assistant-suggestions button:hover { color: var(--dark); background: #ead296; border-color: var(--gold-dark); }

/* Cadre élégant — composition éditoriale */
.elegant-frame {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  min-height: 510px;
  margin-top: 32px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(181, 150, 88, 0.35);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 10% 14%, rgba(255, 255, 255, 0.75), transparent 29%),
    linear-gradient(135deg, #f7dce5 0%, #edc8d4 52%, #e4b8c7 100%);
  box-shadow: 0 22px 55px rgba(104, 30, 53, 0.12);
}

.elegant-frame::before {
  position: absolute;
  z-index: -1;
  top: -100px;
  left: -92px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(181, 150, 88, 0.36);
  border-radius: 50%;
  content: '';
}

.elegant-frame-copy { align-self: center; padding: clamp(38px, 5vw, 80px); }
.elegant-frame-copy .section-eyebrow { margin-bottom: 18px; color: var(--rose-deep); }

.elegant-frame-copy h3 {
  max-width: 390px;
  margin-bottom: 17px;
  color: var(--dark);
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  font-weight: 600;
  line-height: 1.03;
}

.elegant-frame-copy > p:not(.section-eyebrow):not(.elegant-frame-signature) {
  max-width: 365px;
  color: var(--text-mid);
  font-size: 0.96rem;
  line-height: 1.75;
}

.elegant-frame-signature {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.elegant-frame-signature span { color: var(--gold-dark); font-size: 0.9rem; }

.elegant-frame-images {
  position: relative;
  min-height: 510px;
  margin: 0;
  perspective: 1500px;
}

.elegant-frame-photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 7px solid rgba(255, 250, 251, 0.92);
  border-radius: calc(var(--radius-md) + 5px);
  background: var(--rose-light);
  box-shadow: 0 24px 38px rgba(72, 21, 37, 0.22);
  transform-style: preserve-3d;
  transition: transform 750ms cubic-bezier(.2, .8, .2, 1), box-shadow 750ms ease;
}

.elegant-frame-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.02);
  transition: transform 1.1s cubic-bezier(.2, .8, .2, 1), filter 700ms ease;
}

.elegant-frame-photo--main {
  z-index: 2;
  top: 34px;
  right: 34px;
  width: 55%;
  height: calc(100% - 68px);
  transform: rotate(3.7deg) rotateY(-4deg) translateZ(18px);
}

.elegant-frame-photo--detail {
  z-index: 1;
  bottom: 31px;
  left: 4px;
  width: 52%;
  height: 62%;
  transform: rotate(-5.2deg) rotateY(5deg) translateZ(0);
}

.elegant-frame:hover .elegant-frame-photo--main {
  box-shadow: 0 29px 48px rgba(72, 21, 37, 0.28);
  transform: rotate(2.1deg) rotateY(-7deg) translate3d(-8px, -7px, 28px);
}

.elegant-frame:hover .elegant-frame-photo--detail {
  transform: rotate(-3.3deg) rotateY(7deg) translate3d(9px, 4px, 12px);
}

.elegant-frame:hover .elegant-frame-photo img { filter: saturate(1.03) contrast(1.04); transform: scale(1.045); }

@media (max-width: 900px) {
  .elegant-frame { grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); min-height: 460px; }
  .elegant-frame-images { min-height: 460px; }
  .elegant-frame-copy { padding: 36px; }
}

@media (max-width: 680px) {
  .elegant-frame { display: block; min-height: 0; margin-top: 22px; }
  .elegant-frame-copy { padding: 38px 28px 27px; }
  .elegant-frame-copy h3 { font-size: 2.25rem; }
  .elegant-frame-images { min-height: 405px; margin: 0 12px; }
  .elegant-frame-photo { border-width: 5px; }
  .elegant-frame-photo--main { top: 15px; right: 10px; width: 58%; height: calc(100% - 30px); }
  .elegant-frame-photo--detail { bottom: 18px; left: 0; width: 54%; height: 61%; }
}

@media (prefers-reduced-motion: reduce) {
  .elegant-frame-photo,
  .elegant-frame-photo img { transition: none; }
  .elegant-frame:hover .elegant-frame-photo--main,
  .elegant-frame:hover .elegant-frame-photo--detail { transform: none; }
}

/* Grille harmonisée après la présentation Cadre élégant */
.why-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .nail-showcase { grid-column: span 1; min-height: 0; padding: 24px 18px 20px; }
  .nail-showcase-copy { display: block; margin-bottom: 15px; }
  .nail-showcase-copy > p:last-child { max-width: 33ch; margin-top: 11px; }
  .nail-showcase-gallery { padding-inline: 5px 18px; }
  .nail-showcase-slide { flex-basis: 65%; margin-left: -21%; }
  .nail-showcase-hint { justify-content: flex-start; margin-top: 5px; }
}

@media (prefers-reduced-motion: reduce) {
  .nail-showcase-gallery { scroll-behavior: auto; }
  .nail-showcase-slide,
  .nail-showcase-slide img,
  .lace-gallery-photo,
  .auto-carousel .auto-carousel-slide { transition: none !important; }
  .nail-showcase-slide,
  .nail-showcase-slide:first-child,
  .nail-showcase-slide:nth-child(2),
  .nail-showcase-slide:nth-child(3),
  .nail-showcase-slide:hover,
  .lace-gallery-photo,
  .service-card:hover .lace-gallery-photo--primary,
  .service-card:hover .lace-gallery-photo--secondary,
  .service-card:hover .lace-gallery-photo--tertiary { transform: none; }
}

/* Galerie — portfolio immersif à défilement automatique */
.galerie-grid[data-auto-gallery] {
  display: block;
  position: relative;
  min-height: clamp(360px, 56vw, 640px);
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #21171c;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.32);
}

.galerie-grid[data-auto-gallery] .galerie-item,
.galerie-grid[data-auto-gallery] .galerie-item--wide,
.galerie-grid[data-auto-gallery] .galerie-item--tall {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  aspect-ratio: auto;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.06);
  transition: opacity 820ms ease, transform 5.8s ease;
  will-change: opacity, transform;
}

.galerie-grid[data-auto-gallery] .galerie-item.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.galerie-grid[data-auto-gallery] .galerie-item img {
  object-position: center;
  transition: transform 5.8s ease, filter 700ms ease;
}

.galerie-grid[data-auto-gallery] .galerie-item--hair img { object-position: center 28%; }
.galerie-grid[data-auto-gallery] .galerie-item--microshading img { object-position: center 22%; }

.galerie-grid[data-auto-gallery] .galerie-overlay { opacity: 1; }
.galerie-grid[data-auto-gallery] .galerie-overlay p {
  opacity: 1;
  transform: none;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.48);
}

.galerie-grid[data-auto-gallery] .galerie-item.is-active:hover img { transform: scale(1.05); }

.gallery-auto-hint {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-align: center;
}

.gallery-auto-hint span { color: var(--gold-soft); }

@media (max-width: 680px) {
  .galerie-grid[data-auto-gallery] { min-height: 465px; border-radius: var(--radius-lg); }
}

@media (prefers-reduced-motion: reduce) {
  .galerie-grid[data-auto-gallery] .galerie-item,
  .galerie-grid[data-auto-gallery] .galerie-item img { transition: none; }
}

/* Boutique mèches — collection sur commande */
.boutique-hair-card {
  grid-column: 1 / -1;
  display: block;
  margin-top: clamp(22px, 4vw, 46px);
  overflow: hidden;
  padding: clamp(16px, 2vw, 24px);
  border: 1px solid rgba(181, 150, 88, 0.38);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #fffdf9 0%, #f8edf0 100%);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.boutique-hair-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-mid);
  box-shadow: var(--shadow-md);
}

.boutique-hair-copy {
  max-width: 680px;
  margin: 0 auto 28px;
  padding: clamp(10px, 2vw, 24px) clamp(0px, 1vw, 12px);
  text-align: center;
}

.boutique-hair-copy h2,
.boutique-hair-copy h3 {
  margin: 10px 0 14px;
  color: var(--dark);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.04;
}

.boutique-hair-copy > p:not(.section-eyebrow) {
  color: var(--text-mid);
  font-size: 0.96rem;
  line-height: 1.7;
}

.boutique-hair-products { margin-top: 0; }

/* Galerie — univers séparés pour faciliter la lecture du portfolio */
.gallery-groups {
  display: grid;
  gap: clamp(48px, 7vw, 84px);
}

.gallery-group {
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012));
}

.gallery-group-heading {
  max-width: 720px;
  margin: 0 auto 20px;
  text-align: center;
}

.gallery-group-heading p {
  margin: 0 0 8px;
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.gallery-group-heading h3 {
  margin: 0;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.1;
}

.gallery-group .galerie-grid[data-auto-gallery] {
  min-height: clamp(320px, 42vw, 520px);
}

.galerie-grid--vertical {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 1000px) {
  .galerie-grid--vertical { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .galerie-grid--vertical { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 420px) {
  .galerie-grid--vertical { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .boutique-hair-card { padding: 14px; }
  .boutique-hair-copy { padding: 12px 8px 16px; }
  .gallery-group .galerie-grid[data-auto-gallery] { min-height: 410px; }
}

/* Expérience téléphone : tout le contenu reste lisible et accessible */
@media (max-width: 768px) {
  .container { padding-inline: 16px; }
  .header-inner { min-width: 0; gap: 9px; }
  .logo { min-width: 0; gap: 7px; flex: 1 1 auto; }
  .logo-text { min-width: 0; }
  .header .logo-main {
    max-width: min(48vw, 220px);
    line-height: 1.12;
    white-space: normal;
  }
  .nav {
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-bottom: max(28px, env(safe-area-inset-bottom));
  }
  .nav-link { min-height: 46px; display: flex; align-items: center; }
  .burger { min-width: 44px; min-height: 44px; align-items: center; justify-content: center; flex: 0 0 44px; }
  .section-title, .section-subtitle, .service-desc, .tarif-desc { overflow-wrap: anywhere; }
  .service-rate-list > div { align-items: flex-start; }
  .service-rate-list > div span { min-width: 0; }
  .rdv-form, .booking-rules, .lari-note { min-width: 0; }
  .form-group input, .form-group select, .form-group textarea { min-height: 48px; font-size: 16px; }
  .contact-link { width: 100%; justify-content: center; }
  .assistant-panel { max-height: calc(100dvh - 118px); }
  .assistant-messages { max-height: min(260px, 34dvh); }
}

@media (max-width: 560px) {
  .header-cta { display: none; }
  .header .logo-main { max-width: calc(100vw - 112px); font-size: clamp(.58rem, 3.2vw, .72rem); }
  .hero { min-height: max(680px, 100dvh); }
  .hero-content { padding-top: calc(var(--header-h) + 54px); }
  .service-card, .service-card--catalog { padding: 22px 18px; }
  .service-photo { width: calc(100% + 36px); margin: -22px -18px 20px; }
  .service-booking-cta, .pret-product-cta { min-height: 48px; font-size: .8rem; }
  .tarif-card { min-width: 0; padding: 26px 20px; }
  .tarif-promo, .pret-product-price, .boutique-jewellery-price { align-items: flex-start; flex-direction: column; }
  .gallery-group { padding: 12px; border-radius: var(--radius-lg); }
  .rdv-form { padding: 24px 16px; }
  .prestation-menu summary { align-items: flex-start; }
  .prestation-selection-count { margin-left: 0; white-space: normal; }
  .assistant-widget { left: 12px; right: 12px; }
  .assistant-panel { width: 100%; }
  #whatsapp-float { right: 12px; }
}

@media (max-width: 360px) {
  .container { padding-inline: 12px; }
  .logo-mark { width: 36px; height: 36px; flex-basis: 36px; }
  .header .logo-main { max-width: calc(100vw - 98px); }
  .hero-title { font-size: clamp(2.35rem, 14vw, 3.2rem); }
  .section { padding-block: 64px; }
}
