/* ==========================================================================
   YOGA MOLIETS — Feuille de style principale
   Direction artistique : poster landais moderne
     - Typographie : Fraunces (display éditorial) + Manrope (corps)
     - Palette : terracotta, sauge, sable, ciel doux, bleu nuit
     - Esprit : aplats d'affiche, formes organiques, lumière du matin
   ========================================================================== */

/* --- Design tokens ------------------------------------------------------- */
:root {
  /* Palette — directement inspirée des affiches landaises */
  --c-sand:        #F2E4CB;
  --c-sand-2:      #EFD9B8;
  --c-cream:       #FAF4E8;
  --c-sage:        #6E8566;
  --c-sage-deep:   #4F6348;
  --c-terracotta:  #D77A4A;
  --c-terracotta-2:#C6612F;
  --c-sun:         #E8A05C;
  --c-sky:         #CFE0E4;
  --c-sky-2:       #A7C6CC;
  --c-ink:         #1D2C3C;      /* bleu nuit pour les textes */
  --c-ink-soft:    #45556A;
  --c-white:       #FFFFFF;

  /* Typographie */
  --f-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --f-body:    'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Espacements / grille */
  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 28px;
  --radius-xl: 44px;

  --shadow-soft: 0 10px 40px -20px rgba(29, 44, 60, 0.25);
  --shadow-lift: 0 24px 60px -28px rgba(29, 44, 60, 0.35);

  --max-w: 1200px;
  --gutter: clamp(20px, 4vw, 48px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- Reset doux ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--c-terracotta); outline-offset: 3px; border-radius: 4px; }

/* --- Typographie --------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--c-ink);
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 400; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: var(--f-body); text-transform: uppercase; letter-spacing: 0.08em; }
p  { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--f-body);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--c-terracotta);
  margin-bottom: 1rem;
  display: inline-block;
}

/* --- Layout -------------------------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
section {
  position: relative;
  padding: clamp(72px, 10vw, 140px) 0;
}

/* --- Header / navigation ------------------------------------------------ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: all 0.35s var(--ease);
  /* Léger voile dès le chargement : plus moderne qu'un flash au scroll */
  background: rgba(250, 244, 232, 0.55);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(29, 44, 60, 0.04);
}
.site-header.is-scrolled {
  background: rgba(250, 244, 232, 0.92);
  box-shadow: 0 1px 30px -12px rgba(29, 44, 60, 0.14);
  padding: 10px 0;
  border-bottom-color: rgba(29, 44, 60, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-display);
  color: var(--c-ink);
  text-decoration: none;
  transition: transform 0.25s var(--ease);
}
.brand:hover { transform: scale(1.02); }

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
}
.brand:hover .brand-logo {
  transform: rotate(-3deg) scale(1.06);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-name {
  font-size: 1.18rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.01em;
}
.brand-sub {
  font-size: 0.72rem;
  font-style: normal;
  font-family: var(--f-body);
  font-weight: 500;
  color: var(--c-ink-soft);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

/* Footer brand : taille un peu plus grande */
.brand-footer {
  margin-bottom: 14px;
}
.brand-footer .brand-logo {
  width: 52px;
  height: 52px;
}
.brand-footer .brand-name {
  font-size: 1.3rem;
  color: var(--c-ink);
}
.brand-footer .brand-sub {
  color: var(--c-ink-soft);
  font-size: 0.78rem;
}

/* Compat : ancienne classe .brand-mark masquée si elle restait quelque part */
.brand-mark { display: none !important; }

/* Mention "Lieu mis à disposition" — discrète */
.lieu-mention {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(29, 44, 60, 0.12);
  font-size: 0.85rem;
  color: var(--c-ink-soft);
  font-style: italic;
}
.lieu-mention a {
  color: var(--c-ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.lieu-mention a:hover { color: var(--c-terracotta); }

/* Footer : mention discrète + liens externes */
.footer-mention {
  margin-top: 8px;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--c-ink-soft);
}
.footer-mention a {
  color: var(--c-ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.footer-mention a:hover { color: var(--c-terracotta); }
.footer-ext-icon {
  display: inline-block;
  margin-left: 4px;
  font-size: 0.75em;
  opacity: 0.7;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.footer-col a:hover .footer-ext-icon {
  opacity: 1;
  transform: translate(2px, -2px);
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--c-ink);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--c-terracotta);
  transition: width 0.35s var(--ease), left 0.35s var(--ease);
}
.nav-links a:hover::after { width: 100%; left: 0; }
.nav-links a:hover { color: var(--c-terracotta); }

/* Bouton Réserver dans la nav : pill sombre avec flèche */
.nav-links .btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px 10px 22px;
  background: var(--c-ink);
  color: var(--c-cream);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.nav-links .btn-nav::after {
  display: none;
}
.nav-links .btn-nav svg {
  width: 16px; height: 16px;
  transition: transform 0.3s var(--ease);
}
.nav-links .btn-nav:hover {
  background: var(--c-terracotta);
  color: var(--c-cream);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px -10px rgba(215, 122, 74, 0.6);
}
.nav-links .btn-nav:hover svg {
  transform: translateX(3px);
}

.nav-toggle {
  display: none;
  background: none; border: 0;
  width: 44px; height: 44px;
  padding: 10px;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--c-ink);
  margin: 5px 0;
  transition: 0.3s;
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed; inset: 64px 12px auto 12px;
    background: var(--c-cream);
    flex-direction: column;
    padding: 28px 24px;
    border-radius: var(--radius-l);
    box-shadow: var(--shadow-lift);
    transform: translateY(-8px);
    opacity: 0; pointer-events: none;
    transition: 0.3s var(--ease);
    gap: 14px;
  }
  .nav-links.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a { padding: 10px 0; font-size: 1.1rem; }
  .nav-toggle { display: block; }
  .nav-links .btn { margin-top: 6px; width: 100%; text-align: center; }
}

/* --- Boutons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  border: 0; cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-terracotta);
  color: var(--c-cream);
  box-shadow: 0 12px 28px -14px rgba(198, 97, 47, 0.65);
}
.btn-primary:hover {
  background: var(--c-terracotta-2);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -14px rgba(198, 97, 47, 0.7);
}
.btn-secondary {
  background: var(--c-ink);
  color: var(--c-cream);
}
.btn-secondary:hover { background: #0F1B28; transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--c-ink);
  border: 1.5px solid var(--c-ink);
}
.btn-ghost:hover { background: var(--c-ink); color: var(--c-cream); }
.btn-sage {
  background: var(--c-sage);
  color: var(--c-cream);
}
.btn-sage:hover { background: var(--c-sage-deep); }

.btn[disabled] { opacity: 0.4; cursor: not-allowed; transform: none; }
.btn svg { width: 18px; height: 18px; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  padding: clamp(110px, 14vw, 160px) 0 clamp(50px, 8vw, 100px);
  background:
    linear-gradient(180deg, var(--c-sky) 0%, #DCECEC 55%, var(--c-sand) 100%);
  overflow: hidden;
  position: relative;
}
.hero-inner { display: none; } /* ancien split supprimé */

/* Image de fond : illustration aquarelle pins/dunes/plage */
.hero-bg {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 0;
  pointer-events: none;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

/* Voile crème dégradé : lisibilité du texte tout en gardant l'ambiance */
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    /* Voile principal centré pour le texte */
    radial-gradient(
      ellipse 60% 70% at center 45%,
      rgba(250, 244, 232, 0.78) 0%,
      rgba(250, 244, 232, 0.55) 35%,
      rgba(250, 244, 232, 0.35) 60%,
      rgba(250, 244, 232, 0.15) 85%
    ),
    /* Voile bas pour transition vers la suite */
    linear-gradient(
      180deg,
      transparent 0%,
      transparent 70%,
      rgba(250, 244, 232, 0.7) 100%
    );
}

/* Mobile : voile plus opaque pour compenser l'image plus contrastée */
@media (max-width: 720px) {
  .hero-bg img {
    object-position: center 30%;
  }
  .hero-veil {
    background:
      radial-gradient(
        ellipse 75% 60% at center 45%,
        rgba(250, 244, 232, 0.82) 0%,
        rgba(250, 244, 232, 0.65) 40%,
        rgba(250, 244, 232, 0.45) 75%
      ),
      linear-gradient(
        180deg,
        transparent 0%,
        transparent 70%,
        rgba(250, 244, 232, 0.7) 100%
      );
  }
}

/* ===============================================
   HERO CENTRÉ (v4) — refonte style éditorial moderne
   =============================================== */
.hero-center {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  text-align: center;
}

/* Badge pill en haut */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(29, 44, 60, 0.08);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--c-ink-soft);
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-terracotta);
  box-shadow: 0 0 0 0 rgba(215, 122, 74, 0.7);
  animation: pulseBadge 2.4s ease-out infinite;
}
@keyframes pulseBadge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(215, 122, 74, 0.7); }
  70%      { box-shadow: 0 0 0 8px rgba(215, 122, 74, 0); }
}

/* H1 massif */
.hero-h1 {
  font-family: var(--f-display);
  font-size: clamp(2.3rem, 6vw, 4.6rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  margin: 0 0 24px;
}
.hero-h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--c-terracotta);
}
@media (max-width: 640px) {
  .hero-h1 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
    line-height: 1.08;
  }
}

/* Sous-titre */
.hero-lede {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--c-ink-soft);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.hero-lede strong { color: var(--c-ink); font-weight: 600; }

/* CTAs : 1 principal + 1 secondaire discret */
.hero-ctas {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 32px;
  background: var(--c-ink);
  color: var(--c-cream);
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: all 0.3s var(--ease);
  box-shadow: 0 14px 30px -14px rgba(29, 44, 60, 0.5);
}
.btn-hero-primary svg {
  width: 18px; height: 18px;
  transition: transform 0.3s var(--ease);
}
.btn-hero-primary:hover {
  background: var(--c-terracotta);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -14px rgba(215, 122, 74, 0.6);
}
.btn-hero-primary:hover svg { transform: translateX(4px); }

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  color: var(--c-ink);
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.btn-hero-ghost::after {
  content: '';
  position: absolute;
  left: 20px; right: 20px; bottom: 10px;
  height: 1px;
  background: var(--c-ink);
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s var(--ease);
}
.btn-hero-ghost:hover { color: var(--c-terracotta); }
.btn-hero-ghost:hover::after {
  background: var(--c-terracotta);
  opacity: 1;
  transform: translateY(0);
}

/* Preuve sociale */
.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--c-ink-soft);
  flex-wrap: wrap;
  justify-content: center;
}
.hero-proof-stars {
  display: inline-flex;
  letter-spacing: 2px;
}
.hero-proof-stars .star {
  color: rgba(29, 44, 60, 0.2);
  font-size: 1rem;
}
.hero-proof-stars .star.filled { color: var(--c-sun); }
.hero-proof-text strong { color: var(--c-ink); font-weight: 700; }

@media (max-width: 640px) {
  .hero-ctas { gap: 6px; }
  .btn-hero-primary { padding: 15px 28px; font-size: 0.95rem; }
  .btn-hero-ghost { padding: 10px 16px; }
  .hero-proof { font-size: 0.8rem; gap: 8px; }
}

/* Décorations du hero (soleil, glow, vague) */
.hero-deco { position: absolute; pointer-events: none; }
.hero-deco-sun {
  top: 8%; right: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(232,160,92,0.32) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(14px);
}
.hero-deco-glow {
  bottom: 10%; left: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(110, 133, 102, 0.22) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(20px);
}
.hero-deco-wave {
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'><path d='M0,30 C240,60 480,0 720,30 S1200,60 1440,30 L1440,60 L0,60 Z' fill='%23FAF4E8'/></svg>") no-repeat center/cover;
}

/* ===============================================
   BANDE "PROCHAINE SÉANCE" (après le hero)
   =============================================== */
.next-bar {
  background: var(--c-cream);
  padding: 0;
  margin-top: -10px;
  position: relative;
  z-index: 3;
}
.next-bar-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--c-ink);
  color: var(--c-cream);
  border-radius: var(--radius-l);
  padding: 18px 24px;
  margin: 20px 0 0;
  box-shadow: 0 20px 50px -22px rgba(29, 44, 60, 0.35);
  position: relative;
  overflow: hidden;
}
.next-bar-inner::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(232, 160, 92, 0.35) 0%, transparent 60%);
  pointer-events: none;
}
.next-bar-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(250, 244, 232, 0.12);
  border-radius: 12px;
  color: var(--c-sand);
  flex-shrink: 0;
}
.next-bar-body {
  flex: 1;
  min-width: 0;
}
.next-bar-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-sun);
  margin-bottom: 2px;
}
.next-bar-date {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--c-cream);
}
.next-bar-seats {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(110, 133, 102, 0.22);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--c-cream);
  white-space: nowrap;
  flex-shrink: 0;
}
.next-bar-seats .dot-live {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #a8d99d;
  box-shadow: 0 0 0 0 rgba(168, 217, 157, 0.6);
  animation: pulse-live 2s ease-out infinite;
}
.next-bar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--c-terracotta);
  color: var(--c-cream);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.next-bar-cta svg {
  width: 16px; height: 16px;
  transition: transform 0.3s var(--ease);
}
.next-bar-cta:hover {
  background: var(--c-terracotta-2);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px -8px rgba(215, 122, 74, 0.65);
}
.next-bar-cta:hover svg { transform: translateX(3px); }

@media (max-width: 720px) {
  .next-bar-inner {
    flex-wrap: wrap;
    padding: 16px 18px;
    gap: 12px;
  }
  .next-bar-icon { width: 40px; height: 40px; }
  .next-bar-date { font-size: 1.08rem; }
  .next-bar-seats {
    width: 100%;
    order: 3;
    justify-content: center;
  }
  .next-bar-cta {
    width: 100%;
    order: 4;
    justify-content: center;
    padding: 12px;
  }
}

/* Illustration déplacée de hero vers section "Le cours" */
.cours-illus {
  margin: 72px auto 0;
  max-width: 520px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.cours-illus svg { width: 100%; height: 100%; display: block; }
@media (max-width: 640px) {
  .cours-illus { margin-top: 48px; max-width: 340px; }
}

/* =========================================================================
   SECTIONS génériques
   ========================================================================= */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 72px);
}
.section-head p {
  color: var(--c-ink-soft);
  font-size: 1.1rem;
}

/* Fond alterné doux pour rythmer */
.bg-cream { background: var(--c-cream); }
.bg-sand  { background: var(--c-sand); }
.bg-sage  { background: var(--c-sage); color: var(--c-cream); }
.bg-sage h2, .bg-sage .eyebrow { color: var(--c-cream); }
.bg-sage .eyebrow { color: var(--c-sand); }

/* Divider organique entre sections */
.divider-waves {
  display: block;
  width: 100%;
  height: 60px;
}

/* =========================================================================
   "À propos" / présentation — cards
   ========================================================================= */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.feature {
  background: var(--c-cream);
  padding: 32px 28px;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  border: 1px solid rgba(29, 44, 60, 0.05);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.feature-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-sand);
  border-radius: 14px;
  margin-bottom: 20px;
  color: var(--c-terracotta);
}
.feature h3 { font-family: var(--f-body); font-size: 1.1rem; font-weight: 700; }
.feature p { color: var(--c-ink-soft); margin: 0; font-size: 0.98rem; }

/* =========================================================================
   POURQUOI ICI — layout poster split
   ========================================================================= */
.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 860px) { .why-split { grid-template-columns: 1fr; } }
.why-art {
  aspect-ratio: 4/5;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  position: relative;
}
.why-art svg { width: 100%; height: 100%; display: block; }

.why-list { list-style: none; padding: 0; margin: 24px 0 0; }
.why-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.2);
  align-items: flex-start;
}
.why-list li:last-child { border-bottom: 0; }
.why-list .dot {
  flex: 0 0 8px; width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-terracotta);
  margin-top: 10px;
}
.why-list strong { display: block; font-family: var(--f-display); font-size: 1.2rem; font-weight: 500; margin-bottom: 4px; }
.why-list span { color: rgba(250,244,232, 0.85); font-size: 0.95rem; line-height: 1.55; }

/* =========================================================================
   PLANNING
   ========================================================================= */
.planning-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
}
.planning-card {
  background: var(--c-cream);
  border-radius: var(--radius-m);
  padding: 22px 20px;
  border: 1px solid rgba(29, 44, 60, 0.06);
  transition: 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.planning-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--c-terracotta);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.planning-card:hover::before { transform: scaleX(1); }
.planning-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }

.planning-card .day {
  font-family: var(--f-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-sage);
}
.planning-card .date {
  font-family: var(--f-display);
  font-size: 1.7rem;
  font-weight: 500;
  margin: 6px 0 4px;
}
.planning-card .time {
  color: var(--c-ink-soft);
  font-size: 0.9rem;
}
.planning-card .seats {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(29,44,60,0.12);
  font-size: 0.85rem;
}
.planning-card .seats.full { color: var(--c-terracotta-2); font-weight: 600; }
.planning-card .seats.ok   { color: var(--c-sage-deep); font-weight: 600; }

/* =========================================================================
   TARIFS
   ========================================================================= */
.pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}
@media (max-width: 680px) { .pricing { grid-template-columns: 1fr; } }
.price-card {
  background: var(--c-cream);
  border-radius: var(--radius-l);
  padding: 40px 32px;
  border: 1px solid rgba(29, 44, 60, 0.06);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-soft);
  transition: 0.3s var(--ease);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.price-card.featured {
  background: var(--c-ink);
  color: var(--c-cream);
  border: 0;
}
.price-card.featured h3,
.price-card.featured .price-amount { color: var(--c-cream); }
.price-card.featured .price-note { color: rgba(250, 244, 232, 0.7); }

.price-tag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--c-terracotta);
  color: var(--c-cream);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.price-amount {
  font-family: var(--f-display);
  font-size: 3.8rem;
  font-weight: 400;
  line-height: 1;
  margin: 14px 0 8px;
}
.price-amount small { font-size: 1rem; color: var(--c-ink-soft); font-family: var(--f-body); }
.price-note { color: var(--c-ink-soft); font-size: 0.95rem; }
.price-includes { list-style: none; padding: 0; margin: 24px 0; text-align: left; }
.price-includes li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 0.95rem;
}
.price-includes li::before {
  content: ''; position: absolute; left: 0; top: 16px;
  width: 14px; height: 2px; background: var(--c-terracotta);
}

/* =========================================================================
   RÉSERVATION
   ========================================================================= */
.booking {
  background: var(--c-sand);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  box-shadow: var(--shadow-soft);
}
@media (max-width: 860px) { .booking { grid-template-columns: 1fr; } }
.booking-aside h3 { font-size: 1.8rem; }
.booking-aside p { color: var(--c-ink-soft); }
.booking-info-list { list-style: none; padding: 0; margin: 24px 0 0; }
.booking-info-list li {
  display: flex; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(29,44,60,0.15);
  font-size: 0.95rem;
}
.booking-info-list li:last-child { border-bottom: 0; }
.booking-info-list strong { flex: 0 0 90px; }

.booking-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-ink-soft);
  margin-bottom: 6px;
}
.field input, .field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-s);
  border: 1.5px solid rgba(29,44,60,0.15);
  background: var(--c-cream);
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--c-ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--c-terracotta);
  box-shadow: 0 0 0 4px rgba(215, 122, 74, 0.12);
}
.field-inline { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; }
.field-inline input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--c-terracotta); }

.date-picker {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 8px;
  max-height: 200px;
  overflow-y: auto;
  padding: 8px;
  border-radius: var(--radius-s);
  background: var(--c-cream);
  border: 1.5px solid rgba(29,44,60,0.15);
}
.date-chip {
  display: flex; flex-direction: column; align-items: center;
  padding: 10px 6px;
  border: 1.5px solid transparent;
  background: var(--c-sand-2);
  border-radius: var(--radius-s);
  font-family: var(--f-body);
  font-size: 0.78rem;
  color: var(--c-ink);
  transition: 0.2s;
}
.date-chip:hover:not(.full):not(.selected) { border-color: var(--c-terracotta); }
.date-chip .d-num { font-family: var(--f-display); font-size: 1.4rem; line-height: 1; margin: 2px 0; }
.date-chip.full { opacity: 0.35; cursor: not-allowed; }
.date-chip.selected {
  background: var(--c-terracotta);
  color: var(--c-cream);
  border-color: var(--c-terracotta);
}
.date-chip .seats-mini {
  font-size: 0.68rem;
  opacity: 0.75;
  margin-top: 3px;
}

.booking-summary {
  background: var(--c-cream);
  border-radius: var(--radius-m);
  padding: 18px 20px;
  font-size: 0.95rem;
  margin-top: 8px;
}
.booking-summary strong { font-family: var(--f-display); font-size: 1.2rem; }

/* =========================================================================
   LIEU / MAP
   ========================================================================= */
.place-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: stretch;
}
@media (max-width: 860px) { .place-split { grid-template-columns: 1fr; } }
.place-map {
  border-radius: var(--radius-l);
  overflow: hidden;
  min-height: 380px;
  box-shadow: var(--shadow-soft);
  background: var(--c-sand);
}
.place-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--c-cream);
  border-radius: var(--radius-m);
  margin-bottom: 12px;
  border: 1px solid rgba(29,44,60,0.06);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item[open] { box-shadow: var(--shadow-soft); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 500;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.8rem;
  color: var(--c-terracotta);
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-body {
  padding: 0 28px 24px;
  color: var(--c-ink-soft);
  line-height: 1.7;
}

/* =========================================================================
   TÉMOIGNAGES
   ========================================================================= */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--c-cream);
  padding: 28px;
  border-radius: var(--radius-m);
  border: 1px solid rgba(29,44,60,0.06);
  position: relative;
}
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 10px; left: 20px;
  font-family: var(--f-display);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--c-terracotta);
  opacity: 0.25;
}
.testimonial-stars {
  color: var(--c-sun);
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testimonial p {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--c-ink);
  margin: 0 0 16px;
}
.testimonial cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--c-ink-soft);
}
.testimonial cite strong { color: var(--c-ink); display: block; font-weight: 600; }

/* =========================================================================
   CONTACT FINAL
   ========================================================================= */
.final-cta {
  background: var(--c-ink);
  color: var(--c-cream);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,160,92,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta h2 { color: var(--c-cream); max-width: 16ch; margin: 0 auto 1rem; }
.final-cta p { color: rgba(250,244,232,0.8); max-width: 56ch; margin: 0 auto 2rem; font-size: 1.05rem; }
.final-cta .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
  background: var(--c-sand);
  padding: 60px 0 30px;
  color: var(--c-ink-soft);
  font-size: 0.92rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 540px) { .footer-top { grid-template-columns: 1fr; } }
.footer-col h4 { color: var(--c-ink); font-size: 0.78rem; margin-bottom: 16px; }
.footer-col a { display: block; padding: 4px 0; color: var(--c-ink-soft); transition: color 0.2s; }
.footer-col a:hover { color: var(--c-terracotta); }
.footer-bottom {
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(29,44,60,0.1);
  font-size: 0.85rem;
}

/* =========================================================================
   STICKY CTA MOBILE — visible seulement après le hero
   ========================================================================= */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 14px; left: 14px; right: 14px;
  background: var(--c-ink);
  color: var(--c-cream);
  padding: 12px 14px;
  border-radius: 999px;
  z-index: 90;
  box-shadow: 0 18px 40px -14px rgba(29,44,60,0.5);
  align-items: center; justify-content: space-between;
  gap: 10px;
  font-size: 0.92rem;
  /* Invisible par défaut — le JS ajoute .is-visible après le hero */
  opacity: 0;
  transform: translateY(120%);
  transition: opacity 0.3s ease, transform 0.4s var(--ease);
  pointer-events: none;
}
.sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta .btn { padding: 10px 18px; font-size: 0.88rem; }
@media (max-width: 720px) {
  .sticky-cta { display: flex; }
  /* Pas de padding-bottom sur le body : si le CTA est caché, pas besoin de réserver l'espace */
  .sticky-cta.is-visible ~ * { /* no-op, kept for specificity */ }
  body.has-sticky-cta { padding-bottom: 80px; }
}

/* =========================================================================
   POPUP événementiel (admin)
   ========================================================================= */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(29,44,60,0.55);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  z-index: 200;
  padding: 20px;
  animation: fadeIn 0.4s var(--ease);
}
.popup-card {
  background: var(--c-cream);
  border-radius: var(--radius-l);
  padding: 40px 32px;
  max-width: 440px; width: 100%;
  position: relative;
  box-shadow: var(--shadow-lift);
  animation: popIn 0.5s var(--ease);
}
.popup-card h3 { font-size: 1.6rem; margin-bottom: 10px; }
.popup-card p  { color: var(--c-ink-soft); }
.popup-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 0;
  font-size: 1.3rem;
  color: var(--c-ink);
}
.popup-close:hover { background: rgba(29,44,60,0.1); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popIn  {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

/* =========================================================================
   Animations au scroll — v3 amélioré
   - Distance plus prononcée
   - Courbe spring (rebond subtil)
   - Variantes directionnelles (.reveal-left, .reveal-right, .reveal-scale, .reveal-clip)
   ========================================================================= */

/* Base : monte depuis le bas avec un léger flou qui se résorbe */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(2px);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.6s ease;
  will-change: transform, opacity, filter;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

/* Variantes directionnelles */
.reveal-left  { transform: translateX(-40px) translateY(0); }
.reveal-right { transform: translateX(40px)  translateY(0); }
.reveal-left.is-visible, .reveal-right.is-visible { transform: none; }

/* Scale + fade (pour images/cards hero) */
.reveal-scale {
  transform: scale(0.96) translateY(20px);
}
.reveal-scale.is-visible {
  transform: scale(1) translateY(0);
}

/* Clip-path reveal (effet "on peint dessus") — pour illustrations
   On commence à 95% de clip (quasi-masqué mais IntersectionObserver peut
   détecter l'élément), pour terminer à 0% (visible) */
.reveal-clip {
  clip-path: inset(0 95% 0 0);
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  transition: clip-path 1.2s cubic-bezier(0.77, 0, 0.18, 1);
}
.reveal-clip.is-visible {
  clip-path: inset(0 0% 0 0);
}

/* Cascade automatique au sein d'une section
   Le JS ajoute l'attribut data-cascade avec le numéro de position (0, 1, 2...)
   Cela donne un délai progressif élégant */
.reveal[data-cascade="0"] { transition-delay: 0.00s; }
.reveal[data-cascade="1"] { transition-delay: 0.08s; }
.reveal[data-cascade="2"] { transition-delay: 0.16s; }
.reveal[data-cascade="3"] { transition-delay: 0.24s; }
.reveal[data-cascade="4"] { transition-delay: 0.32s; }
.reveal[data-cascade="5"] { transition-delay: 0.40s; }
.reveal[data-cascade="6"] { transition-delay: 0.48s; }
.reveal[data-cascade="7"] { transition-delay: 0.56s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal, .reveal-left, .reveal-right, .reveal-scale, .reveal-clip {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
  }
}

/* =========================================================================
   Messages / toasts
   ========================================================================= */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-s);
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.alert-success { background: #E1EBDB; color: var(--c-sage-deep); border: 1px solid var(--c-sage); }
.alert-error   { background: #F8E1D6; color: var(--c-terracotta-2); border: 1px solid var(--c-terracotta); }
.alert-info    { background: var(--c-sky); color: var(--c-ink); border: 1px solid var(--c-sky-2); }

/* =========================================================================
   REFONTE v2 — Composants additionnels
   (hero teaser, cours-grid, calendrier mensuel, lieu-intro)
   ========================================================================= */

/* --- Hero : teaser "prochaine séance" --------------------------------- */
.next-session {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 28px 0 20px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-m);
  border: 1px solid rgba(29, 44, 60, 0.08);
  box-shadow: 0 10px 30px -18px rgba(29, 44, 60, 0.25);
  max-width: 540px;
}
.next-session-body { flex: 1; min-width: 0; }
.next-session-label {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-terracotta);
  margin-bottom: 4px;
}
.next-session-date {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--c-ink);
  line-height: 1.2;
  margin-bottom: 4px;
}
.next-session-seats {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--c-ink-soft);
}
.dot-live {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-sage);
  box-shadow: 0 0 0 0 rgba(110, 133, 102, 0.6);
  animation: pulse-live 2s ease-out infinite;
}
@keyframes pulse-live {
  0%   { box-shadow: 0 0 0 0 rgba(110, 133, 102, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(110, 133, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(110, 133, 102, 0); }
}
.next-session .btn {
  padding: 12px 22px;
  font-size: 0.9rem;
  flex-shrink: 0;
}
@media (max-width: 540px) {
  .next-session { flex-direction: column; align-items: stretch; }
  .next-session .btn { width: 100%; justify-content: center; }
}

/* --- Hero : preuve sociale ------------------------------------------- */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--c-ink-soft);
  flex-wrap: wrap;
}
.hero-proof-stars {
  display: inline-flex;
  letter-spacing: 2px;
}
.hero-proof-stars .star {
  color: rgba(29, 44, 60, 0.2);
  font-size: 1rem;
}
.hero-proof-stars .star.filled {
  color: var(--c-sun);
}
.hero-proof-text strong { color: var(--c-ink); }

/* --- Hero art : illustration débordante ------------------------------ */
.hero-art {
  position: relative;
  margin: 0 -20px 0 auto;
  transform: translateY(20px);
  max-width: 520px;
}
@media (min-width: 901px) {
  .hero-art {
    margin-right: -40px;
    transform: translateY(40px) rotate(2deg);
    transition: transform 0.6s var(--ease);
  }
  .hero-art:hover {
    transform: translateY(40px) rotate(0deg);
  }
}

/* --- Section "Le cours" : nouvelle grille éditoriale ----------------- */
.cours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px 40px;
}
.cours-item {
  padding: 24px 0;
  border-top: 2px solid var(--c-ink);
  position: relative;
}
.cours-num {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 500;
  font-style: italic;
  color: var(--c-terracotta);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.cours-item h3 {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 10px;
  line-height: 1.2;
}
.cours-item p {
  color: var(--c-ink-soft);
  font-size: 0.98rem;
  margin: 0;
}

/* --- Section "Lieu" : intro en gras ---------------------------------- */
.lieu-intro {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  color: rgba(250, 244, 232, 0.95);
}
.lieu-intro strong { color: #fff; }
.bg-sage p { color: rgba(250, 244, 232, 0.9); }
.lieu-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.btn-sage-ghost {
  background: transparent;
  color: var(--c-cream);
  border: 1.5px solid rgba(250, 244, 232, 0.4);
}
.btn-sage-ghost:hover {
  border-color: var(--c-cream);
  background: rgba(250, 244, 232, 0.1);
}

/* --- Bannière "hors saison" ------------------------------------------ */
.season-banner {
  background: var(--c-sand);
  border-left: 4px solid var(--c-terracotta);
  padding: 16px 20px;
  border-radius: 10px;
  margin: 0 auto 32px;
  max-width: 720px;
  font-size: 0.95rem;
  color: var(--c-ink);
}
.season-banner strong { color: var(--c-terracotta-2); }

/* =========================================================================
   CALENDRIER MENSUEL + RÉSA (fusion planning + booking)
   ========================================================================= */
.booking-wide {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 4vw, 48px);
  background: var(--c-cream);
  border: 1px solid rgba(29, 44, 60, 0.08);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 48px);
  box-shadow: var(--shadow-soft);
}
@media (max-width: 900px) {
  .booking-wide { grid-template-columns: 1fr; }
}

/* Calendrier */
.calendar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 0 6px;
}
.calendar-title {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--c-ink);
  text-transform: capitalize;
  letter-spacing: -0.01em;
}
.calendar-nav {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(29, 44, 60, 0.15);
  background: var(--c-cream);
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--c-ink);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.calendar-nav:hover:not(:disabled) {
  background: var(--c-ink);
  color: var(--c-cream);
  border-color: var(--c-ink);
}
.calendar-nav:disabled { opacity: 0.3; cursor: not-allowed; }

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-ink-soft);
  padding: 6px 0;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-day {
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 4px;
  border: 1.5px solid transparent;
  border-radius: 10px;
  font-family: var(--f-body);
  font-size: 0.95rem;
  color: var(--c-ink);
  background: transparent;
  cursor: default;
  transition: all 0.2s var(--ease);
  position: relative;
}
.cal-day.empty { visibility: hidden; }
.cal-day.other { color: rgba(29, 44, 60, 0.25); }
.cal-day.today { font-weight: 700; }
.cal-day.today::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1.5px dashed rgba(29, 44, 60, 0.2);
  border-radius: 8px;
  pointer-events: none;
}

/* États : pas de cours (jours normaux) */
.cal-day.no-session {
  color: var(--c-ink-soft);
}

/* États : session disponible */
.cal-day.available {
  background: var(--c-sand);
  cursor: pointer;
  font-weight: 600;
}
.cal-day.available:hover {
  background: #F5D9A8;
  border-color: var(--c-terracotta);
  transform: translateY(-1px);
}
.cal-day.available .seats-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-sage);
}

/* États : quelques places (≤ 2) */
.cal-day.almost {
  background: #FBE8D5;
  cursor: pointer;
  font-weight: 600;
}
.cal-day.almost:hover {
  background: #F8D9B8;
  border-color: var(--c-terracotta);
  transform: translateY(-1px);
}
.cal-day.almost .seats-dot {
  background: var(--c-terracotta);
}

/* États : complet */
.cal-day.full {
  background: rgba(29, 44, 60, 0.06);
  color: rgba(29, 44, 60, 0.4);
  cursor: not-allowed;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}
.cal-day.full .seats-dot {
  background: rgba(29, 44, 60, 0.3);
}

/* État : sélectionné */
.cal-day.selected {
  background: var(--c-terracotta);
  color: var(--c-cream);
  border-color: var(--c-terracotta);
  font-weight: 700;
  box-shadow: 0 6px 16px -6px rgba(198, 97, 47, 0.55);
}
.cal-day.selected .seats-dot {
  background: var(--c-cream);
}

.seats-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: transparent;
}

/* Légende */
.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 12px;
  margin-top: 8px;
  border-top: 1px dashed rgba(29, 44, 60, 0.12);
  font-size: 0.78rem;
  color: var(--c-ink-soft);
}
.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.calendar-legend i {
  width: 14px; height: 14px;
  border-radius: 4px;
  display: inline-block;
}
.calendar-legend .l-available { background: var(--c-sand); }
.calendar-legend .l-almost    { background: #FBE8D5; }
.calendar-legend .l-full      { background: rgba(29, 44, 60, 0.15); }
.calendar-legend .l-none      { background: transparent; border: 1.5px solid rgba(29, 44, 60, 0.15); }

/* Formulaire à droite du calendrier */
.booking-selected {
  background: var(--c-sand);
  border-radius: var(--radius-m);
  padding: 20px 22px;
  margin-bottom: 8px;
  transition: background 0.3s;
}
.booking-selected.has-date {
  background: var(--c-ink);
  color: var(--c-cream);
}
.booking-selected-label {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.65;
  margin-bottom: 4px;
}
.booking-selected.has-date .booking-selected-label {
  color: var(--c-sand);
  opacity: 1;
}
.booking-selected-date {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.2;
}
.booking-selected-hint {
  font-size: 0.85rem;
  color: var(--c-ink-soft);
  margin-top: 2px;
}
.booking-selected.has-date .booking-selected-hint {
  color: rgba(250, 244, 232, 0.75);
}

/* Nouveau look summary */
.booking-summary {
  background: var(--c-cream);
  border: 1px solid rgba(29, 44, 60, 0.08);
  border-radius: var(--radius-m);
  padding: 16px 18px;
  font-size: 0.92rem;
  margin-top: 4px;
}
.booking-summary strong {
  font-family: var(--f-display);
  font-size: 1.3rem;
  color: var(--c-terracotta);
}


/* =========================================================================
   ANIMATIONS v3 — Pack premium
   - Reveal staggered du hero
   - Text-reveal H1 (masque)
   - Ken Burns sur illustration
   - Soleil pulsant
   - Parallax soleil hero
   - Cascade calendrier
   - Transition mois calendrier
   - Curseur custom
   ========================================================================= */

/* --- Hero : reveal en cascade ----------------------------------------
   Chaque élément .reveal du hero apparaît avec un léger délai
   Appliqué via nth-child dans le .hero-copy
----------------------------------------------------------------------- */
.hero-copy > .reveal:nth-child(1) { transition-delay: 0.05s; }
.hero-copy > .reveal:nth-child(2) { transition-delay: 0.18s; }
.hero-copy > .reveal:nth-child(3) { transition-delay: 0.35s; }
.hero-copy > .reveal:nth-child(4) { transition-delay: 0.50s; }
.hero-copy > .reveal:nth-child(5) { transition-delay: 0.62s; }

/* --- Text-reveal pour le H1 du hero ----------------------------------
   Le JS split le H1 en <span class="word-mask"><span class="word">...</span></span>
   Chaque mot remonte d'un masque avec un petit délai.
----------------------------------------------------------------------- */
.reveal-words .word-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 1.15; /* laisse respirer les descendantes g, p, j */
  padding-bottom: 0.08em;
}
.reveal-words .word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.9s var(--ease), opacity 0.6s ease;
  will-change: transform, opacity;
}
.reveal-words.is-visible .word {
  transform: translateY(0);
  opacity: 1;
}
/* Délais progressifs entre mots (applique à 20 mots max) */
.reveal-words.is-visible .word:nth-child(1)  { transition-delay: 0.00s; }
.reveal-words.is-visible .word:nth-child(2)  { transition-delay: 0.07s; }
.reveal-words.is-visible .word:nth-child(3)  { transition-delay: 0.14s; }
.reveal-words.is-visible .word:nth-child(4)  { transition-delay: 0.21s; }
.reveal-words.is-visible .word:nth-child(5)  { transition-delay: 0.28s; }
.reveal-words.is-visible .word:nth-child(6)  { transition-delay: 0.35s; }
.reveal-words.is-visible .word:nth-child(7)  { transition-delay: 0.42s; }
.reveal-words.is-visible .word:nth-child(8)  { transition-delay: 0.49s; }
.reveal-words.is-visible .word:nth-child(9)  { transition-delay: 0.56s; }
.reveal-words.is-visible .word:nth-child(10) { transition-delay: 0.63s; }
.reveal-words.is-visible .word:nth-child(11) { transition-delay: 0.70s; }
.reveal-words.is-visible .word:nth-child(12) { transition-delay: 0.77s; }

/* Conserver le style em/strong dans les mots */
.reveal-words .word em { font-style: italic; font-weight: 300; color: var(--c-terracotta); }
.reveal-words .word strong { font-weight: 500; }

/* --- Illustration hero : Ken Burns + léger flottement --------------- */
@keyframes kenBurnsHero {
  0%, 100% { transform: translateY(40px) rotate(2deg) scale(1); }
  50%      { transform: translateY(34px) rotate(1.5deg) scale(1.03); }
}
@keyframes floatHero {
  0%, 100% { transform: translateY(20px); }
  50%      { transform: translateY(14px); }
}
@media (min-width: 901px) {
  .hero-art {
    animation: kenBurnsHero 14s ease-in-out infinite;
  }
  .hero-art:hover {
    animation-play-state: paused;
  }
}
@media (max-width: 900px) {
  .hero-art {
    animation: floatHero 7s ease-in-out infinite;
  }
}

/* --- Soleil de l'illustration : halo pulsant ----------------------- */
@keyframes sunPulse {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(1.08); }
}
.hero-deco-sun {
  animation: sunPulse 6s ease-in-out infinite;
  transform-origin: center;
}

/* --- Parallax léger sur le soleil (piloté par JS) ------------------ */
.hero-deco-sun { will-change: transform; }

/* --- Micro-bounce boutons amélioré --------------------------------- */
.btn {
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 5px; height: 5px;
  background: rgba(255, 255, 255, 0.45);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%, -50%);
  transform-origin: 50% 50%;
  pointer-events: none;
}
.btn:active::after {
  animation: btnRipple 0.55s ease-out;
}
@keyframes btnRipple {
  0%   { transform: scale(0, 0) translate(-50%, -50%); opacity: 0.5; }
  100% { transform: scale(30, 30) translate(-50%, -50%); opacity: 0; }
}

/* --- Cascade d'apparition du calendrier ---------------------------- */
.cal-day.in-anim {
  animation: calDayIn 0.5s var(--ease) backwards;
}
@keyframes calDayIn {
  from { opacity: 0; transform: translateY(8px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* --- Transition de mois du calendrier (signature #3) -------------- */
.calendar-grid {
  position: relative;
}
.calendar-grid.slide-out-left {
  animation: slideOutLeft 0.25s var(--ease) forwards;
}
.calendar-grid.slide-out-right {
  animation: slideOutRight 0.25s var(--ease) forwards;
}
.calendar-grid.slide-in-left {
  animation: slideInLeft 0.35s var(--ease);
}
.calendar-grid.slide-in-right {
  animation: slideInRight 0.35s var(--ease);
}
@keyframes slideOutLeft {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-24px); }
}
@keyframes slideOutRight {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(24px); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}
.calendar-title {
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.calendar-title.fading {
  opacity: 0;
  transform: translateY(-4px);
}

/* --- Curseur personnalisé (signature #1) --------------------------- */
/* Désactivé sur tactile + petits écrans */
@media (hover: hover) and (pointer: fine) {
  .cursor-dot, .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: normal;
    will-change: transform;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .cursor-dot.active, .cursor-ring.active { opacity: 1; }
  .cursor-dot {
    width: 6px; height: 6px;
    background: var(--c-terracotta);
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }
  .cursor-ring {
    width: 34px; height: 34px;
    border: 1.5px solid var(--c-terracotta);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s, width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s, border-color 0.25s;
  }
  .cursor-ring.hovering {
    width: 52px; height: 52px;
    background: rgba(215, 122, 74, 0.15);
    border-color: var(--c-terracotta-2);
  }
  .cursor-ring.clicking {
    width: 28px; height: 28px;
    background: var(--c-terracotta);
  }
  /* Masquer le curseur natif sur les zones interactives pour laisser voir le custom */
  body.has-custom-cursor {
    cursor: none;
  }
  body.has-custom-cursor a,
  body.has-custom-cursor button,
  body.has-custom-cursor input,
  body.has-custom-cursor textarea,
  body.has-custom-cursor select,
  body.has-custom-cursor .cal-day {
    cursor: none;
  }
  /* Sauf dans les zones texte où on veut le curseur I classique */
  body.has-custom-cursor input[type="text"],
  body.has-custom-cursor input[type="email"],
  body.has-custom-cursor input[type="tel"],
  body.has-custom-cursor textarea {
    cursor: text;
  }
}

/* --- Paragraphe SEO discret ---------------------------------------- */
.seo-paragraph {
  max-width: 820px;
  margin: 60px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(29, 44, 60, 0.08);
}
.seo-paragraph p {
  text-align: center;
  color: var(--c-ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}
.seo-paragraph strong { color: var(--c-ink); font-weight: 600; }

/* --- Respect prefers-reduced-motion : désactive TOUT -------------- */
@media (prefers-reduced-motion: reduce) {
  .hero-art { animation: none !important; }
  .hero-deco-sun { animation: none !important; }
  .reveal-words .word { transform: none !important; opacity: 1 !important; transition: none !important; }
  .cal-day.in-anim { animation: none !important; }
  .calendar-grid.slide-out-left,
  .calendar-grid.slide-out-right,
  .calendar-grid.slide-in-left,
  .calendar-grid.slide-in-right { animation: none !important; }
  .cursor-dot, .cursor-ring { display: none !important; }
  body.has-custom-cursor, body.has-custom-cursor * { cursor: auto !important; }
}


/* =========================================================================
   PHOTOS DU LIEU (v5) — intégration contextuelle
   ========================================================================= */


/* --- Photo unique dans la section "Le lieu" (colonne gauche) --- */
.lieu-photo-single {
  margin: 0;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: 0 24px 50px -22px rgba(0, 0, 0, 0.45);
  aspect-ratio: 4 / 5;
  background: var(--c-ink);
}
.lieu-photo-single picture,
.lieu-photo-single img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 860px) {
  .lieu-photo-single { aspect-ratio: 4 / 3; max-height: 420px; }
}


/* =========================================================================
   MOSAÏQUE PHOTOS — desktop grid asymétrique + mobile carrousel snap
   ========================================================================= */

/* Wrapper commun */
.mosaique-wrap {
  margin: clamp(48px, 7vw, 80px) auto 0;
  max-width: 1200px;
  position: relative;
}

/* === DESKTOP : grille mosaïque 4 colonnes avec photos hautes aux extrémités === */
.mosaique {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}

.mosaique-item {
  margin: 0;
  border-radius: var(--radius-m);
  overflow: hidden;
  background: var(--c-ink);
  box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.4);
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.mosaique-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 50px -22px rgba(0, 0, 0, 0.55);
}
.mosaique-item picture,
.mosaique-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tailles : tall = haute (2 lignes), square = simple (1 ligne) */
.m-tall   { grid-row: span 2; grid-column: span 1; }
.m-square { grid-row: span 1; grid-column: span 1; }
.m-wide   { grid-row: span 1; grid-column: span 2; } /* gardée pour compat */

/* Légende au survol */
.m-cap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(29, 44, 60, 0.78) 0%, rgba(29, 44, 60, 0) 55%);
  color: var(--c-cream);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.3;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}
.mosaique-item:hover .m-cap { opacity: 1; }

/* Indicateurs (cachés en desktop) */
.mosaique-dots {
  display: none;
}

/* === TABLETTE : 3 colonnes, ratios un peu réduits === */
@media (max-width: 980px) and (min-width: 721px) {
  .mosaique {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 160px;
  }
  .m-tall   { grid-row: span 3; grid-column: span 1; }
  .m-wide   { grid-row: span 2; grid-column: span 2; }
  .m-square { grid-row: span 2; grid-column: span 1; }
}

/* === MOBILE : carrousel horizontal avec snap === */
@media (max-width: 720px) {
  .mosaique-wrap {
    margin-left: calc(var(--gutter) * -1);
    margin-right: calc(var(--gutter) * -1);
  }

  .mosaique {
    display: flex;
    grid-template-columns: none;
    grid-auto-rows: auto;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 var(--gutter);
    padding: 8px var(--gutter) 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }
  .mosaique::-webkit-scrollbar { display: none; } /* Chrome/Safari */

  .mosaique-item,
  .m-tall, .m-wide, .m-square {
    flex: 0 0 82%;
    grid-row: auto;
    grid-column: auto;
    aspect-ratio: 4 / 5;
    height: auto;
    max-width: 320px;
    scroll-snap-align: center;
  }

  /* Légende toujours visible en mobile (pas de hover) */
  .m-cap {
    opacity: 1;
    background: linear-gradient(to top, rgba(29, 44, 60, 0.85) 0%, rgba(29, 44, 60, 0) 45%);
    font-size: 0.85rem;
    padding: 16px;
  }

  /* Indicateurs visibles */
  .mosaique-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    padding: 0 var(--gutter);
  }
  .mosaique-dots .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(29, 44, 60, 0.18);
    transition: all 0.3s ease;
  }
  .mosaique-dots .dot.active {
    background: var(--c-terracotta);
    width: 22px;
    border-radius: 4px;
  }
}
