@import url("../../twentytwentyfive/style.css");

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --color-rose:         #D4637A;
  --color-rose-deep:    #C5587C;
  --color-rose-light:   #F2B8C6;
  --color-rose-pale:    #FFF0F5;
  --color-rose-muted:   #E8A4B4;
  --color-sage:         #4A8C7B;
  --color-sage-mid:     #6BAE9C;
  --color-sage-light:   #A8D4CB;
  --color-sage-pale:    #F0F7F5;
  --color-cream:        #FDF6F0;
  --color-cream-card:   #FFFBF7;
  --color-warm-100:     #F5EDE4;
  --color-warm-200:     #E8DDD4;
  --color-warm-500:     #6B5E54;
  --color-warm-700:     #4A3F38;
  --color-ink:          #1A1A2E;
  --font-display:       'Fraunces', Georgia, serif;
  --font-body:          'DM Sans', system-ui, sans-serif;
  --ease-snap:          cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:          cubic-bezier(0.22, 1, 0.36, 1);
  --radius-md:          12px;
  --radius-lg:          20px;
  --radius-xl:          28px;
  --radius-pill:        999px;
  --shadow-sm:          0 2px 8px rgba(26,26,46,0.08);
  --shadow-md:          0 6px 24px rgba(26,26,46,0.10);
  --shadow-lg:          0 16px 48px rgba(26,26,46,0.12);
  --shadow-rose:        0 8px 32px rgba(212,99,122,0.22);
  /* Section padding — overridden at larger breakpoints */
  --section-pad:        3.5rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 72px; }
body {
  font-family: var(--font-body);
  background: var(--color-cream);
  color: var(--color-ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* Reserve space for mobile sticky CTA */
  padding-bottom: 80px;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  /* État par défaut : transparent sur le hero */
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease;
}
/* État scrollé : fond rosé clair, identique au style 2e image */
.nav.scrolled {
  background: var(--color-rose-pale);
  border-bottom-color: rgba(212,99,122,0.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Padding vertical minimal : la hauteur est dictée par le logo 125px */
  padding: 4px 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}
.nav-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
/* Logo texte : visible sur mobile, caché sur desktop où le logo 125px suffit */
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  font-style: italic;
  color: #fff;
  line-height: 1;
  transition: color 0.4s ease;
}
.nav.scrolled .nav-logo-text { color: var(--color-rose-deep); }

.nav-links {
  display: none;
  gap: 2rem;
  list-style: none;
}
/* Liens : blancs sur hero, warm-700 après scroll */
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: #fff;
  transform: scaleX(0);
  transition: transform 0.25s var(--ease-snap), background 0.4s;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav.scrolled .nav-links a { color: var(--color-warm-700); }
.nav.scrolled .nav-links a:hover { color: var(--color-rose-deep); }
.nav.scrolled .nav-links a::after { background: var(--color-rose-deep); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-family: var(--font-body); font-weight: 600;
  border: none; cursor: pointer; border-radius: var(--radius-pill);
  transition: all 0.3s var(--ease-snap); position: relative; overflow: hidden; white-space: nowrap;
}
.btn-primary {
  background: var(--color-rose-deep); color: #fff;
  padding: 11px 26px; font-size: 0.875rem;
  box-shadow: var(--shadow-rose);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(212,99,122,0.35); }
.btn-primary:active { transform: scale(0.97); }
.nav-cta { display: flex; gap: 0.75rem; align-items: center; }
/* Hamburger : blanc sur hero, warm-700 après scroll */
.nav-hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 14px 11px; background: none; border: none; }
.nav-hamburger span { width: 22px; height: 2px; border-radius: 2px; background: rgba(255,255,255,0.85); transition: background 0.4s; }
.nav.scrolled .nav-hamburger span { background: var(--color-warm-700); }

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 600;
  padding: 0.5rem 1.25rem;
  background: var(--color-ink);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 var(--radius-md) 0;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ============================================================
   HERO — Minimal Apple
   ============================================================ */
.hero {
  position: relative;
  min-height: 50svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--color-ink);
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: bottom 60%;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,26,46,0.92) 0%,
    rgba(26,26,46,0.38) 40%,
    rgba(26,26,46,0.60) 100%
  );
}
.hero-bottom {
  position: relative;
  z-index: 1;
  /* Base mobile : nav ≈ 80px → 6rem de clearance suffit */
  padding: 6rem 1.25rem 3.5rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-tagline {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.875rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s 0.2s var(--ease-soft) forwards;
}
.hero-badges-row {
  display: flex;
  margin-bottom: 1.75rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s 0.54s var(--ease-soft) forwards;
}
.hero-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.8125rem; font-weight: 500;
  color: rgba(255,255,255,0.80);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 6px 13px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background 0.2s var(--ease-snap), border-color 0.2s, color 0.2s;
  cursor: pointer;
}
.hero-badge:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.36);
  color: #fff;
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 9vw, 6rem);
  font-weight: 900;
  font-style: italic;
  color: #fff;
  line-height: 1.0;
  margin-bottom: 1.5rem;
  text-wrap: balance;
  opacity: 0;
  transform: translateY(32px);
  filter: blur(6px);
  animation: fadeUpBlur 0.9s 0.38s var(--ease-soft) forwards;
}
.hero-h1 em { color: var(--color-rose-light); font-style: italic; }

/* ── CTA wrap — toujours visible au-dessus de la ligne de flottaison ── */
.hero-cta-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s 0.68s var(--ease-soft) forwards;
}

/* Bouton primaire — rose plein */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  background: var(--color-rose-deep);
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(197,88,124,0.40);
  transition: all 0.3s var(--ease-snap);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(197,88,124,0.55);
}
.btn-hero-primary:active { transform: scale(0.97); }

/* Bouton secondaire — glass foncé, même hauteur */
.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.22);
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s var(--ease-snap);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.40);
  color: #fff;
}

.hero-scroll-hint {
  position: absolute; bottom: 2rem; right: 1.5rem; z-index: 1;
  /* Hidden on mobile to save space */
  display: none;
  flex-direction: column; align-items: center; gap: 6px;
  font-size: 0.625rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  opacity: 0; animation: fadeUp 0.6s 1.1s ease forwards;
}
.hero-scroll-line {
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: scrollLine 2.2s ease-in-out 1.5s infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUpBlur {
  from { opacity: 0; transform: translateY(32px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0);   filter: blur(0px); }
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,0.35); }
  50%      { box-shadow: 0 6px 20px rgba(37,211,102,0.35), 0 0 0 10px rgba(37,211,102,0.10); }
}


/* ============================================================
   SECTION LABELS
   ============================================================ */
.section-eyebrow {
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--color-rose-deep);
  margin-bottom: 0.75rem;
}
.section-eyebrow-sage { color: var(--color-sage); }
.section-eyebrow-muted { color: var(--color-warm-500); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--color-ink);
  line-height: 1.12; margin-bottom: 1rem;
  text-wrap: balance;
}
.section-title em { font-style: italic; color: var(--color-rose-deep); }
.testimonials-section .section-title em,
.practical-section .section-title em,
.blog-section .section-title em { color: var(--color-sage); }
.section-sub {
  font-size: 1.0625rem; color: var(--color-warm-500);
  line-height: 1.75; max-width: 540px;
  text-wrap: pretty;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  padding: var(--section-pad) 0;
  background: var(--color-cream);
  position: relative;
  overflow: hidden;
}
.services-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,99,122,0.06) 0%, transparent 70%);
  top: -150px; right: -100px;
  pointer-events: none;
}
.services-header {
  display: flex; align-items: flex-start;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.card-service {
  background: var(--color-cream-card);
  border: 1px solid var(--color-warm-200);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column; gap: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer; position: relative; overflow: hidden;
}
.services-grid .card-service:hover { transform: translateY(-6px) scale(1.03); box-shadow: 0 28px 64px rgba(197,88,124,0.22); z-index: 1; }
#service-balade:hover { box-shadow: 0 20px 48px rgba(74,140,123,0.22); }

.card-icon {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-snap);
}
.card-icon svg { width: 26px; height: 26px; }
.card-service:hover .card-icon { transform: scale(1.12) rotate(-6deg); }
.card-icon-rose { background: var(--color-rose-pale); }
.card-icon-sage { background: var(--color-sage-pale); }
.card-icon-ink  { background: rgba(26,26,46,0.07); }
.card-time {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.6875rem; font-weight: 600;
  color: var(--color-warm-500); background: var(--color-warm-100);
  padding: 3px 10px; border-radius: var(--radius-pill); width: fit-content;
}
.card-title {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700;
  color: var(--color-ink); line-height: 1.28;
}
.card-desc {
  font-size: 0.875rem; color: var(--color-warm-500);
  line-height: 1.75; flex: 1;
}
.card-pricing {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 1.1rem 0.875rem; border-radius: var(--radius-md);
  background: var(--color-rose-pale);
  text-align: center;
}
.card-price-num {
  font-family: var(--font-display);
  font-size: 1.75rem; font-weight: 700;
  color: var(--color-rose-deep); line-height: 1;
}
.card-price-unit {
  font-size: 0.875rem; font-weight: 400;
  color: var(--color-warm-500); margin-left: 2px;
}
.card-price-note {
  font-size: 0.6875rem; color: var(--color-warm-500); margin-top: 2px;
}
.pricing-row { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.pricing-label {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.75rem; font-weight: 600;
}
.pricing-label-sub  { color: var(--color-rose-deep); }
.pricing-label-norm { color: var(--color-warm-500); }
.dot-sub  { width: 7px; height: 7px; border-radius: 50%; background: var(--color-rose-deep); }
.dot-norm { width: 7px; height: 7px; border-radius: 50%; background: var(--color-warm-500); }
.price-sub  { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--color-rose-deep); line-height: 1; }
.price-norm { font-size: 1.05rem; font-weight: 600; color: var(--color-warm-500); text-decoration: line-through; text-decoration-color: var(--color-rose-muted); line-height: 1; }
.price-unit { font-family: var(--font-body); font-size: 0.6875rem; font-weight: 400; }
.price-sep  { height: 1px; background: rgba(212,99,122,0.15); margin: 1px 0; }
.price-savings { font-size: 0.6875rem; font-weight: 700; color: var(--color-sage); background: var(--color-sage-pale); padding: 2px 8px; border-radius: var(--radius-pill); text-align: center; margin-top: 2px; }

/* Double-prix : modificateurs scopés aux cartes service */
.card-pricing--dual { align-items: stretch; gap: 6px; }

/* Variante vert menthe — Garde la nuit uniquement */
.card-pricing--sage   { background: var(--color-sage-pale); }
.dot-sage             { width: 7px; height: 7px; border-radius: 50%; background: var(--color-sage); }
.pricing-label-sage   { color: var(--color-sage); }
.price-sub-sage       { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--color-sage); line-height: 1; }
.price-sep-sage       { height: 1px; background: rgba(74,140,123,0.15); margin: 1px 0; }
.card-service .btn-sm {
  font-size: 0.8125rem; padding: 9px 20px;
  border-radius: var(--radius-pill);
}
.card-header {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.card-footer {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: auto;
  padding-top: 0.75rem;
}


/* ── Alignement cross-cartes ─────────────────────────────── */
/* Tablet (2 colonnes) : min-height sur le titre */
@media (min-width: 480px) and (max-width: 1023px) {
  .card-title { min-height: 3rem; }
}
/* Desktop (5 colonnes) : subgrid pour alignement parfait */
@media (min-width: 1024px) {
  @supports (grid-template-rows: subgrid) {
    .services-grid {
      grid-template-rows: auto 1fr auto;
      row-gap: 1.75rem;
    }
    .card-service {
      grid-row: span 3;
      display: grid;
      grid-template-rows: subgrid;
      gap: 0;
    }
  }
}

/* ============================================================
   FOUNDERS / ABOUT
   ============================================================ */
.about-section {
  padding: var(--section-pad) 0;
  background: var(--color-ink);
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,99,122,0.12) 0%, transparent 70%);
  top: -200px; right: -150px; pointer-events: none;
}
.about-section::after {
  content: '';
  position: absolute; width: 450px; height: 450px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,140,123,0.10) 0%, transparent 70%);
  bottom: -120px; left: 5%; pointer-events: none;
}
.fc-hero {
  --fc-bg: 26,26,46;
  position: relative; border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgb(var(--fc-bg));
  /* Mobile: stacked (video on top, content below) */
  display: flex;
  flex-direction: column;
}
.fc-hero-video-wrap {
  /* Mobile: natural flow, fixed height — réduit pour ne pas écraser la mise en page */
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
}
.fc-hero-video-wrap video {
  /* Pillarboxing encodé dans le fichier : scale(2) pousse les bandes noires hors du overflow:hidden */
  position: absolute; top: 50%; left: 50%;
  width: 100%; height: 100%;
  transform: translate(-50%, -50%) scale(2);
  transform-origin: center center;
  object-fit: cover;
  object-position: center center;
}
.fc-hero-gradient {
  position: absolute; inset: 0;
  /* Mobile: fade from bottom so content below is readable */
  background: linear-gradient(
    to bottom,
    rgba(var(--fc-bg),0.0)  0%,
    rgba(var(--fc-bg),0.85) 85%,
    rgba(var(--fc-bg),1.0)  100%
  );
  pointer-events: none;
}
.fc-hero-content {
  /* Mobile: relative flow below video */
  position: relative;
  width: 100%;
  display: flex; flex-direction: column;
  justify-content: flex-start;
  padding: 1.5rem 1.25rem 2rem;
}
.fc-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--color-rose-light);
  background: rgba(212,99,122,0.18); border: 1px solid rgba(212,99,122,0.35);
  padding: 5px 14px; border-radius: var(--radius-pill);
  margin-bottom: 1rem; width: fit-content;
}
.fc-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 900; font-style: italic; color: #fff;
  line-height: 1.1; margin-bottom: 0.75rem;
}
.fc-title em { font-style: italic; color: var(--color-rose-light); }
.fc-sub {
  font-size: 1rem; color: rgba(255,255,255,0.58);
  margin-bottom: 2rem; line-height: 1.75; max-width: 400px;
}
.fc-avatars { display: flex; align-items: center; gap: 1rem; }
.fc-avatar-stack { display: flex; }
.fc-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff; font-size: 0.9rem;
  padding: 0; background: none; cursor: pointer;
}
.fc-avatar + .fc-avatar { margin-left: -12px; }
.fc-avatar-label { font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,0.82); }

/* ── Founder avatar interactivity ───────────────────────── */
.fc-avatar-wrap {
  position: relative;
  display: inline-block;
}
.fc-avatar-wrap + .fc-avatar-wrap { margin-left: -12px; }
.fc-avatar-wrap .fc-avatar {
  cursor: pointer;
  transition: transform 0.22s var(--ease-snap), box-shadow 0.22s;
}
.fc-avatar-wrap .fc-avatar:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* ── Founder bio modals ──────────────────────────────────── */
.founder-backdrop {
  position: fixed; inset: 0; z-index: 590;
  background: rgba(50,38,32,0.52);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.founder-backdrop.is-open { opacity: 1; }

.founder-modal {
  position: fixed;
  top: 50%; left: 50%; z-index: 595;
  transform: translate(-50%, -50%) scale(0.94);
  width: min(660px, calc(100vw - 1.5rem));
  border-radius: 24px;
  overflow: hidden;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease-snap), transform 0.3s var(--ease-snap);
  box-shadow: 0 24px 80px rgba(50,38,32,0.28), 0 0 0 1px var(--color-warm-200);
}
.founder-modal.is-open {
  opacity: 1; pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.founder-modal-inner {
  display: flex;
  background: var(--color-cream-card);
  /* Fixed height guarantees both modals are identical in size */
  height: min(700px, calc(100svh - 3rem));
}

/* Portrait column */
.founder-modal-portrait {
  width: 255px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--color-warm-100);
  position: relative;
  /* Height driven by .founder-modal-inner fixed height */
}
/* Vertical accent strip on inner edge */
.founder-modal-portrait::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 1px;
  background: var(--color-warm-200);
}
.founder-modal-portrait img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.founder-modal-sarah .founder-modal-portrait img { object-position: 20% center; }
.founder-modal-hanna  .founder-modal-portrait img { object-position: 77% center; }

/* Content column */
.founder-modal-content {
  flex: 1;
  padding: 1.5rem 1.5rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--color-cream-card);
  overflow: hidden;
}

/* Close button */
.founder-modal-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--color-warm-100);
  border: 1px solid var(--color-warm-200);
  color: var(--color-warm-500);
  font-size: 1rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.founder-modal-close:hover {
  background: var(--color-warm-200);
  color: var(--color-warm-700);
}

/* Name */
.founder-modal-name {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700; font-style: italic;
  line-height: 1.05; margin-bottom: 5px; padding-right: 2.5rem;
}
.founder-modal-sarah .founder-modal-name { color: var(--color-rose-deep); }
.founder-modal-hanna  .founder-modal-name { color: var(--color-sage); }

/* Role */
.founder-modal-role {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-warm-500); margin-bottom: 1.1rem;
}

/* Divider */
.founder-modal-divider {
  height: 1px; background: var(--color-warm-200);
  margin-bottom: 1.1rem; flex-shrink: 0;
}

/* Bio */
.founder-modal-bio {
  display: flex; flex-direction: column; gap: 0.5rem;
  flex: 1;
}
.founder-modal-bio p {
  font-size: 0.875rem;
  color: var(--color-warm-700);
  line-height: 1.68; margin: 0;
}

/* Signature */
.founder-modal-signature {
  font-family: 'Dancing Script', cursive;
  font-size: 1.9rem; font-weight: 600;
  line-height: 1;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-warm-200);
  text-align: right;
}
.founder-modal-sarah .founder-modal-signature { color: var(--color-rose-deep); }
.founder-modal-hanna  .founder-modal-signature { color: var(--color-sage); }

/* Premier paragraphe plus affirmé */
.founder-modal-bio p:first-child {
  font-weight: 500;
}

/* ── C : Cascade d'entrée ────────────────────────────────── */
.founder-modal-name,
.founder-modal-role,
.founder-modal-divider,
.founder-modal-bio p,
.founder-modal-signature {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.42s var(--ease-soft), transform 0.42s var(--ease-soft);
}

/* Délais progressifs à l'ouverture */
.founder-modal.is-open .founder-modal-name      { opacity:1; transform:none; transition-delay:0.08s; }
.founder-modal.is-open .founder-modal-role      { opacity:1; transform:none; transition-delay:0.14s; }
.founder-modal.is-open .founder-modal-divider   { opacity:1; transform:none; transition-delay:0.19s; }
.founder-modal.is-open .founder-modal-bio p:nth-child(1) { opacity:1; transform:none; transition-delay:0.26s; }
.founder-modal.is-open .founder-modal-bio p:nth-child(2) { opacity:1; transform:none; transition-delay:0.36s; }
.founder-modal.is-open .founder-modal-bio p:nth-child(3) { opacity:1; transform:none; transition-delay:0.46s; }
.founder-modal.is-open .founder-modal-bio p:nth-child(4) { opacity:1; transform:none; transition-delay:0.56s; }
.founder-modal.is-open .founder-modal-signature { opacity:1; transform:none; transition-delay:0.62s; }

/* Respect des préférences de mouvement réduit */
@media (prefers-reduced-motion: reduce) {
  .founder-modal-name,
  .founder-modal-role,
  .founder-modal-divider,
  .founder-modal-bio p,
  .founder-modal-signature {
    opacity: 1; transform: none; transition: none;
  }
}

/* Mobile: portrait on top, release fixed height */
@media (max-width: 560px) {
  .founder-modal-inner { flex-direction: column; height: auto; max-height: calc(100svh - 2rem); overflow-y: auto; }
  .founder-modal-portrait {
    width: 100%; min-height: 160px; max-height: 160px;
  }
  .founder-modal-portrait::after {
    top: auto; left: 0; right: 0; bottom: 0;
    width: auto; height: 1px;
  }
  .founder-modal-sarah .founder-modal-portrait img { object-position: 20% 40%; }
  .founder-modal-hanna  .founder-modal-portrait img { object-position: 77% 40%; }
  .founder-modal-content { padding: 1.25rem; }
  .founder-modal-name { font-size: 1.3rem; }
  .founder-modal-bio p { font-size: 0.78rem; }
}



/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding: var(--section-pad) 0;
  background: var(--color-sage-pale);
  position: relative;
}
.testimonials-section::after {
  content: '';
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,140,123,0.07) 0%, transparent 70%);
  bottom: -100px; right: 0; pointer-events: none;
}
.testimonials-header { text-align: center; margin-bottom: 2.5rem; }
.testimonials-header .section-sub { margin: 0 auto; }
.testimonials-grid {
  display: grid;
  /* 1 col on mobile */
  grid-template-columns: 1fr;
  gap: 1rem;
}
.card-testimonial {
  background: var(--color-cream-card);
  border: 1px solid var(--color-warm-200);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: transform 0.35s var(--ease-snap), border-color 0.35s;
}
.card-testimonial:hover { transform: translateY(-3px); border-color: var(--color-rose-light); }
.stars { display: flex; gap: 3px; }
.star { width: 15px; height: 15px; fill: #F5B731; }
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.05rem; font-style: italic;
  color: var(--color-ink); line-height: 1.55;
  position: relative; padding-top: 0.25rem;
}
.testimonial-quote::before {
  content: '"';
  font-size: 3.8rem; color: var(--color-rose-light);
  line-height: 1; position: absolute; top: -18px; left: -6px;
  font-family: var(--font-display); opacity: 0.55;
}
.testimonial-footer { display: flex; align-items: center; gap: 0.875rem; margin-top: auto; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--color-rose-light);
  background: var(--color-rose-pale);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--color-rose-deep); font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.875rem; color: var(--color-ink); }
.testimonial-dog  { font-size: 0.75rem; color: var(--color-warm-500); margin-top: 2px; }
.verified {
  margin-left: auto; display: flex; align-items: center; gap: 4px;
  font-size: 0.75rem; font-weight: 600; color: var(--color-sage);
}

/* ============================================================
   DS SLIDER — wrapper pour le slider custom témoignages
   Les styles de carte réutilisent .card-testimonial existant
   ============================================================ */
.ds-slider {
  position: relative;
  padding: 0 2.5rem; /* espace pour les flèches */
}
.ds-slider__track-wrap {
  overflow: hidden;
}
.ds-slider__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.55s var(--ease-snap);
  will-change: transform;
  align-items: stretch;
}

/* Carte — hérite de .card-testimonial, fixe la largeur flex */
.ds-slider__card {
  flex: 0 0 calc((100% - 3rem) / 3); /* 3 cartes avec 2 gaps de 1.5rem */
  min-width: 0;
  overflow: hidden; /* contient tout élément inattendu injecté dans la carte */
}

/* Zone texte : wrapping pour excerpt / full */
.ds-slider__quote-wrap { flex: 1; display: flex; flex-direction: column; }
.ds-slider__excerpt,
.ds-slider__full { margin: 0; }

/* "Lire la suite" */
.ds-slider__read-more {
  background: none; border: none; padding: 0; cursor: pointer;
  font-family: var(--font-body); font-size: 0.8125rem; font-weight: 600;
  color: var(--color-rose-deep); text-decoration: underline; text-underline-offset: 2px;
  display: block; margin-top: 0.5rem; text-align: left;
}

/* Forcer la visibilité du nom et de la date (héritages potentiellement conflictuels) */
.ds-slider__card .testimonial-name {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-ink);
  line-height: 1.3;
}
.ds-slider__card .testimonial-dog {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-warm-500);
  margin-top: 2px;
}

/* Flèches */
.ds-slider__btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%; border: none;
  background: var(--color-rose-deep); color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, opacity 0.2s;
  z-index: 2;
}
.ds-slider__btn svg { width: 18px; height: 18px; pointer-events: none; }
.ds-slider__btn:hover { background: var(--color-rose); }
.ds-slider__btn:disabled { opacity: 0.3; cursor: default; pointer-events: none; }
.ds-slider__prev { left: 0; }
.ds-slider__next { right: 0; }

/* Dots */
.ds-slider__dots {
  display: flex; justify-content: center; gap: 6px; margin-top: 2rem;
}
.ds-slider__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-warm-200); border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s; padding: 0;
}
.ds-slider__dot[aria-selected="true"] {
  background: var(--color-rose-deep); transform: scale(1.3);
}

/* Responsive */
@media (max-width: 900px) {
  .ds-slider__card { flex: 0 0 calc((100% - 1.5rem) / 2); }
}
@media (max-width: 580px) {
  .ds-slider { padding: 0 0 3.5rem; } /* dots descendent sous les cartes */
  .ds-slider__card { flex: 0 0 100%; }
  .ds-slider__btn { top: auto; bottom: 0; transform: none; }
  .ds-slider__prev { left: calc(50% - 48px); }
  .ds-slider__next { left: calc(50% + 8px); }
  .ds-slider__dots { margin-top: 1rem; }
}

/* ============================================================
   Overrides Trustindex — v13.3.1
   Apparence uniquement — ne pas toucher display/width/height des conteneurs slider
   !! Vérifier après chaque mise à jour du plugin Trustindex !!
   ============================================================ */

/* Fond/cadre widget */
.ti-widget,
.ti-widget-container {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* Carte */
.ti-widget .ti-review-item .ti-inner {
  background: var(--color-cream-card) !important;
  border: 1px solid var(--color-warm-200) !important;
  border-radius: 16px !important;
  box-shadow: var(--shadow-rose) !important;
  padding: 1.75rem !important;
  position: relative; /* ancre le guillemet ::before */
  transition: transform 0.35s var(--ease-snap), border-color 0.35s !important;
  /* Flex colonne sur .ti-inner (intérieur de la carte uniquement, pas le conteneur slider) */
  display: flex !important;
  flex-direction: column !important;
  gap: 0.875rem !important;
  min-height: 240px !important; /* garantit que margin-top:auto sur .ti-review-header a de l'effet */
}
.ti-widget .ti-review-item:hover .ti-inner {
  transform: translateY(-3px) !important;
  border-color: var(--color-rose-light) !important;
}

/* Guillemet décoratif — positionné juste avant le texte (estimé : padding + hauteur étoiles + gap) */
.ti-widget .ti-review-item .ti-inner::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 3.8rem;
  color: var(--color-rose-light);
  line-height: 1;
  position: absolute;
  top: 3rem;
  left: 1rem;
  opacity: 0.55;
  pointer-events: none;
}

/* Réordonnancement : étoiles → texte → lire plus → auteur en bas
   Fragile si le slider JS recalcule des hauteurs sur l'ordre DOM ;
   désactiver si le slider se comporte de façon inattendue */
.ti-widget .ti-stars          { order: 1 !important; }
.ti-widget .ti-review-content { order: 2 !important; }
.ti-widget .ti-read-more      { order: 2 !important; } /* reste après le texte */
.ti-widget .ti-review-header  { order: 3 !important; margin-top: auto !important; }

/* Étoiles — filtre CSS pour approximer #F5B731 depuis les étoiles Google (teinte approximative) */
.ti-widget .ti-star {
  width: 15px !important;
  height: 15px !important;
  filter: brightness(0) saturate(100%) invert(77%) sepia(55%) saturate(500%) hue-rotate(5deg) brightness(103%);
}
/* Badge vérifié → masqué */
.ti-widget .ti-verified-review {
  display: none !important;
}

/* Texte de l'avis — typo seulement ; ne pas toucher height/max-height (géré par Trustindex JS) */
.ti-widget .ti-review-text-container {
  font-family: var(--font-display) !important;
  font-style: italic !important;
  font-size: 1.05rem !important;
  color: var(--color-ink) !important;
  line-height: 1.55 !important;
}

/* "Lire la suite" */
.ti-widget .ti-read-more-active {
  font-family: var(--font-body) !important;
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
  color: var(--color-rose-deep) !important;
  text-decoration: underline !important;
  text-underline-offset: 2px;
  cursor: pointer;
}

/* Avatar : masquer la photo Google, afficher l'initiale en pastille rose */
.ti-widget .ti-profile-img {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  border: 2px solid var(--color-rose-light) !important;
  background: var(--color-rose-pale) !important; /* !important : écrase couleur inline Trustindex */
  background-image: none !important;             /* neutralise un éventuel background-image photo */
  color: var(--color-rose-deep) !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
}
/* Masquer la photo Google (img tag et background) */
.ti-widget .ti-profile-img img,
.ti-widget .ti-profile-img .ti-profile-img-inner {
  display: none !important;
}
/* Masquer le logo Google en coin */
.ti-widget .ti-platform-icon {
  display: none !important;
}

/* Nom */
.ti-widget .ti-name {
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  color: var(--color-ink) !important;
}

/* Date — substitut de la sous-ligne chien (abandonnée, données Google indisponibles) */
.ti-widget .ti-date {
  font-family: var(--font-body) !important;
  font-size: 0.75rem !important;
  color: var(--color-warm-500) !important;
}

/* Flèches du slider */
.ti-widget .ti-prev,
.ti-widget .ti-next {
  background: var(--color-rose-deep) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 50% !important;
  opacity: 1 !important;
}
.ti-widget .ti-prev:hover,
.ti-widget .ti-next:hover {
  background: var(--color-rose-light) !important;
}

/* Tooltip masqué */
.ti-widget .ti-tooltip {
  display: none !important;
}

/* ============================================================
   PRACTICAL INFO — La garde en pratique
   ============================================================ */
.practical-section {
  padding: var(--section-pad) 0;
  background: var(--color-rose-pale);
}
.practical-header { text-align: center; margin-bottom: 2.5rem; }
.practical-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.practical-card {
  background: var(--color-cream-card);
  border: 1px solid var(--color-warm-200);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.practical-card-hd { display: flex; align-items: center; gap: 0.875rem; }
.practical-card-ico {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.practical-card-ico-rose { background: var(--color-rose-pale); }
.practical-card-ico-sage { background: var(--color-sage-pale); }
.practical-card-ico-warm { background: var(--color-warm-100); }
.practical-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700;
  color: var(--color-ink); line-height: 1.2;
}
/* Location */
.practical-loc {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 1rem; font-weight: 600; color: var(--color-ink);
}
.practical-loc-tag {
  font-size: 0.75rem; font-weight: 500; color: var(--color-warm-500);
  background: var(--color-warm-100); padding: 2px 9px;
  border-radius: 999px; margin-left: 2px;
}
/* Shuttle */
.practical-shuttle-label { font-size: 0.8125rem; color: var(--color-warm-500); }
.practical-shuttle-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem; margin-top: 0.5rem;
}
.practical-shuttle-item {
  background: var(--color-warm-100); border-radius: 10px;
  padding: 0.625rem 0.5rem; text-align: center;
}
.practical-shuttle-item.featured { background: var(--color-rose-pale); }
.practical-shuttle-name {
  font-size: 0.6875rem; color: var(--color-warm-500);
  font-weight: 500; display: block; margin-bottom: 3px;
}
.practical-shuttle-item.featured .practical-shuttle-name { color: var(--color-rose-deep); }
.practical-shuttle-price {
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 700; color: var(--color-rose-deep); line-height: 1;
}
/* Checklist */
.practical-list { display: flex; flex-direction: column; gap: 0.625rem; list-style: none; }
.practical-list li {
  display: flex; gap: 0.625rem; align-items: flex-start;
  font-size: 0.9375rem; color: var(--color-warm-700); line-height: 1.55;
}
.practical-check {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--color-sage-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
/* Note */
.practical-note { font-size: 0.9375rem; color: var(--color-warm-700); line-height: 1.65; }
.practical-note strong { color: var(--color-ink); font-weight: 600; }
/* Payment rules */
.practical-rules { display: flex; flex-direction: column; gap: 0.875rem; }
.practical-rule { display: flex; gap: 0.875rem; align-items: flex-start; }
.practical-rule-dot {
  width: 8px; height: 8px; border-radius: 50%;
  flex-shrink: 0; margin-top: 7px;
}
.dot-sage  { background: var(--color-sage); }
.dot-rose  { background: var(--color-rose-deep); }
.dot-warm  { background: var(--color-warm-500); }
.practical-rule p { font-size: 0.9375rem; color: var(--color-warm-700); line-height: 1.55; margin: 0; }
.practical-rule p strong { color: var(--color-ink); font-weight: 600; }

/* ============================================================
   BLOG / ACTUS
   ============================================================ */
.blog-section {
  padding: var(--section-pad) 0;
  background: var(--color-cream);
}
.blog-header {
  display: flex; align-items: flex-start; flex-direction: column;
  margin-bottom: 1.75rem; gap: 0.75rem;
}
.blog-see-all {
  font-size: 0.875rem; font-weight: 600;
  color: var(--color-rose-deep);
  display: flex; align-items: center; gap: 6px;
  transition: gap 0.25s var(--ease-snap);
  cursor: pointer;
}
.blog-see-all:hover { gap: 10px; }
.blog-featured {
  display: grid; grid-template-columns: 1fr;
  border-radius: 16px; overflow: hidden;
  background: var(--color-cream-card);
  border: 1px solid var(--color-warm-200);
  margin-bottom: 1rem;
  transition: border-color 0.35s var(--ease-snap);
}
.blog-featured:hover { border-color: var(--color-rose-light); }
.blog-featured-img {
  overflow: hidden;
  /* Fixed height on mobile */
  height: 220px;
}
.blog-featured-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-soft);
}
.blog-featured:hover .blog-featured-img img { transform: scale(1.04); }
.blog-featured-body {
  padding: 1.5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.blog-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 0.875rem; }
.blog-date { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-warm-500); }
.blog-cat { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; padding: 3px 10px; border-radius: var(--radius-pill); }
.blog-cat-rose  { background: var(--color-rose-pale); color: var(--color-rose-deep); }
.blog-cat-sage  { background: var(--color-sage-pale); color: var(--color-sage); }
.blog-cat-cream { background: var(--color-warm-100); color: var(--color-warm-700); }
.blog-title {
  font-family: var(--font-display); font-weight: 700;
  color: var(--color-ink); line-height: 1.28;
}
.blog-featured-body .blog-title { font-size: clamp(1.4rem, 2.5vw, 2rem); margin-bottom: 0.6rem; }
.blog-excerpt { font-size: 0.9375rem; color: var(--color-warm-500); line-height: 1.75; }
.blog-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.875rem; font-weight: 600; color: var(--color-rose-deep);
  margin-top: 1.25rem; transition: gap 0.25s var(--ease-snap); cursor: pointer;
}
.blog-cta:hover { gap: 10px; }
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.blog-card {
  border-radius: 16px; overflow: hidden;
  background: var(--color-cream-card);
  border: 1px solid var(--color-warm-200);
  transition: border-color 0.3s, transform 0.3s var(--ease-snap); cursor: pointer;
}
.blog-card:hover { border-color: var(--color-rose-light); transform: translateY(-2px); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-soft);
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 1.25rem; }
.blog-card-body .blog-title { font-size: 1.05rem; margin-bottom: 0.4rem; }

/* Style Instagram Feed comme les cartes blog */
.sb-instagram-feed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.sbi_item {
  background: var(--color-cream-card);
  border: 1px solid var(--color-warm-200);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.35s, transform 0.35s;
}

.sbi_item:hover {
  border-color: var(--color-rose-light);
  transform: translateY(-2px);
}

.sbi_photo {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.sbi_caption {
  padding: 1.25rem;
  font-size: 0.875rem;
  color: var(--color-warm-700);
  line-height: 1.7;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  padding: var(--section-pad) 0;
  background: var(--color-cream);
}
.contact-minimal {
  position: relative; border-radius: var(--radius-xl);
  overflow: hidden; background: var(--color-ink);
  min-height: 600px; display: flex; flex-direction: column;
  justify-content: space-between;
}
.contact-minimal::before {
  content: '';
  position: absolute; width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,140,123,0.22) 0%, transparent 70%);
  top: -200px; right: -100px; pointer-events: none;
}
.contact-minimal::after {
  content: '';
  position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,99,122,0.10) 0%, transparent 65%);
  bottom: -120px; left: 3%; pointer-events: none;
}
.contact-head {
  position: relative; z-index: 1;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.75rem;
  padding: 1.5rem 1.25rem;
}
.contact-body {
  position: relative; z-index: 1;
  padding: 0.5rem 1.25rem 1.5rem;
  /* Mobile: single column */
  display: grid; grid-template-columns: 1fr;
  gap: 2rem; align-items: start;
}
.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 9vw, 4rem);
  font-weight: 900; font-style: italic; color: #fff;
  line-height: 1.0; margin-bottom: 1.5rem;
}
.contact-title em { color: var(--color-rose-light); }
.contact-wa {
  display: inline-flex; align-items: center; gap: 12px;
  color: #fff; font-size: 1rem; font-weight: 600; cursor: pointer;
}
.contact-wa-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 6px 20px rgba(37,211,102,0.35);
  transition: all 0.3s var(--ease-snap);
}
.contact-wa:hover .contact-wa-circle { transform: scale(1.08); box-shadow: 0 10px 28px rgba(37,211,102,0.5); }
.js-reveal .contact-minimal.visible .contact-wa-circle {
  animation: waPulse 1.8s var(--ease-soft) 0.6s 2;
}
.contact-form {
  display: flex; flex-direction: column; gap: 1.25rem;
  /* Mobile: separator on top */
  border-top: 1px solid rgba(74,140,123,0.20);
  padding-top: 1.75rem;
  border-left: none;
  padding-left: 0;
}
.contact-field { display: flex; flex-direction: column; gap: 6px; }
.contact-label { font-size: 0.8125rem; font-weight: 500; color: rgba(255,255,255,0.68); margin-bottom: 2px; }
.contact-input, .contact-textarea {
  font-family: var(--font-body); font-size: 1rem; color: #fff;
  background: transparent; border: none;
  border-bottom: 1px solid rgba(255,255,255,0.22);
  padding: 8px 0; outline: none; width: 100%;
  transition: border-color 0.2s, box-shadow 0.3s var(--ease-soft);
}
.contact-input::placeholder, .contact-textarea::placeholder { color: rgba(255,255,255,0.55); }
.contact-input:focus, .contact-textarea:focus {
  border-bottom-color: var(--color-rose-light);
  box-shadow: 0 1px 0 0 var(--color-rose-light), 0 4px 16px rgba(242,184,198,0.18);
}
.contact-textarea { resize: none; height: 60px; line-height: 1.55; }
.contact-select {
  font-family: var(--font-body); font-size: 1rem;
  color: rgba(255,255,255,0.55);
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'%3E%3Cpolyline points='6 9 12 15 18 9' stroke='rgba(255,255,255,0.45)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 12px;
  border: none; border-bottom: 1px solid rgba(255,255,255,0.22);
  padding: 8px 1.5rem 8px 0; outline: none; width: 100%;
  appearance: none; -webkit-appearance: none; cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.3s var(--ease-soft);
}
.contact-select.has-value { color: #fff; }
.contact-select:focus {
  border-bottom-color: var(--color-rose-light);
  box-shadow: 0 1px 0 0 var(--color-rose-light), 0 4px 16px rgba(242,184,198,0.18);
}
.contact-select option { background: #252545; color: rgba(255,255,255,0.90); }
.contact-submit {
  display: inline-flex; align-items: center; gap: 10px;
  color: #fff; font-family: var(--font-body); font-size: 0.875rem;
  font-weight: 600; background: none; border: none; cursor: pointer;
  padding: 0; margin-top: 0.25rem;
  transition: gap 0.3s var(--ease-snap);
}
.contact-submit:hover { gap: 16px; }
.contact-submit-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.28);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease-snap);
}
.contact-submit:hover .contact-submit-arrow { background: var(--color-rose-deep); border-color: var(--color-rose-deep); }
.contact-location {
  position: relative; z-index: 1;
  padding: 0 1.25rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.25rem;
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.contact-location-info { display: flex; align-items: center; gap: 0.875rem; }
.contact-location-pin {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(74,140,123,0.16);
  border: 1px solid rgba(74,140,123,0.30);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-location-name {
  font-size: 0.9375rem; font-weight: 600; color: #fff; line-height: 1.3;
}
.contact-location-sub {
  font-size: 0.8125rem; color: rgba(255,255,255,0.40); margin-top: 3px;
}
.contact-location-btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.875rem; font-weight: 600;
  color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  padding: 9px 18px; border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s var(--ease-snap);
  white-space: nowrap;
}
.contact-location-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.24);
  color: #fff;
}
.contact-footer {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0.875rem 1.25rem;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.contact-footer-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.75rem; color: rgba(255,255,255,0.55); white-space: nowrap;
}
.contact-footer-item strong { color: rgba(255,255,255,0.72); font-weight: 600; }
.contact-footer-sep { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.18); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--color-ink);
  padding: 4rem 0 2rem;
}
.footer-inner {
  display: grid;
  /* Mobile: single column */
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-logo {
  font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 700; font-style: italic; color: #fff;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 1rem;
}
.footer-brand-desc { font-size: 0.875rem; color: rgba(255,255,255,0.68); line-height: 1.75; max-width: 280px; }
.footer-social { margin-top: 1.25rem; }
.footer-social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.60);
  transition: background 0.2s var(--ease-snap), color 0.2s, border-color 0.2s;
}
.footer-social-link:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.28);
  color: #fff;
}
.footer-col-title { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 1.25rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.50); transition: color 0.2s; }
.footer-links a:hover { color: var(--color-rose-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.5rem; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.8125rem; color: rgba(255,255,255,0.60); }
.footer-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.footer-badge {
  font-size: 0.6875rem; font-weight: 600;
  color: rgba(255,255,255,0.60);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 4px 12px; border-radius: var(--radius-pill);
}

/* ============================================================
   SCROLL ANIMATIONS — JS-driven
   Only applied when .js-reveal is on <html> (set by inline script).
   Without JS, all content is visible by default.
   ============================================================ */
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-soft), transform 0.65s var(--ease-soft);
}
.js-reveal .reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }
.reveal-delay-4 { transition-delay: 0.46s; }

/* Section headings: heavier arc, longer duration */
.js-reveal .section-title.reveal,
.js-reveal .fc-title.reveal,
.js-reveal .contact-title.reveal {
  transform: translateY(44px);
  transition-duration: 0.88s;
}
.js-reveal .section-title.reveal.visible,
.js-reveal .fc-title.reveal.visible,
.js-reveal .contact-title.reveal.visible {
  transform: translateY(0);
}

/* Testimonials: trust signals are stable, they don't lift from below */
.js-reveal .card-testimonial.reveal { transform: none; }

/* Italic em words: blur-reveal after their parent heading lands.
   The 0.30s delay lets the heading settle before the emotional word clears in,
   mirroring the hero h1 blur technique as a brand signature. */
.js-reveal .section-title em,
.js-reveal .fc-hero .fc-title em,
.js-reveal .contact-minimal .contact-title em {
  opacity: 0;
  filter: blur(8px);
  transition: opacity 0.65s var(--ease-soft) 0.30s,
              filter 0.65s var(--ease-soft) 0.30s;
}
.js-reveal .section-title.visible em,
.js-reveal .fc-hero.visible .fc-title em,
.js-reveal .contact-minimal.visible .contact-title em {
  opacity: 1;
  filter: blur(0);
}

/* Service cards: scale entrance adds physicality to the grid */
.js-reveal .services-grid .reveal {
  transform: translateY(32px) scale(0.96);
}
.js-reveal .services-grid .reveal.visible {
  transform: translateY(0) scale(1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
/* Hover must beat the .visible rule above (0,4,0) — so we match 5 classes + pseudo */
.js-reveal .services-grid .card-service.reveal.visible:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 28px 64px rgba(197,88,124,0.22);
  z-index: 1;
}
#service-balade.reveal.visible:hover { box-shadow: 0 20px 48px rgba(74,140,123,0.22); }

/* Practical cards: directional entrance reinforces the two-column layout */
.js-reveal .practical-grid .reveal:nth-child(odd) {
  transform: translateX(-14px) translateY(24px);
}
.js-reveal .practical-grid .reveal:nth-child(even) {
  transform: translateX(14px) translateY(24px);
}
.js-reveal .practical-grid .reveal.visible {
  transform: translateX(0) translateY(0);
}

/* Parallax images */
.parallax-img { will-change: transform; }
.parallax-hero { will-change: transform; }

/* ============================================================
   MOBILE CTA — visible by default, hidden at desktop
   ============================================================ */
.mobile-cta {
  display: block;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 10000;
  padding: 0.875rem 1rem 1.25rem;
  background: linear-gradient(to top, rgba(26,26,46,0.95) 0%, transparent 100%);
}
.mobile-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  background: var(--color-rose-deep);
  color: #fff; padding: 17px 24px; border-radius: var(--radius-lg);
  font-size: 1.0625rem; font-weight: 700; font-family: var(--font-body);
  box-shadow: var(--shadow-rose); border: none; cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s var(--ease-snap);
}
.mobile-cta-btn:hover { transform: scale(1.02); }

/* ============================================================
   RESPONSIVE — MOBILE FIRST
   Base styles above = 320px+
   Progressive enhancement with min-width breakpoints below
   ============================================================ */

/* ── 480px : large phones ── */
@media (min-width: 480px) {
  :root { --section-pad: 4.5rem; }

  .hero-bottom { padding: 8rem 1.5rem 4rem; }


  .services-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  .gallery-grid { grid-auto-rows: 240px; gap: 0.875rem; }

  .blog-grid { grid-template-columns: 1fr 1fr; }

  .practical-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }


  .fc-hero-video-wrap { height: 210px; }
}

/* ── 640px : small tablets / landscape phones ── */
@media (min-width: 640px) {
  :root { --section-pad: 5.5rem; }

  .nav-inner { padding: 16px 1.5rem; }

  .hero-cta-wrap { gap: 1rem; }
  .btn-hero-primary { font-size: 1rem; padding: 15px 34px; }
  .btn-hero-ghost   { font-size: 1rem; padding: 15px 34px; }

  .hero-scroll-hint { display: flex; }

  .services-header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .services-header .section-sub { max-width: 380px; }

  .gallery-grid { grid-auto-rows: 260px; gap: 1rem; }

  .blog-featured { grid-template-columns: 1fr 1fr; }
  .blog-featured-img { height: auto; min-height: 260px; }
  .blog-featured-body { padding: 2rem 1.75rem; }

  .blog-header { flex-direction: row; align-items: flex-end; justify-content: space-between; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .fc-hero-video-wrap { height: 250px; }
  .fc-hero-content { padding: 1.75rem 1.5rem 2.25rem; }
}

/* ── 768px : tablets ── */
@media (min-width: 768px) {
  :root { --section-pad: 6rem; }

  .nav-inner { padding: 16px 2rem; }

  .contact-head { padding: 1.75rem 2rem; }
  .contact-body { padding: 0.75rem 2rem 1.75rem; gap: 2.5rem; }
  .contact-location { padding: 1.25rem 2rem 1.5rem; }
  .contact-footer { padding: 1rem 2rem; }
  .contact-title { font-size: clamp(2.2rem, 5vw, 4rem); margin-bottom: 2rem; }

  .gallery-grid { grid-auto-rows: 280px; }

  .testimonials-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }

  .blog-featured-img { min-height: 300px; }
  .blog-featured-body { padding: 2.25rem 2rem; }
  .blog-featured-body .blog-title { font-size: clamp(1.4rem, 2.5vw, 2rem); }

  .practical-grid { gap: 1.25rem; }
}

/* ── 900px : large tablets / small laptops ── */
@media (min-width: 900px) {
  .fc-hero {
    /* Ratio 16/7 ≈ 2.28:1 — assez de hauteur pour le contenu, pas trop imposant */
    flex-direction: row;
    aspect-ratio: 16/7;
    display: block;
    /* Pas de max-height : le contenu détermine la hauteur via l'aspect-ratio */
  }
  .fc-hero-video-wrap {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 55%;
    height: 100%;
    background: rgb(26,26,46);
  }
  .fc-hero-gradient {
    background: linear-gradient(
      90deg,
      rgba(26,26,46,1.0)  0%,
      rgba(26,26,46,1.0)  32%,
      rgba(26,26,46,0.55) 43%,
      rgba(26,26,46,0.0)  54%
    );
  }
  .fc-hero-content {
    position: absolute;
    top: 0; bottom: 0; left: 0;
    width: 45%;
    justify-content: flex-end;
    /* Padding réduit pour que le contenu ne soit jamais rogné */
    padding: 2rem 2.5rem;
  }

  .contact-body { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .contact-form {
    border-top: none;
    padding-top: 0;
    border-left: 1px solid rgba(74,140,123,0.20);
    padding-left: 2.5rem;
  }

  .testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

  .blog-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}

/* ── 1024px : desktop ── */
@media (min-width: 1024px) {
  :root { --section-pad: 7rem; }

  body { padding-bottom: 0; }

  .nav-inner { padding: 4px 1.5rem; }
  .nav-links {
    display: flex;
    /* Centrage absolu indépendant des largeurs logo/bouton */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .nav-hamburger { display: none; }
  .mobile-cta { display: none; }

  /* ── Hero desktop : masquer la basse résolution ──
     Flou intentionnel (2px) transforme les artefacts de compression
     en douceur cinématique. L'overlay renforcé fait le reste. */
  .hero-video {
    filter: blur(1.8px) brightness(0.82);
  }
  .hero-overlay {
    background: linear-gradient(
      to top,
      rgba(26,26,46,0.94) 0%,
      rgba(26,26,46,0.55) 35%,
      rgba(26,26,46,0.72) 100%
    );
  }

  /* Nav 125px + 4px padding × 2 ≈ 133px → 9rem clearance */
  .hero-bottom { padding: 9rem 1.5rem 4rem; }

  .services-grid { grid-template-columns: repeat(5, 1fr); column-gap: 1rem; max-width: 1160px; }
  .services-header { margin-bottom: 3rem; }


  .gallery-grid {
    grid-template-columns: 5fr 3.5fr 3.5fr;
    grid-template-rows: 320px 260px;
    grid-auto-rows: unset;
    gap: 1rem;
  }
  .gallery-cell { border-radius: var(--radius-xl); }
  .gallery-cell-main { grid-row: span 2; }

  .practical-grid { gap: 1.5rem; }

  .contact-head { padding: 2rem 2.5rem; }
  .contact-body { padding: 1rem 2.5rem 2rem; gap: 3rem; }
  .contact-location { padding: 1.25rem 2.5rem 1.75rem; }
  .contact-footer { padding: 1rem 2.5rem; gap: 2rem; }

  .blog-header { flex-direction: row; align-items: flex-end; margin-bottom: 2.5rem; }

  .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
}

/* ============================================================
   SECTION RHYTHM — varied padding for visual beat
   ============================================================ */
/* Services opens the light content, needs generous top space */
.services-section { padding-top: calc(var(--section-pad) * 1.3); }
/* Process and testimonials are paired — tighter between them */
.practical-section { padding-bottom: calc(var(--section-pad) * 0.65); }
.testimonials-section { padding-top: calc(var(--section-pad) * 0.65); }
/* Blog breathes more — it's the end of the content journey */
.blog-section { padding-top: calc(var(--section-pad) * 1.2); }


/* ============================================================
   SMASH BALLOON INSTAGRAM FEED — SBI buttons
   ============================================================ */

/* Load More */
#sbi_load .sbi_load_btn,
#sbi_load button.sbi_load_btn,
button.sbi_load_btn,
.sbi_load_btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--font-body) !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  color: #fff !important;
  background: var(--color-rose-deep) !important;
  background-color: var(--color-rose-deep) !important;
  padding: 13px 32px !important;
  border-radius: 999px !important;
  border: none !important;
  outline: none !important;
  cursor: pointer !important;
  box-shadow: 0 8px 32px rgba(212,99,122,0.22) !important;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s cubic-bezier(0.16,1,0.3,1) !important;
  letter-spacing: 0.01em !important;
  white-space: nowrap !important;
  text-transform: none !important;
}
#sbi_load .sbi_load_btn:hover,
#sbi_load button.sbi_load_btn:hover,
button.sbi_load_btn:hover,
.sbi_load_btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 36px rgba(197,88,124,0.35) !important;
  background: var(--color-rose-deep) !important;
  background-color: var(--color-rose-deep) !important;
  color: #fff !important;
}
#sbi_load .sbi_load_btn:active,
.sbi_load_btn:active {
  transform: scale(0.97) !important;
}

/* Follow on Instagram — wrapper reset, style sur le <a> uniquement */
.sbi_follow_btn.sbi_custom {
  display: inline-flex !important;
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
}
.sbi_follow_btn.sbi_custom a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  font-family: var(--font-body) !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  color: #fff !important;
  background: var(--color-rose-deep) !important;
  background-color: var(--color-rose-deep) !important;
  border: none !important;
  outline: none !important;
  padding: 13px 32px !important;
  border-radius: 999px !important;
  cursor: pointer !important;
  text-decoration: none !important;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s cubic-bezier(0.16,1,0.3,1) !important;
  letter-spacing: 0.01em !important;
  white-space: nowrap !important;
  text-transform: none !important;
  box-shadow: 0 8px 32px rgba(212,99,122,0.22) !important;
}
.sbi_follow_btn.sbi_custom a:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 36px rgba(197,88,124,0.35) !important;
}
.sbi_follow_btn.sbi_custom a:active {
  transform: scale(0.97) !important;
}

/* ============================================================
   EVENTS — layout adaptatif (solo = horizontal / grid = vertical)
   ============================================================ */
.evenements-section {
  background: var(--color-cream);
  padding: var(--section-pad) 0;
}
.evenements-header {
  text-align: center;
  margin-bottom: 3rem;
}
.evenements-section .section-title { color: var(--color-ink); }
.evenements-section .section-title em { color: var(--color-rose-deep); font-style: italic; }

/* ── Conteneur SOLO (1 événement) ──────────────────────────── */
.evenements-grid.ds-events--solo {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}

/* ── Conteneur GRID (2+ événements) ────────────────────────── */
.evenements-grid.ds-events--grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 340px));
  justify-content: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* ─── Carte — base commune ──────────────────────────────────── */
.card-evenement {
  --ev-bg: 176, 58, 100;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(150deg, #d4698a 0%, #C5587C 50%, #b03a64 100%);
  box-shadow: 0 10px 48px rgba(197,88,124,0.28), 0 2px 8px rgba(197,88,124,0.12);
  display: flex;
  flex-direction: column;
}

/* Photo — base mobile (solo : hauteur fixe en-dessous du contenu) */
.card-evenement-photo {
  position: relative;
  width: 100%;
  height: clamp(180px, 45vw, 240px);
  overflow: hidden;
  flex-shrink: 0;
}
.card-evenement-photo img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-soft);
}
.card-evenement:hover .card-evenement-photo img { transform: scale(1.04); }

/* Dégradé (rendu uniquement en mode solo via le PHP) */
.card-evenement-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(var(--ev-bg), 0.0)  0%,
    rgba(var(--ev-bg), 0.75) 75%,
    rgba(var(--ev-bg), 1.0)  100%
  );
  pointer-events: none;
}
.card-evenement--no-photo .card-evenement-gradient { display: none; }

/* Contenu — base */
.card-evenement-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.75rem;
  padding: 1.5rem 1.5rem 2rem;
}

/* Groupe HAUT */
.card-evenement-top { display: flex; flex-direction: column; }

.card-evenement-overline {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
  margin-bottom: 0.625rem;
}

.card-evenement-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 900;
  font-style: italic;
  color: #fff;
  line-height: 1.1;
  text-wrap: balance;
}
.card-evenement-title em { font-style: italic; color: var(--color-rose-light); }

.card-evenement-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.75;
  margin-top: 0.5rem;
}

/* Groupe BAS */
.card-evenement-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

/* Chips date / horaires */
.ev-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.ev-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-ink);
  background: rgba(255, 248, 240, 0.92);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  line-height: 1.2;
}
.ev-chip svg { flex-shrink: 0; }

/* Bouton CTA */
.evenement-btn {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-ink);
  background: rgba(255, 248, 240, 0.97);
  padding: 11px 26px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 18px rgba(26,26,46,0.22);
  transition: transform 0.25s var(--ease-snap), box-shadow 0.25s var(--ease-snap), background 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.evenement-btn:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,26,46,0.28);
}

/* ─── Carte VERTICALE (mode grid) ───────────────────────────── */
.card-evenement--vertical .card-evenement-photo {
  aspect-ratio: 4/3;
  height: auto; /* écrase le clamp de la base */
  flex-shrink: 0;
}

.card-evenement--vertical .card-evenement-content {
  flex: 1;
  justify-content: flex-start;
  gap: 0;
  padding: 1.25rem 1.375rem 1.5rem;
}

.card-evenement--vertical .card-evenement-title {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
}

.card-evenement--vertical .card-evenement-bottom {
  margin-top: auto;
  padding-top: 1rem;
}

/* Troncature description en mode grid */
.card-evenement--vertical .card-evenement-desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-evenement--vertical .card-evenement-desc.ev-desc--expanded {
  display: block;
  overflow: visible;
}

/* Bouton « lire plus » — invisible par défaut, JS le révèle si débordement */
.ev-read-more {
  display: none;
  background: none;
  border: none;
  padding: 0.25rem 0 0;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.58);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  align-self: flex-start;
  transition: color 0.15s;
  line-height: 1.4;
}
.ev-read-more:hover { color: rgba(255,255,255,0.88); }
.ev-read-more.ev-read-more--visible { display: block; }

/* ── Desktop ≥ 900px — mode SOLO uniquement ─────────────────── */
@media (min-width: 900px) {
  /* 2 colonnes CSS grid : hauteur pilotée par le contenu, jamais tronquée */
  .ds-events--solo .card-evenement {
    display: grid;
    grid-template-columns: 1fr 55%;
    min-height: 320px;
  }

  /* Photo : colonne droite, s'étire à la hauteur du contenu */
  .ds-events--solo .card-evenement-photo {
    grid-column: 2;
    grid-row: 1;
    position: relative; /* contenant pour l'img absolute */
    width: auto;
    height: auto;       /* annule le clamp mobile */
    border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
  }

  /* Dégradé horizontal gauche → transparent vers la photo */
  .ds-events--solo .card-evenement-gradient {
    background: linear-gradient(
      90deg,
      rgba(var(--ev-bg), 1.0)  0%,
      rgba(var(--ev-bg), 1.0)  32%,
      rgba(var(--ev-bg), 0.60) 45%,
      rgba(var(--ev-bg), 0.0)  58%
    );
  }

  /* Contenu : colonne gauche, flex column space-between */
  .ds-events--solo .card-evenement-content {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    top: auto; bottom: auto; left: auto; right: auto;
    width: auto;
    padding: 2.25rem 2.5rem;
    justify-content: space-between;
    gap: 0;
  }

  .ds-events--solo .card-evenement-desc { max-width: 340px; }

  /* Sans photo : 1 colonne pleine largeur */
  .ds-events--solo .card-evenement--no-photo {
    display: flex;
    flex-direction: column;
    min-height: unset;
  }
  .ds-events--solo .card-evenement--no-photo .card-evenement-content {
    width: 100%;
    padding: 2.25rem 2.5rem;
    grid-column: unset;
    grid-row: unset;
  }
}

/* ============================================================
   REDUCED MOTION — all animation gates removed
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .hero-h1,
  .hero-tagline,
  .hero-badges-row,
  .hero-cta-wrap,
  .hero-scroll-hint {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }
  .hero-scroll-line { animation: none; }
  .reveal,
  .js-reveal .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .js-reveal .section-title em,
  .js-reveal .fc-hero .fc-title em,
  .js-reveal .contact-minimal .contact-title em {
    opacity: 1;
    filter: none;
    transition: none;
  }
  .js-reveal .services-grid .reveal,
  .js-reveal .practical-grid .reveal:nth-child(odd),
  .js-reveal .practical-grid .reveal:nth-child(even) {
    transform: none;
  }
  .js-reveal .contact-minimal.visible .contact-wa-circle { animation: none; }
  .services-grid .card-service:hover,
  .js-reveal .services-grid .card-service.reveal.visible:hover { transform: none; box-shadow: var(--shadow-md); }
  .card-evenement:hover { transform: none; }
  .card-evenement:hover .card-evenement-photo img { transform: none; }
  .card-service:hover .card-icon { transform: none; }
  .parallax-hero { will-change: auto; }
}

/* ============================================================
   PAGE CONTENT — for WordPress pages, blog posts, etc.
   ============================================================ */
.wrap article p,
.wrap article ul,
.wrap article h2,
.wrap article h3 {
  margin-bottom: 1rem;
}

.wrap article h2 {
  margin-top: 2rem;
}

.wrap article ul {
  padding-left: 1.5rem;
}

.wrap article li {
  margin-bottom: 0.25rem;
}