/* ============================================================
   YOU POLE DANCE — Design System
   Studio Pole Dance & Bien-être, Sainte-Anne, Guadeloupe
   ============================================================ */

:root {
  /* Palette */
  --onyx: #0B0708;
  --charcoal: #1A1416;
  --ink: #2A2124;
  --ivory: #F5EFE8;
  --ivory-warm: #EFE7DC;
  --nude: #EBD9C9;
  --champagne: #C9A96E;
  --champagne-soft: #D8BE8A;
  --fuchsia: #E6187A;
  --fuchsia-deep: #B8145F;
  --fuchsia-glow: rgba(230, 24, 122, 0.35);
  --rose-mist: #F7E4EF;
  --line: rgba(245, 239, 232, 0.14);
  --line-dark: rgba(11, 7, 8, 0.12);

  /* Typographie */
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  /* Espacement */
  --gutter: clamp(1.25rem, 4vw, 2.75rem);
  --section-y: clamp(4rem, 10vw, 8rem);

  /* Divers */
  --radius: 2px;
  --transition: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; }
ul { list-style: none; }

/* Typographie */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fuchsia);
}
.eyebrow.on-dark { color: var(--champagne); }
.script {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.015em; line-height: 1.08; }
h1 { font-size: clamp(2.75rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2.25rem, 5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.25rem); }
h4 { font-size: clamp(1.15rem, 1.8vw, 1.5rem); }

p { text-wrap: pretty; color: rgba(26, 20, 22, 0.92); }
.lead { font-size: clamp(1.1rem, 1.4vw, 1.3rem); line-height: 1.7; font-weight: 400; color: rgba(26, 20, 22, 0.88); }
.on-dark .lead, .on-dark p { color: rgba(245, 239, 232, 0.88); }
.split-content p { color: rgba(26, 20, 22, 0.9); opacity: 1; }

/* Layout */
.container { width: 100%; max-width: 1360px; margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: 920px; margin: 0 auto; padding: 0 var(--gutter); }

section { padding: var(--section-y) 0; }
.on-dark { background: var(--onyx); color: var(--ivory); }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: var(--ivory); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  transition: background var(--transition), backdrop-filter var(--transition), padding var(--transition);
}
.site-header.scrolled {
  background: rgba(11, 7, 8, 0.88);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  padding: 0.6rem var(--gutter);
  border-bottom: 1px solid var(--line);
}
.site-header.light {
  background: rgba(245, 239, 232, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-dark);
}

.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand img {
  height: 200px; width: auto;
  transition: height var(--transition);
  object-fit: contain;
}
.site-header.scrolled .brand img { height: 130px; }
@media (max-width: 960px) {
  .brand img { height: 150px; }
  .site-header.scrolled .brand img { height: 110px; }
}
@media (max-width: 640px) {
  .brand img { height: 120px; }
  .site-header.scrolled .brand img { height: 90px; }
}
.brand-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.32em;
  color: var(--ivory);
  text-transform: uppercase;
  font-weight: 300;
}
.site-header.light .brand-text { color: var(--onyx); }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav a {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory);
  font-weight: 400;
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.3s;
}
.site-header.light .nav a { color: var(--ink); }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--fuchsia);
  transition: width 0.35s ease;
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a:hover, .nav a.active { color: var(--fuchsia); }

.nav-cta {
  padding: 0.7rem 1.4rem !important;
  border: 1px solid var(--fuchsia);
  background: var(--fuchsia);
  color: var(--ivory) !important;
  letter-spacing: 0.14em !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  background: transparent;
  color: var(--fuchsia) !important;
}

.nav-toggle {
  display: none;
  width: 32px; height: 32px;
  position: relative;
  z-index: 110;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  position: absolute; left: 4px; right: 4px;
  height: 1px; background: var(--ivory);
  transition: transform 0.3s, opacity 0.3s, top 0.3s;
}
.site-header.light .nav-toggle span { background: var(--onyx); }
.nav-toggle span:nth-child(1) { top: 11px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle.open span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { top: 15px; transform: rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: var(--onyx);
    z-index: 105;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 4rem 2rem;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav.open { transform: translateX(0); }
  .nav a {
    font-size: 1.15rem;
    color: var(--ivory);
    padding: 0.5rem 0;
  }
  .nav a::after { display: none; }
  .nav-cta {
    margin-top: 1rem;
    padding: 0.9rem 2rem !important;
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.35s ease;
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--fuchsia);
  color: var(--ivory);
  border-color: var(--fuchsia);
}
.btn-primary:hover {
  background: var(--fuchsia-deep);
  border-color: var(--fuchsia-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -8px var(--fuchsia-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(245, 239, 232, 0.4);
}
.btn-ghost:hover {
  border-color: var(--ivory);
  background: rgba(245, 239, 232, 0.06);
}
.btn-ghost-dark {
  background: transparent;
  color: var(--onyx);
  border-color: var(--onyx);
}
.btn-ghost-dark:hover {
  background: var(--onyx);
  color: var(--ivory);
}
/* WhatsApp — action de contact unifiée */
.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1FBE5A;
  border-color: #1FBE5A;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.5);
}
.btn-whatsapp::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 0.25rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}
.btn-whatsapp.btn-arrow::after { display: none; }
.btn-arrow::after {
  content: "→";
  font-size: 1rem;
  transition: transform 0.3s;
  letter-spacing: 0;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--onyx);
  color: var(--ivory);
}
.hero-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.85;
  animation: heroZoom 20s ease-out forwards;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,7,8,0.85) 0%, rgba(11,7,8,0.45) 55%, rgba(11,7,8,0.2) 100%);
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }

.hero-content {
  position: relative; z-index: 2;
  padding-top: 6rem;
  max-width: 780px;
}
.hero .eyebrow { color: var(--fuchsia); margin-bottom: 1.5rem; display: block; }
.hero h1 { color: var(--ivory); margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--fuchsia); font-weight: 300; }
.hero .lead { color: rgba(245, 239, 232, 0.82); max-width: 560px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Hero socials (bottom of hero, replaces marquee) */
.hero-socials {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 0.75rem var(--gutter);
  background: rgba(11, 7, 8, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-socials a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.3s, transform 0.3s;
}
.hero-socials a:hover {
  color: var(--fuchsia);
  transform: translateY(-2px);
}
.hero-socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: fill 0.3s;
}
@media (max-width: 640px) {
  .hero-socials {
    gap: 1.75rem;
    padding: 0.5rem var(--gutter);
    background: rgba(11, 7, 8, 0.65);
  }
  .hero-socials a { gap: 0; }
  .hero-socials a span { display: none; }
  .hero-socials svg { width: 20px; height: 20px; }
}

/* Page-hero (variant plus court pour pages internes) */
.page-hero {
  position: relative;
  padding: 10rem 0 5rem;
  background: var(--onyx);
  color: var(--ivory);
  overflow: hidden;
}
.page-hero.with-image { min-height: 65vh; display: flex; align-items: flex-end; padding-bottom: 4rem; }
.page-hero-media { position: absolute; inset: 0; z-index: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; opacity: 0.82; }
.page-hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11,7,8,0.75) 0%, rgba(11,7,8,0.4) 55%, rgba(11,7,8,0.15) 100%),
    linear-gradient(180deg, rgba(11,7,8,0.15) 0%, rgba(11,7,8,0.15) 40%, rgba(11,7,8,0.7) 100%);
}
@media (max-width: 768px) {
  .page-hero-media img { opacity: 0.72; }
  .page-hero-media::after {
    background: linear-gradient(180deg, rgba(11,7,8,0.55) 0%, rgba(11,7,8,0.5) 40%, rgba(11,7,8,0.85) 100%);
  }
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero p, .page-hero .lead { color: rgba(245, 239, 232, 0.82); }
.page-hero strong { color: var(--ivory); }

/* ============ VIDÉO STUDIO — Visite virtuelle drone ============ */
.studio-video-section {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-warm) 100%);
  padding: 5rem 0 6rem;
}
.studio-video-placeholder {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: radial-gradient(circle at 50% 40%, #2b1f24 0%, #16090d 55%, #0b0708 100%);
  color: var(--fuchsia);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(11, 7, 8, 0.08);
  display: flex; align-items: center; justify-content: center;
}
.studio-video-placeholder::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(230, 24, 122, 0.15) 0%, transparent 45%),
    radial-gradient(circle at 70% 80%, rgba(230, 24, 122, 0.08) 0%, transparent 45%);
}
.studio-video-placeholder::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(230, 24, 122, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230, 24, 122, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}
.studio-video-placeholder-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
  padding: 2rem; text-align: center;
}
.studio-video-placeholder-inner svg {
  color: var(--fuchsia);
  animation: studio-video-pulse 3s ease-in-out infinite;
}
@keyframes studio-video-pulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}
.studio-video-caption {
  display: flex; flex-direction: column; gap: 0.4rem;
  color: rgba(245, 239, 232, 0.95);
}
.studio-video-caption .script {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--fuchsia);
  letter-spacing: 0.02em;
}
.studio-video-caption-sub {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(0.95rem, 1.25vw, 1.1rem);
  color: rgba(245, 239, 232, 0.6);
  letter-spacing: 0.15em; text-transform: uppercase;
}
/* Une fois la vidéo intégrée, ces styles s'appliquent au <video> */
.studio-video-placeholder video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
/* Quand la vraie vidéo est intégrée, retirer le fond animé/halo */
.studio-video-placeholder.has-video {
  background: #000;
}
.studio-video-placeholder.has-video::before,
.studio-video-placeholder.has-video::after {
  display: none;
}

@media (max-width: 640px) {
  .studio-video-section { padding: 3.5rem 0 4.5rem; }
  .studio-video-placeholder { aspect-ratio: 4 / 5; }
}

/* ============ Fly Yoga showcase (photo complémentaire) ============ */
.fly-showcase {
  max-width: 1000px;
  margin: 3rem auto 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 4px;
  background: #16090d;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(11, 7, 8, 0.06);
}
.fly-showcase img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s cubic-bezier(0.22, 1, 0.36, 1);
}
.fly-showcase:hover img { transform: scale(1.05); }
@media (max-width: 640px) {
  .fly-showcase { max-width: 100%; margin: 2rem 0 0; aspect-ratio: 4/5; }
}

/* ============ Vidéo showcase (aperçu vidéo dans une section) ============ */
.video-showcase {
  position: relative;
  max-width: 900px;
  margin: 3rem auto 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  background: #000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(11, 7, 8, 0.06);
}
.video-showcase video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
/* Format vertical/portrait pour les vidéos smartphone */
.video-showcase.portrait {
  aspect-ratio: 9 / 16;
  max-width: 380px;
}
.video-showcase.square {
  aspect-ratio: 1 / 1;
  max-width: 620px;
}
@media (max-width: 640px) {
  .video-showcase { max-width: 100%; margin: 2rem 0 0; }
}

/* Bouton son pour vidéo showcase (variante compacte) */
.video-with-sound { position: relative; }
.video-sound-toggle {
  position: absolute;
  bottom: 1rem; right: 1rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  background: rgba(11, 7, 8, 0.6);
  color: var(--ivory);
  border: 1px solid rgba(245, 239, 232, 0.35);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.video-sound-toggle:hover {
  background: var(--fuchsia);
  border-color: var(--fuchsia);
  transform: scale(1.05);
}
.video-sound-toggle svg { flex: 0 0 auto; }
.video-sound-toggle.sound-on {
  background: rgba(230, 24, 122, 0.9);
  border-color: var(--fuchsia);
}
@media (max-width: 640px) {
  .video-sound-toggle { padding: 0.45rem 0.75rem; font-size: 0.62rem; }
  .video-sound-label { display: none; }
}

/* ============ Placeholder vidéo Chippendale (EVJF) ============ */
.chippendale-video-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: radial-gradient(circle at 50% 40%, #3a2028 0%, #1f0d13 55%, #100608 100%);
  color: var(--fuchsia);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(230, 24, 122, 0.15);
  display: flex; align-items: center; justify-content: center;
}
.chippendale-video-placeholder::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(230, 24, 122, 0.22) 0%, transparent 45%),
    radial-gradient(circle at 70% 80%, rgba(230, 24, 122, 0.12) 0%, transparent 45%);
}
.chippendale-video-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
  padding: 2rem; text-align: center;
}
.chippendale-video-inner svg {
  color: var(--fuchsia);
  animation: studio-video-pulse 3s ease-in-out infinite;
}
.chippendale-video-caption {
  display: flex; flex-direction: column; gap: 0.35rem;
  color: rgba(245, 239, 232, 0.95);
}
.chippendale-video-caption .script {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--fuchsia);
}
.chippendale-video-sub {
  font-family: var(--font-body);
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245, 239, 232, 0.6);
}
.chippendale-video-placeholder video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
/* Une fois la vraie vidéo intégrée, on retire le fond animé/halo */
.chippendale-video-placeholder.has-video { background: #000; }
.chippendale-video-placeholder.has-video::before { display: none; }
@media (max-width: 640px) {
  .chippendale-video-placeholder { aspect-ratio: 4 / 5; }
}

/* ============ Grille "11 bénéfices" (Pole Dance) ============ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.benefit-card {
  padding: 2rem 1.25rem 1.75rem;
  border: 1px solid var(--line-dark);
  background: var(--ivory-warm);
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: default;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.4s ease,
    border-color 0.4s ease,
    color 0.4s ease;
  transition-delay: calc(var(--i) * 70ms);
}
.benefit-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(230, 24, 122, 0.14) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.benefit-card:hover {
  border-color: var(--fuchsia);
  background: #fff;
  transform: translateY(-4px);
}
.benefit-card:hover::before {
  opacity: 1;
}
.benefit-num {
  font-family: var(--font-display);
  color: var(--fuchsia);
  font-size: 1.35rem;
  font-style: italic;
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
  transition: transform 0.4s ease, font-size 0.4s ease;
  position: relative;
  z-index: 1;
}
.benefit-label {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--onyx);
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}
.benefit-card:hover .benefit-num {
  transform: scale(1.15);
}
.benefit-card:hover .benefit-label {
  color: var(--fuchsia);
}

/* Reduced motion respect */
@media (prefers-reduced-motion: reduce) {
  .benefit-card { opacity: 1; transform: none; transition-delay: 0ms; }
}

/* ============ CARROUSEL EVJF (galerie photos) ============ */
.ypd-evjf-gallery {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
/* Variante coaching : intégrée dans une section claire, largeur réduite */
.coaching-gallery { max-width: 100%; }
.coaching-gallery .ypd-evjf-slide { width: 100%; aspect-ratio: 4/5; }
.coaching-gallery .ypd-evjf-prev,
.coaching-gallery .ypd-evjf-next {
  border-color: var(--line-dark);
  color: var(--onyx);
}
.coaching-gallery .ypd-evjf-prev:hover,
.coaching-gallery .ypd-evjf-next:hover {
  background: var(--fuchsia);
  border-color: var(--fuchsia);
  color: var(--ivory);
}
.coaching-gallery .ypd-evjf-dot { background: rgba(11, 7, 8, 0.2); }
.coaching-gallery .ypd-evjf-dot.active { background: var(--fuchsia); }
.ypd-evjf-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 1.5rem;
  padding: 0.5rem 0.25rem 1.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.ypd-evjf-track::-webkit-scrollbar { display: none; }
.ypd-evjf-slide {
  flex: 0 0 auto;
  scroll-snap-align: center;
  width: min(78vw, 640px);
  aspect-ratio: 4 / 5;
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  background: #16090d;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(245,239,232,0.06);
  position: relative;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.ypd-evjf-slide img,
.ypd-evjf-slide video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s cubic-bezier(0.22, 1, 0.36, 1);
}
.ypd-evjf-slide:hover img { transform: scale(1.05); }

/* Controls (prev / next / dots) */
.ypd-evjf-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.ypd-evjf-prev, .ypd-evjf-next {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(245,239,232,0.35);
  background: transparent;
  color: var(--ivory);
  font-size: 1.5rem; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
  font-family: var(--font-display);
}
.ypd-evjf-prev:hover, .ypd-evjf-next:hover {
  background: var(--fuchsia);
  border-color: var(--fuchsia);
  transform: scale(1.05);
}
.ypd-evjf-dots {
  display: flex;
  gap: 0.6rem;
}
.ypd-evjf-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(245,239,232,0.25);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.ypd-evjf-dot.active {
  background: var(--fuchsia);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 640px) {
  .ypd-evjf-slide { width: 82vw; aspect-ratio: 4/5; }
  .ypd-evjf-prev, .ypd-evjf-next { width: 40px; height: 40px; font-size: 1.25rem; }
}

/* Placeholder poétique méditation (en attente de vraies photos) */
.meditation-placeholder {
  background: radial-gradient(circle at 50% 45%, #2b1f24 0%, #16090d 60%, #0b0708 100%);
  color: var(--fuchsia);
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 120px rgba(0,0,0,0.7);
}
.meditation-placeholder::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(232,74,161,0.15) 0%, transparent 55%);
}
.meditation-placeholder-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 2rem;
  padding: 2rem;
}
.meditation-orb { width: 220px; height: 220px; color: var(--fuchsia); animation: meditation-pulse 6s ease-in-out infinite; }
@keyframes meditation-pulse {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}
.meditation-caption {
  text-align: center; color: rgba(245, 239, 232, 0.9);
  display: flex; flex-direction: column; gap: 0.5rem;
}
.meditation-caption .script {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--fuchsia); letter-spacing: 0.02em;
}
.meditation-caption-sub {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(245, 239, 232, 0.7); letter-spacing: 0.06em;
}

/* Page-hero split (texte à gauche, photo à droite bien visible) */
.page-hero-split { padding: 8rem 0 0; min-height: 70vh; display: flex; align-items: center; }
.page-hero-split-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; width: 100%;
}
.page-hero-split-content { position: relative; z-index: 2; padding: 3rem 0; }
.page-hero-split-media {
  position: relative;
  aspect-ratio: 3 / 4;
  max-height: 70vh;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(245,239,232,0.08);
}
.page-hero-split-media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
/* Petit décor fuchsia derrière la photo */
.page-hero-split-media::before {
  content: "";
  position: absolute;
  inset: -20px -20px 20px 20px;
  border: 1px solid var(--fuchsia);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.5;
}
@media (max-width: 900px) {
  .page-hero-split { padding: 7rem 0 3rem; min-height: auto; }
  .page-hero-split-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .page-hero-split-content { padding: 0; }
  .page-hero-split-media { max-height: 60vh; aspect-ratio: 4/5; margin: 0 1rem; }
}
.breadcrumb {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245, 239, 232, 0.55);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--champagne); }
.breadcrumb a:hover { color: var(--fuchsia); }

/* ============================================================
   FEATURE SECTIONS
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split.reverse .split-content { order: 1; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

.split-media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--nude);
}
.split-media img,
.split-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-media.tall { aspect-ratio: 3/4; }
.split-media.landscape { aspect-ratio: 4/3; }
.split-media.wide { aspect-ratio: 16/10; }

.split-content .eyebrow { margin-bottom: 1rem; display: inline-block; }
.split-content h2 { margin-bottom: 1.5rem; }
.split-content p { margin-bottom: 1rem; color: var(--ink); opacity: 0.85; }
.split-content .btn { margin-top: 1.5rem; }

/* Feature grid (activités) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.feature-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--onyx);
}
.feature-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.5s;
}
.feature-card:hover img { transform: scale(1.06); opacity: 0.75; }
.feature-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(11,7,8,0.85) 100%);
}
.feature-card-content {
  position: absolute; inset: 0;
  z-index: 2;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--ivory);
}
.feature-card-content .eyebrow { color: var(--champagne); margin-bottom: 0.75rem; }
.feature-card-content h3 { font-size: 1.75rem; margin-bottom: 0.5rem; color: var(--ivory); }
.feature-card-content p { font-size: 0.9rem; opacity: 0.85; margin-bottom: 1rem; }
.feature-card-link {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fuchsia);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
}
.feature-card-link::after { content: "→"; transition: transform 0.3s; }
.feature-card:hover .feature-card-link::after { transform: translateX(4px); }

/* Number stats */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 3rem 2rem;
  padding: 4rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--fuchsia);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245, 239, 232, 0.7);
}
.stats.on-light { border-color: var(--line-dark); }
.stats.on-light .stat-label { color: var(--ink); opacity: 0.6; }

/* ============================================================
   REVIEWS CAROUSEL (accueil, mode fallback pour Google Reviews)
   ============================================================ */
.ypd-carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  opacity: 1 !important;
  transform: none !important;
}
.ypd-carousel-viewport {
  overflow: hidden;
  position: relative;
  padding: 1rem 0.5rem 2rem;
}
.ypd-carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}
.ypd-review-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: 0;
  padding: 2rem;
  background: var(--ivory-warm);
  border: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.ypd-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.2);
}

/* Dark variant : cartes claires sur fond sombre */
.ypd-carousel-dark .ypd-review-card {
  background: rgba(245, 239, 232, 0.05);
  border-color: var(--line);
  color: var(--ivory);
}
.ypd-carousel-dark .ypd-review-card:hover {
  background: rgba(245, 239, 232, 0.09);
  box-shadow: 0 20px 40px -10px rgba(230, 24, 122, 0.15);
}
.ypd-carousel-dark .ypd-review-quote {
  color: var(--ivory) !important;
  opacity: 0.95 !important;
}
.ypd-carousel-dark .ypd-review-meta {
  color: rgba(245, 239, 232, 0.7);
  border-color: var(--line);
}
.ypd-carousel-dark .ypd-review-meta strong {
  color: var(--ivory);
}
.ypd-carousel-dark .ypd-carousel-prev,
.ypd-carousel-dark .ypd-carousel-next {
  border-color: var(--line);
  color: var(--ivory);
}
.ypd-carousel-dark .ypd-carousel-prev:hover,
.ypd-carousel-dark .ypd-carousel-next:hover {
  background: var(--fuchsia);
  border-color: var(--fuchsia);
}
.ypd-carousel-dark .ypd-carousel-dots button {
  background: rgba(245, 239, 232, 0.25);
}
.ypd-carousel-dark .ypd-carousel-dots button.active {
  background: var(--fuchsia);
}
.ypd-review-stars {
  color: var(--fuchsia);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
}
.ypd-review-quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
  flex-grow: 1;
  margin: 0;
  opacity: 1 !important;
}
.ypd-review-meta {
  font-size: 0.85rem;
  color: var(--ink);
  opacity: 0.75;
  font-family: var(--font-sans);
  letter-spacing: 0.02em;
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid var(--line-dark);
}
.ypd-review-meta strong {
  font-weight: 500;
  color: var(--onyx);
  margin-right: 0.4rem;
}

.ypd-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}
.ypd-carousel-prev, .ypd-carousel-next {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: var(--onyx);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  font-family: sans-serif;
}
.ypd-carousel-prev:hover, .ypd-carousel-next:hover {
  border-color: var(--fuchsia);
  background: var(--fuchsia);
  color: var(--ivory);
}
.ypd-carousel-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.ypd-carousel-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(11,7,8,0.2);
  padding: 0;
  cursor: pointer;
  transition: all 0.3s;
}
.ypd-carousel-dots button.active {
  background: var(--fuchsia);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .ypd-review-card { flex: 0 0 calc((100% - 1.5rem) / 2); }
}
@media (max-width: 640px) {
  .ypd-review-card { flex: 0 0 100%; padding: 1.5rem; }
  .ypd-carousel-viewport { padding: 1rem 0 1.5rem; }
}

/* Testimonial */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.testimonial-card {
  padding: 2.25rem;
  background: var(--ivory-warm);
  border: 1px solid var(--line-dark);
  display: flex; flex-direction: column;
  gap: 1rem;
  transition: all 0.4s ease;
}
.testimonial-card:hover {
  background: var(--onyx);
  color: var(--ivory);
  transform: translateY(-4px);
}
.testimonial-card:hover .testimonial-name,
.testimonial-card:hover .testimonial-quote { color: var(--ivory); }
.testimonial-card:hover .testimonial-meta { color: rgba(245, 239, 232, 0.6); }
.testimonial-stars { color: var(--fuchsia); font-size: 0.85rem; letter-spacing: 0.2em; }
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  flex-grow: 1;
}
.testimonial-name {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--onyx);
  margin-top: auto;
}
.testimonial-meta { font-size: 0.72rem; color: var(--ink); opacity: 0.55; letter-spacing: 0.1em; }

/* FAQ */
.faq { display: flex; flex-direction: column; margin-top: 2rem; }
.faq-item { border-bottom: 1px solid var(--line-dark); }
.faq-item.on-dark-item { border-color: var(--line); }
.faq-question {
  width: 100%;
  padding: 1.75rem 0;
  display: flex; justify-content: space-between; align-items: center;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-weight: 400;
  color: var(--onyx);
  transition: color 0.3s;
}
.on-dark .faq-question { color: var(--ivory); }
.faq-question:hover { color: var(--fuchsia); }
.faq-icon {
  width: 20px; height: 20px; position: relative;
  flex-shrink: 0; margin-left: 1rem;
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; top: 50%; left: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transition: transform 0.3s;
}
.faq-icon::after { transform: rotate(90deg); }
.faq-item.open .faq-icon::after { transform: rotate(0); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--ink); opacity: 0.75;
  font-size: 1rem;
  line-height: 1.7;
}
.on-dark .faq-answer { color: rgba(245, 239, 232, 0.75); }
.faq-item.open .faq-answer { max-height: 600px; padding-bottom: 1.75rem; }

/* CTA Band */
.cta-band {
  padding: clamp(4rem, 8vw, 6rem) 0;
  text-align: center;
  background: var(--onyx);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -50%; left: -20%; right: -20%; bottom: -50%;
  background: radial-gradient(ellipse at center, var(--fuchsia-glow) 0%, transparent 55%);
  opacity: 0.4;
  pointer-events: none;
}
.cta-band > .container { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: 1.5rem; color: var(--ivory); }
.cta-band .lead { color: rgba(245, 239, 232, 0.8); margin: 0 auto 2.5rem; max-width: 620px; }
.cta-band-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--onyx);
  color: var(--ivory);
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 780px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: span 2; }
}
.footer-brand img { height: 110px; margin-bottom: 1.5rem; object-fit: contain; }
.footer-brand p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(245, 239, 232, 0.75);
  max-width: 320px;
  line-height: 1.5;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.footer-col ul li { margin-bottom: 0.85rem; }
.footer-col a {
  font-size: 0.9rem;
  color: rgba(245, 239, 232, 0.75);
  transition: color 0.3s;
  font-weight: 300;
}
.footer-col a:hover { color: var(--fuchsia); }
.footer-col p { font-size: 0.9rem; color: rgba(245, 239, 232, 0.75); margin-bottom: 0.5rem; }

.socials { display: flex; gap: 0.75rem; margin-top: 1rem; }

/* Row d'icônes sociales larges (page Contact, fond clair) */
.social-icons-row {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 0.5rem;
}
.social-icon-btn {
  width: 84px; height: 84px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--onyx);
  border-radius: 50%;
  color: var(--onyx);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  flex-shrink: 0;
}
.social-icon-btn:hover {
  color: var(--ivory);
  background: var(--fuchsia);
  border-color: var(--fuchsia);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 24px -8px var(--fuchsia-glow);
}
.social-icon-btn svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
  transition: transform 0.35s;
}
.social-icon-btn:hover svg {
  transform: scale(1.1);
}
@media (max-width: 480px) {
  .social-icons-row { gap: 1rem; }
  .social-icon-btn { width: 72px; height: 72px; }
  .social-icon-btn svg { width: 32px; height: 32px; }
}

/* Footer inline social icons (Suivez-nous section) */
.footer-social-inline {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  margin-top: 0.75rem;
}
.footer-social-inline a {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: rgba(245, 239, 232, 0.75);
  transition: all 0.3s;
}
.footer-social-inline a:hover {
  color: var(--ivory) !important;
  background: var(--fuchsia);
  border-color: var(--fuchsia);
  transform: translateY(-2px);
}
.footer-social-inline svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.socials a {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: all 0.3s;
}
.socials a:hover {
  border-color: var(--fuchsia);
  background: var(--fuchsia);
  transform: translateY(-2px);
}
.socials svg { width: 16px; height: 16px; fill: var(--ivory); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.75rem;
  color: rgba(245, 239, 232, 0.5);
  letter-spacing: 0.1em;
}

/* Bouton flottant WhatsApp retiré — remplacé par des boutons WhatsApp verts contextuels dans le contenu */

/* Fade-in on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Divider */
.divider {
  display: flex; align-items: center; gap: 1rem;
  margin: 3rem 0;
}
.divider::before, .divider::after {
  content: ""; flex: 1; height: 1px;
  background: var(--line-dark);
}
.on-dark .divider::before, .on-dark .divider::after { background: var(--line); }
.divider span {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--fuchsia);
  font-size: 1.5rem;
}

/* Section header */
.section-header {
  max-width: 720px;
  margin-bottom: 3rem;
}
.section-header.center { margin: 0 auto 4rem; text-align: center; }
.section-header .eyebrow { margin-bottom: 1rem; display: inline-block; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--ink); opacity: 0.7; }
.on-dark .section-header p { color: rgba(245, 239, 232, 0.75); }

/* Utility */
.text-fuchsia { color: var(--fuchsia); }
.text-champagne { color: var(--champagne); }
.mt-0 { margin-top: 0 !important; }
.hidden-mobile { }
@media (max-width: 640px) { .hidden-mobile { display: none !important; } }

/* Print-safe hover fallback for reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============================================================
   INFO BLOCKS (tenues, déroulement, tarifs, horaires)
   ============================================================ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.info-block {
  padding: 2rem;
  background: var(--ivory-warm);
  border: 1px solid var(--line-dark);
  position: relative;
}
.info-block.on-dark-block {
  background: rgba(245, 239, 232, 0.04);
  border-color: var(--line);
  color: var(--ivory);
}
.info-block h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fuchsia);
  margin-bottom: 1rem;
  font-weight: 500;
}
.info-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.info-block ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.95rem;
}
.info-block.on-dark-block ul li { border-color: var(--line); }
.info-block ul li:last-child { border-bottom: none; }
.info-block ul li::before {
  content: "✦ ";
  color: var(--fuchsia);
  margin-right: 0.5rem;
  font-size: 0.75rem;
  vertical-align: middle;
}

/* Pricing card */
.pricing-card {
  padding: 2.5rem 2rem;
  background: white;
  border: 1px solid var(--line-dark);
  text-align: center;
  transition: all 0.3s;
  position: relative;
}
.pricing-card.featured {
  background: var(--onyx);
  color: var(--ivory);
  border-color: var(--fuchsia);
  transform: translateY(-8px);
}
.pricing-card.featured .pricing-name,
.pricing-card.featured .pricing-desc { color: var(--ivory); }
.pricing-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--fuchsia);
  color: var(--ivory);
  padding: 0.35rem 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pricing-name {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--onyx);
  margin-bottom: 1rem;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1;
  color: var(--fuchsia);
  margin: 1rem 0;
  letter-spacing: -0.02em;
}
.pricing-price .price-unit {
  font-size: 0.95rem;
  color: var(--ink);
  opacity: 0.6;
  font-family: var(--font-sans);
  letter-spacing: 0.05em;
  display: block;
  margin-top: 0.25rem;
}
.pricing-card.featured .pricing-price .price-unit { color: rgba(245,239,232,0.7); }
.pricing-desc {
  font-size: 0.9rem;
  color: var(--ink);
  opacity: 0.75;
  margin-bottom: 1.5rem;
  min-height: 3em;
}

/* Highlight banner (gratuit, promo, alerte) */
.highlight-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.25rem;
  background: var(--fuchsia);
  color: var(--ivory);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.highlight-banner::before {
  content: "✦";
  font-size: 1rem;
  letter-spacing: 0;
}

/* Facebook icon in socials matches other social buttons */

/* Schedule table */
.schedule-table {
  width: 100%;
  background: var(--ivory-warm);
  border: 1px solid var(--line-dark);
  border-collapse: separate;
  border-spacing: 0;
}
.schedule-table th, .schedule-table td {
  padding: 1.1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.95rem;
}
.schedule-table tr:last-child td { border-bottom: none; }
.schedule-table th {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fuchsia);
  font-weight: 500;
  background: white;
}
.schedule-table td.day {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
}
.schedule-table td.time {
  font-family: var(--font-mono);
  color: var(--ink);
  opacity: 0.8;
}

/* Big number blocks (formations, années) */
.big-numbers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin: 3rem 0;
}
.big-number {
  border-left: 2px solid var(--fuchsia);
  padding-left: 1.5rem;
}
.big-number .num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1;
  color: var(--fuchsia);
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.big-number .num-label {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* Trust badges (pour Débutantes / rassurance) */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.trust-badge {
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--fuchsia);
  background: rgba(230, 24, 122, 0.04);
  text-align: center;
}
.trust-badge .badge-icon {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--fuchsia);
  line-height: 1;
  margin-bottom: 1rem;
  font-style: italic;
}
.trust-badge p {
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
  opacity: 1 !important;
}
/* Trust badges on dark background — force ivory text */
.on-dark .trust-badge {
  background: rgba(230, 24, 122, 0.08);
  border-color: var(--fuchsia);
}
.on-dark .trust-badge p {
  color: var(--ivory) !important;
  opacity: 1 !important;
  font-weight: 500;
}
.on-dark .trust-badge .badge-icon {
  color: var(--fuchsia);
}

/* Hero video (fallback if video not loaded, image behind) */
.hero-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 1;
  background: var(--onyx);
}

/* Hero sound toggle — élégant bouton flottant */
.hero-sound-toggle {
  position: absolute;
  bottom: 5.5rem; right: 2rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  background: rgba(11, 7, 8, 0.55);
  color: var(--ivory);
  border: 1px solid rgba(245, 239, 232, 0.35);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.hero-sound-toggle:hover {
  background: var(--fuchsia);
  border-color: var(--fuchsia);
  transform: scale(1.05);
}
.hero-sound-toggle svg { flex: 0 0 auto; }
.hero-sound-toggle.sound-on { background: rgba(230, 24, 122, 0.85); border-color: var(--fuchsia); }
@media (max-width: 640px) {
  .hero-sound-toggle { bottom: 4.5rem; right: 1rem; padding: 0.55rem 0.9rem; font-size: 0.65rem; }
  .hero-sound-label { display: none; }
}

/* Formation logos row */
.masters-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.5rem 2rem;
  margin: 2rem 0;
}
.master-name {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ivory);
}
.master-name span {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--champagne);
  opacity: 0.75;
  margin-top: 0.25rem;
}

/* Values pills */
.values-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.value-pill {
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
}
.value-pill.on-light {
  border-color: var(--line-dark);
  color: var(--onyx);
}

/* Options grid (EVJF options) */
.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.option-tag {
  padding: 1.4rem 1rem;
  border: 1px solid var(--line);
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ivory);
  transition: all 0.3s;
}
.option-tag:hover {
  border-color: var(--fuchsia);
  background: rgba(230, 24, 122, 0.08);
  color: var(--fuchsia);
}

/* Legal page (mentions, RGPD) */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 4rem 0;
}
.legal-content h2 {
  font-size: 1.5rem;
  margin: 3rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line-dark);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 1.15rem;
  margin: 1.75rem 0 0.75rem;
  color: var(--fuchsia);
}
.legal-content p, .legal-content ul, .legal-content li {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ink);
  opacity: 0.85;
  margin-bottom: 0.75rem;
}
.legal-content ul { padding-left: 1.5rem; list-style: disc; }
.legal-content strong { color: var(--onyx); font-weight: 500; }
.legal-content a { color: var(--fuchsia); text-decoration: underline; }
.legal-todo {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  background: rgba(230, 24, 122, 0.12);
  color: var(--fuchsia);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  border-radius: 2px;
}

/* Contact grid responsive */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr !important; gap: 3rem !important; }
  .contact-form-row { grid-template-columns: 1fr !important; }
}

/* Contact cards */
.contact-card {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  background: var(--ivory-warm);
  border: 1px solid var(--line-dark);
  transition: all 0.3s;
  color: inherit;
  text-decoration: none;
  /* Reset btn styles for cards used as <a class="btn contact-card"> */
  border-radius: 0;
  text-align: left;
  font-weight: normal;
  letter-spacing: 0;
  text-transform: none;
}
.contact-card.btn-whatsapp {
  background: var(--ivory-warm);
  color: inherit;
  border-color: var(--line-dark);
}
.contact-card.btn-whatsapp::before { display: none; } /* pas d'icône fantôme sur les cartes */
.contact-card:hover {
  background: var(--onyx);
  color: var(--ivory);
  transform: translateY(-3px);
  border-color: var(--onyx);
  box-shadow: none;
}
.contact-card.btn-whatsapp:hover {
  background: var(--onyx);
  border-color: var(--onyx);
}
.contact-card:hover .contact-card-detail { color: var(--ivory); }
.contact-card:hover .contact-card-note { color: rgba(245,239,232,0.6); }
.contact-card > div:not(.contact-icon) {
  min-width: 0; /* Permet le text-wrap correct */
  flex: 1;
}
.contact-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 26px; height: 26px; fill: white; }
.contact-icon.whatsapp { background: #25D366; }
.contact-icon.email { background: var(--fuchsia); }
.contact-icon.location { background: var(--onyx); }
.contact-card:hover .contact-icon.location { background: var(--fuchsia); }
.contact-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
}
.contact-card-detail {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  margin-top: 0.25rem;
  color: var(--ink);
}
.contact-card-note {
  font-size: 0.78rem;
  opacity: 0.6;
  margin-top: 0.5rem;
}



/* ============================================================
   MENU — VISIBILITÉ RENFORCÉE (v2)
   ============================================================ */
.site-header { background: linear-gradient(180deg, rgba(11,7,8,0.78) 0%, rgba(11,7,8,0.35) 70%, rgba(11,7,8,0) 100%); }
.site-header.scrolled { background: rgba(11,7,8,0.94); }
.nav { gap: 1.6rem; }
.nav a { font-size: 0.86rem; font-weight: 500; letter-spacing: 0.12em; text-shadow: 0 1px 10px rgba(0,0,0,0.55); }
.nav a::after { height: 2px; }
.nav-cta { text-shadow: none; box-shadow: 0 6px 20px rgba(230,24,122,0.35); }
.nav-toggle { width: 48px; height: 48px; border-radius: 50%; background: rgba(11,7,8,0.55); border: 1px solid rgba(245,239,232,0.35); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.nav-toggle span { left: 13px; right: 13px; height: 2px; }
.nav-toggle span:nth-child(1) { top: 19px; }
.nav-toggle span:nth-child(2) { top: 27px; }
.nav-toggle.open span:nth-child(1), .nav-toggle.open span:nth-child(2) { top: 23px; }
.nav-toggle.open { background: var(--fuchsia); border-color: var(--fuchsia); }
.nav a { white-space: nowrap; }
@media (max-width: 1360px) and (min-width: 961px) { .nav { gap: 1rem; } .nav a { font-size: 0.76rem; letter-spacing: 0.06em; } }
@media (max-width: 1140px) and (min-width: 961px) { .nav { gap: 0.8rem; } .nav a { font-size: 0.7rem; letter-spacing: 0.04em; } .nav-cta { padding: 0.6rem 1rem !important; } }
@media (max-width: 960px) {
  .nav a { font-size: 1.35rem; font-family: var(--font-display); letter-spacing: 0.04em; text-transform: none; font-weight: 400; text-shadow: none; }
  .nav a.active { color: var(--fuchsia); }
  .nav { gap: 1.1rem; }
}

/* ============================================================
   PAGE BONS CADEAUX
   ============================================================ */
.gift-why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3.5rem; }
.gift-why-item { border-top: 1px solid var(--fuchsia); padding-top: 1.5rem; }
.gift-why-num { font-family: var(--font-display); font-style: italic; color: var(--fuchsia); font-size: 1.6rem; }
.gift-why-item h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.5rem; margin: 0.5rem 0 0.75rem; color: var(--onyx); }
.gift-why-item p { font-size: 0.95rem; opacity: 0.8; }
.gift-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3.5rem; }
.gift-card { position: relative; background: var(--ivory); border: 1px solid var(--line-dark); padding: 2.25rem 2rem 2rem; display: flex; flex-direction: column; transition: transform 0.35s, box-shadow 0.35s; }
.gift-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(11,7,8,0.1); }
.gift-card.featured { background: var(--onyx); color: var(--ivory); border-color: var(--fuchsia); }
.gift-card-badge { position: absolute; top: -0.8rem; left: 2rem; background: var(--fuchsia); color: var(--ivory); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; padding: 0.35rem 0.8rem; }
.gift-card-name { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.7; }
.gift-card-price { font-family: var(--font-display); font-size: 3.4rem; line-height: 1.1; color: var(--fuchsia); margin: 0.4rem 0 1.25rem; }
.gift-card-price span { font-size: 0.45em; margin-left: 0.15em; }
.gift-card-price-sm { font-size: 3.4rem; }
.gift-card-from { display: block; font-family: var(--font-body, inherit); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); opacity: 0.6; margin-bottom: 0.2rem; }
.gift-card ul { list-style: none; padding: 0; margin: 0 0 1rem; }
.gift-card li { padding: 0.55rem 0 0.55rem 1.5rem; position: relative; border-bottom: 1px solid var(--line-dark); font-size: 0.97rem; }
.gift-card.featured li { border-color: var(--line); }
.gift-card li::before { content: "✦"; position: absolute; left: 0; color: var(--fuchsia); font-size: 0.8rem; top: 0.7rem; }
.gift-card-ideal { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; opacity: 0.85; margin: 0.5rem 0 1.75rem; flex: 1; }
.gift-card .btn { align-self: flex-start; }
.gift-card.featured .btn-ghost-dark { color: var(--ivory); border-color: var(--ivory); }
.gift-card-free { border-style: dashed; border-color: var(--fuchsia); }
.gift-occasions { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 0; margin-top: 3rem; border-top: 1px solid var(--line-dark); }
.gift-occasion { padding: 2rem 1.75rem 2rem 0; border-bottom: 1px solid var(--line-dark); }
.gift-occasion-when { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fuchsia); }
.gift-occasion h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.7rem; margin: 0.4rem 0 0.6rem; color: var(--onyx); }
.gift-occasion p { font-size: 0.95rem; opacity: 0.8; margin-bottom: 1rem; }
.gift-link { color: var(--fuchsia); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; cursor: pointer; background: none; border: 0; padding: 0; border-bottom: 1px solid currentColor; }
.gift-form { max-width: 820px; margin: 3rem auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem 1.5rem; }
.gift-form-row { display: flex; flex-direction: column; gap: 0.5rem; }
.gift-form-row.full { grid-column: 1 / -1; }
.gift-form label { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.75; }
.gift-form input, .gift-form select, .gift-form textarea { font: inherit; font-size: 1rem; color: var(--ivory); background: rgba(245,239,232,0.06); border: 1px solid rgba(245,239,232,0.25); padding: 0.9rem 1rem; border-radius: 0; width: 100%; }
.gift-form select option { color: var(--onyx); }
.gift-form input:focus, .gift-form select:focus, .gift-form textarea:focus { outline: none; border-color: var(--fuchsia); background: rgba(230,24,122,0.08); }
.gift-form-error { grid-column: 1 / -1; color: #ff7ab5; text-align: center; }
.gift-form-note { font-size: 0.85rem; opacity: 0.65; margin-top: 1rem; }
@media (max-width: 960px) { .gift-why { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .gift-why { grid-template-columns: 1fr; } .gift-form { grid-template-columns: 1fr; } .gift-occasion { padding-right: 0; } }

/* Bons cadeaux — photos */
.gift-why-layout { display: grid; grid-template-columns: minmax(260px, 0.8fr) 1.6fr; gap: 3.5rem; align-items: center; margin-top: 3.5rem; }
.gift-why-layout .gift-why { grid-template-columns: 1fr 1fr; margin-top: 0; gap: 2.5rem 2rem; }
.gift-why-photo { margin: 0; aspect-ratio: 3/4; overflow: hidden; }
.gift-why-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gift-card-preview { max-width: 560px; margin: 2.5rem auto 0; text-align: center; }
.gift-card-preview img { width: 100%; display: block; background: #fff; padding: 6px; box-shadow: 0 24px 60px rgba(0,0,0,0.5); transform: rotate(-2deg); transition: transform 0.4s; }
.gift-card-preview:hover img { transform: rotate(0); }
.gift-card-preview figcaption { margin-top: 1.5rem; font-family: var(--font-display); font-style: italic; font-size: 1.1rem; opacity: 0.8; }
@media (max-width: 960px) { .gift-why-layout { grid-template-columns: 1fr; gap: 2.5rem; } .gift-why-photo { aspect-ratio: 4/5; max-width: 460px; margin: 0 auto; width: 100%; } }
@media (max-width: 640px) { .gift-why-layout .gift-why { grid-template-columns: 1fr; } }
