/* ═══════════════════════════════════════════════════════
   Design Tokens — Twin Brand System · Les Locomotives
═══════════════════════════════════════════════════════ */
:root {
  /* ── Colors ── */
  --c-deep:  #290606;   /* brand deep — fond principal */
  --c-red:   #671e1e;   /* brand red  — accent secondaire */
  --c-gold:  #ad8d50;   /* brand gold — accent primaire */
  --c-white: #ffffff;   /* blanc      — texte principal */
  --c-black: #000000;   /* noir       — texte sur fond clair */

  /* ── Typography ── */
  --f-first: 'Perandory Condensed', Georgia, serif;    /* FIRST — titres display */
  --f-text:  'Montserrat', system-ui, sans-serif;           /* Texte — corps & UI */
  --f-class: 'Luxurious Script', Georgia, cursive;     /* Class — accent décoratif */
}

/* ═══════════════════════════════════════════════════════
   @font-face — Fonts locales
═══════════════════════════════════════════════════════ */
@font-face {
  font-family: 'Perandory Condensed';
  src: url('public/fonts/Perandory-Semi-Condensed.otf') format('opentype');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* ═══════════════════════════════════════════════════════
   Reset
═══════════════════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  min-height: 100%;
  font-family: var(--f-text);
  background: var(--c-deep);
  color: var(--c-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip; /* safety net : aucune section ne peut déclencher de scroll horizontal */
}

body { width: 100%; max-width: 100vw; }

/* ═══════════════════════════════════════════════════════
   Top Banner — countdown sticky + CTA
═══════════════════════════════════════════════════════ */
.top-banner {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, #150202 0%, #2a0606 50%, #150202 100%);
  border-bottom: 1px solid rgba(173, 141, 80, 0.35);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.top-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.7rem 2.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

/* Libellé — texte inline, sobre */
.top-banner__label {
  font-family: var(--f-text);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.94);
  letter-spacing: 0.01em;
  margin: 0;
  flex-shrink: 1;
  min-width: 0;
}

.top-banner__sub {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.62);
}

/* Countdown — style discret, façon hero (inline, pas de cadre) */
.top-banner__countdown {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-shrink: 0;
}

.top-banner__cd-unit {
  display: inline-flex;
  align-items: baseline;
  gap: 0.18rem;
}

.top-banner__cd-num {
  font-family: var(--f-text);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

.top-banner__cd-lbl {
  font-family: var(--f-text);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: rgba(173, 141, 80, 0.78);
}

.top-banner__cd-sep {
  color: rgba(173, 141, 80, 0.4);
  font-size: 0.8rem;
}

.top-banner__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.2rem;
  background: linear-gradient(135deg, #d4a829 0%, #f0d878 40%, #c9a32b 70%, #9a7018 100%);
  color: #2a1500;
  font-family: var(--f-text);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 999px;
  box-shadow:
    0 2px 12px rgba(173, 141, 80, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.top-banner__cta:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(240, 216, 120, 0.5),
    0 6px 20px rgba(212, 168, 41, 0.5);
}

/* Responsive */
@media (max-width: 860px) {
  .top-banner__inner { gap: 0.9rem; padding: 0.55rem 1.5rem; }
  .top-banner__sub { display: none; }
  .top-banner__label { font-size: 0.74rem; }
  .top-banner__cd-num { font-size: 0.8rem; }
  .top-banner__cd-lbl { font-size: 0.55rem; }
  .top-banner__cta { font-size: 0.72rem; padding: 0.5rem 0.9rem; }
}

@media (max-width: 540px) {
  .top-banner__label { display: none; }
  .top-banner__inner { justify-content: space-between; padding: 0.55rem 1.1rem; }
  .top-banner__cta { font-size: 0.66rem; padding: 0.45rem 0.8rem; letter-spacing: 0.04em; }
}

/* ═══════════════════════════════════════════════════════
   Hero — 2 colonnes
═══════════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 5rem;
  background:
    radial-gradient(ellipse at 25% 60%, rgba(103, 30, 30, 0.7) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 30%, rgba(103, 30, 30, 0.25) 0%, transparent 50%),
    var(--c-deep);
  overflow: clip; /* contient l'enveloppe (right: -4.5rem) */
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1080px;
  width: 100%;
  align-items: center;
}

/* ── Colonne gauche ── */
.hero__left {
  display: flex;
  flex-direction: column;
}

.hero__brand {
  display: block;
  font-family: var(--f-text);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 2.75rem;
}

/* Texte d'ouverture — Montserrat Light */
.hero__opener-block {
  margin-bottom: 1.75rem;
}

.hero__opener {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 0.25rem;
  letter-spacing: 0.01em;
}

.hero__opener--sub {
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 0;
}

/* Titre display — Perandory Condensed, or vieilli */
.hero__title {
  font-family: var(--f-first);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  /* Dégradé or vieilli, inspiré de l'identité FC */
  background: linear-gradient(
    168deg,
    #e8c96a 0%,
    #c9a32b 18%,
    #f0d878 32%,
    #ad8d50 48%,
    #e4c45a 62%,
    #9a7018 76%,
    #c5a030 88%,
    #7a5508 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Description */
.hero__desc {
  font-family: var(--f-text);
  font-size: 0.975rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 1.75rem;
  max-width: 440px;
}

.hero__desc strong {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

/* Badge urgence */
.hero__urgency {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-text);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--c-gold);
  background: rgba(173, 141, 80, 0.09);
  border: 1px solid rgba(173, 141, 80, 0.28);
  border-radius: 999px;
  padding: 0.48rem 1.1rem;
  margin-bottom: 2.25rem;
  width: fit-content;
}

.hero__urgency-icon { font-style: normal; }

/* Save the date — texte élégant au-dessus de l'opener (PAS un badge) */
.hero__save-the-date {
  margin-bottom: 1.5rem;
}

.hero__save-the-date-line {
  font-family: var(--f-text);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
}

/* CTA — Premium pill style (uniforme sur toute la page) */
.hero__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  width: fit-content;
  padding: 1.05rem 2.5rem;
  font-family: var(--f-text);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--c-deep);
  background: linear-gradient(
    168deg,
    #e8c96a 0%, #c9a32b 25%, #f0d878 50%,
    #ad8d50 75%, #c5a030 100%
  );
  border: 1px solid rgba(173, 141, 80, 0.6);
  border-radius: 999px;
  cursor: pointer;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 12px 36px rgba(173, 141, 80, 0.25),
    0 0 40px rgba(173, 141, 80, 0.12);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s ease,
              filter 0.35s ease;
}

.hero__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.hero__cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 18px 50px rgba(173, 141, 80, 0.35),
    0 0 60px rgba(173, 141, 80, 0.2);
}

.hero__cta:hover::before {
  transform: translateX(120%);
}

/* Enveloppe — blur parallax */
.hero__cta-group {
  position: relative;
  width: fit-content;
}

.hero__cta-group .hero__cta {
  position: relative;
  z-index: 2;
}

.hero__envelope-wrap {
  position: absolute;
  top: 45%;
  right: -4.5rem;
  z-index: 1;
}

.hero__envelope {
  height: 80px;
  width: auto;
  display: block;
  transform: rotate(-10deg);
  will-change: filter;
}

/* ── Colonne droite — photo ── */
.hero__right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__photo {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3 / 4;
  border: 1.5px dashed rgba(173, 141, 80, 0.32);
  border-radius: 20px;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(173, 141, 80, 0.07) 0%, transparent 65%),
    rgba(103, 30, 30, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* coin doré décoratif */
.hero__photo::before,
.hero__photo::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: rgba(173, 141, 80, 0.5);
  border-style: solid;
}
.hero__photo::before {
  top: 16px; left: 16px;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 4px 0 0 0;
}
.hero__photo::after {
  bottom: 16px; right: 16px;
  border-width: 0 1.5px 1.5px 0;
  border-radius: 0 0 4px 0;
}

.hero__photo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero__photo-icon {
  width: 56px;
  height: 56px;
  color: rgba(173, 141, 80, 0.35);
}

.hero__photo-label {
  font-family: var(--f-class);
  font-size: 1.4rem;
  color: rgba(173, 141, 80, 0.55);
}

.hero__photo-hint {
  font-family: var(--f-text);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .hero {
    padding: 7rem 2rem 5rem;
  }

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

  .hero__right { order: -1; }

  .hero__photo {
    max-width: 260px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
  }

  .hero__photo::before,
  .hero__photo::after { display: none; }

  .hero__title { font-size: clamp(2.5rem, 12vw, 4rem); }
}

/* ═══════════════════════════════════════════════════════
   Section 2 — Tu te reconnais ?
═══════════════════════════════════════════════════════ */
.recognition {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 9rem 5rem 9rem;
  border-top: 1px solid rgba(173, 141, 80, 0.1);
  background: var(--c-deep);
}

/* Image de fond floutée */
.recognition::before {
  content: '';
  position: absolute;
  inset: -14px;
  background: url('charte-graphique/Siege_fond.png') center / cover no-repeat;
  filter: blur(25px);
  z-index: 0;
}

/* ── Badge tournant ── */
.recognition__badge-wrap {
  position: absolute;
  top: 0;
  right: 200px;
  width: 224px;
  height: 224px;
  animation: badge-spin 22s linear infinite;
  z-index: 12;
}

.recognition__badge {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

@keyframes badge-spin {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}

/* ── Contenu ── */
.recognition__inner {
  position: relative;
  z-index: 2;
  max-width: 660px;
  width: 100%;
}

/* Badge intro */
.recognition__pre {
  display: inline-flex;
  align-items: center;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--c-gold);
  background: rgba(173, 141, 80, 0.08);
  border: 1px solid rgba(173, 141, 80, 0.28);
  border-radius: 999px;
  padding: 0.45rem 1.2rem;
  margin-bottom: 2rem;
}

/* Titre principal — même style or vieilli que hero */
.recognition__title {
  font-family: var(--f-first);
  font-size: clamp(3.2rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-bottom: 2.75rem;
  background: linear-gradient(
    168deg,
    #e8c96a 0%,
    #c9a32b 18%,
    #f0d878 32%,
    #ad8d50 48%,
    #e4c45a 62%,
    #9a7018 76%,
    #c5a030 88%,
    #7a5508 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Lead */
.recognition__intro {
  font-family: var(--f-text);
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
}

/* ── Liste ── */
.recognition__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 3.5rem;
}

.recognition__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-family: var(--f-text);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(173, 141, 80, 0.08);
}

.recognition__item:first-child {
  border-top: 1px solid rgba(173, 141, 80, 0.08);
}

.recognition__diamond {
  color: var(--c-gold);
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 0.5em;
  opacity: 0.9;
  letter-spacing: 0;
}

/* ── Phrase de clôture ── */
.recognition__closing {
  font-family: var(--f-text);
  font-weight: 700;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  padding-top: 2rem;
  position: relative;
}

.recognition__closing::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--c-gold);
  opacity: 0.4;
  margin-bottom: 1.5rem;
}

/* ── Variante fond blanc ── */
.recognition--white {
  background: #ffffff;
}

.recognition--white::before {
  display: none;
}

.recognition--white .recognition__title {
  color: var(--c-deep);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.recognition--white .recognition__item {
  color: rgba(41, 6, 6, 0.75);
  border-bottom-color: rgba(173, 141, 80, 0.2);
}

.recognition--white .recognition__item:first-child {
  border-top-color: rgba(173, 141, 80, 0.2);
}

/* ── Scroll arrow ── */
.scroll-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 2.5rem auto 0;
  color: rgba(173, 141, 80, 0.55);
  text-decoration: none;
  border-radius: 50%;
  transition: color 0.25s ease;
  animation: scroll-bounce 2.2s ease-in-out infinite;
}

.scroll-arrow:hover {
  color: var(--c-gold);
}

.scroll-arrow svg {
  width: 30px;
  height: 30px;
  display: block;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0);    opacity: 0.55; }
  50%       { transform: translateY(9px); opacity: 1;    }
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .recognition {
    padding: 7rem 2rem;
  }

  .recognition__badge-wrap {
    width: 140px;
    height: 140px;
    top: 0;
    right: 20px;
  }
}

/* ═══════════════════════════════════════════════════════
   Chiffres clés — fond clair
═══════════════════════════════════════════════════════ */
.stats {
  display: flex;
  justify-content: center;
  padding: 3rem 5rem;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(173, 141, 80, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(173, 141, 80, 0.07) 0%, transparent 50%),
    url('charte-graphique/Background_papier.png') center / cover no-repeat;
  border-top: 1px solid rgba(173, 141, 80, 0.15);
}

.stats__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 960px;
  width: 100%;
}

.stats__item {
  flex: 1;
  text-align: center;
  padding: 1rem 2.5rem;
}

/* Ligne séparatrice verticale */
.stats__divider {
  width: 1px;
  height: 80px;
  flex-shrink: 0;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(173, 141, 80, 0.35) 30%,
    rgba(173, 141, 80, 0.35) 70%,
    transparent
  );
}

.stats__number {
  font-family: var(--f-text);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
  background: linear-gradient(
    135deg,
    #671e1e 0%,
    #8c2a2a 30%,
    #671e1e 60%,
    #290606 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* Animation — part de 0 via JS */
  transition: none;
}

.stats__number.is-counting {
  animation: stat-pop 0.4s cubic-bezier(0.34, 1.4, 0.64, 1) forwards;
}

@keyframes stat-pop {
  0%   { transform: scale(0.85); opacity: 0; }
  100% { transform: scale(1);    opacity: 1; }
}

.stats__label {
  font-family: var(--f-text);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: rgba(41, 6, 6, 0.62);
  max-width: 200px;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .stats {
    padding: 5rem 2rem;
  }
  .stats__inner {
    flex-direction: column;
    gap: 3rem;
  }
  .stats__divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(
      to right,
      transparent,
      rgba(173, 141, 80, 0.35) 30%,
      rgba(173, 141, 80, 0.35) 70%,
      transparent
    );
  }
  .stats__item { padding: 0; }
  .stats__number { font-size: clamp(3rem, 12vw, 4rem); }
}

/* ═══════════════════════════════════════════════════════
   Manifeste cinématique — Section 3
═══════════════════════════════════════════════════════ */

/* ── Section ── */
.manifeste {
  position: relative;
  border-top: 1px solid rgba(173, 141, 80, 0.12);
  overflow: clip; /* contient le watermark décoratif (right: -6%) */
}

/* ── Fallback : a11y + mobile + reduced-motion ── */
.manifeste__fallback {
  display: none;
  padding: 6rem 2rem;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.manifeste__fb-title {
  font-family: var(--f-first);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.manifeste__fb-body {
  font-family: var(--f-text);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.manifeste__fb-label {
  font-family: var(--f-text);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1rem;
}
.manifeste__fb-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.manifeste__fb-list li {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  font-style: normal;
  color: var(--c-white);
}
.manifeste__fb-quote {
  font-family: var(--f-first);
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--c-gold);
}

/* Mobile / reduced-motion : fallback uniquement */
@media (max-width: 767px), (prefers-reduced-motion: reduce) {
  .manifeste__fallback { display: block; }
  .manifeste__stage    { display: none; }
}

/* ── Stage (zone pinnée, desktop) ── */
.manifeste__stage {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(6, 1, 1, 0.84), rgba(6, 1, 1, 0.84)),
    url('charte-graphique/Background1.png') center / cover no-repeat;
}

/* ── Watermark ── */
.manifeste__watermark {
  position: absolute;
  bottom: -6%;
  right: -6%;
  width: 52%;
  max-width: 480px;
  opacity: 0.04;
  mix-blend-mode: luminosity;
  pointer-events: none;
  user-select: none;
  transform: rotate(-8deg);
}

/* ── Beats empilés, tous invisibles au départ ── */
.manifeste__beat {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 0 3rem;
  opacity: 0;
  will-change: transform, opacity;
}

.manifeste__beat-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.manifeste__num {
  font-family: var(--f-text);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--c-gold);
  opacity: 0.7;
}

.manifeste__text { margin: 0; line-height: 1.15; max-width: 800px; }

.manifeste__text--intro {
  font-family: var(--f-first);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--c-white);
}

.manifeste__text--promise {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 600;
  font-style: normal;
  color: var(--c-white);
  line-height: 1.25;
}

.manifeste__text--question {
  font-family: var(--f-first);
  font-size: clamp(1.9rem, 4.8vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.35;
  background: linear-gradient(
    168deg,
    #e8c96a 0%,  #c9a32b 18%, #f0d878 32%,
    #ad8d50 48%, #e4c45a 62%, #9a7018 76%,
    #c5a030 88%, #7a5508 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── Indicateur de progression ── */
.manifeste__progress {
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  z-index: 10;
}

.manifeste__dot {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-gold);
  opacity: 0.18;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.manifeste__dot.is-active {
  opacity: 1;
  transform: scale(1.6);
}

/* ── ancien concept CSS (dead code conservé) ── */
.concept-wrapper {
  background:
    linear-gradient(rgba(5, 0, 0, 0.55)),
    url('charte-graphique/Background1.png') center / cover no-repeat;
  border-top: 1px solid rgba(173, 141, 80, 0.12);
}

.concept {
  display: flex;
  justify-content: center;
  padding: 3rem 5rem 1rem;
  background: transparent;
  text-align: center;
}

.concept__inner {
  max-width: 740px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.concept__kicker {
  display: block;
  font-family: var(--f-text);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 2rem;
}

.concept__title-img {
  width: 100%;
  max-width: 180px;
  height: auto;
  display: block;
  margin-bottom: 1rem;
}

.concept__body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 0;
  max-width: 600px;
}

.concept__body p {
  font-family: var(--f-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.68);
}

.concept__body strong {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.90);
}

.concept__quote {
  font-family: var(--f-first);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  padding: 2.5rem 1rem;
  border-top: 1px solid rgba(173, 141, 80, 0.22);
  border-bottom: 1px solid rgba(173, 141, 80, 0.22);
  max-width: 600px;
  width: 100%;
  background: none;
  color: var(--c-gold);
}

/* Lead-in avant la quote */
.concept__lead-in {
  font-family: var(--f-text);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.40);
  margin-bottom: 1.75rem;
}

/* Section quote finale */
.concept-close {
  display: flex;
  justify-content: center;
  padding: 3rem 5rem 5rem;
  background: transparent;
  text-align: center;
}

@media (max-width: 860px) {
  .concept      { padding: 7rem 2rem; }
  .concept-close { padding: 5rem 2rem 7rem; }
}

/* ── Liste étapes dans concept ── */
.concept__steps-intro {
  font-family: var(--f-text);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 0.75rem;
}

.concept__steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
  width: fit-content;
  margin: 0 auto;
}

.concept__steps-list li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
  font-style: normal;
  color: var(--c-white);
  line-height: 1.4;
}

.concept__diamond {
  color: var(--c-gold);
  font-size: 0.5rem;
  flex-shrink: 0;
  opacity: 0.85;
  position: relative;
  top: -2px;
}

/* ── Card glow border ── */
.concept-card {
  position: relative;
  background: rgba(0, 0, 0, 0.432);
  border-radius: 16px;
  padding: 1.75rem 2.25rem;
  margin-top: 0.5rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: box-shadow 0.4s ease;
}

.concept-card:hover {
  box-shadow:
    0 0 40px rgba(212, 168, 41, 0.08),
    0 8px 40px rgba(0, 0, 0, 0.08);
}

/* Bordure statique — toujours visible */
.concept-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(173, 141, 80, 0.18);
  pointer-events: none;
  z-index: 1;
}

/* Glow lumineux qui suit le curseur (spring) */
.concept-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: radial-gradient(
    300px circle at var(--cx, -999px) var(--cy, -999px),
    rgba(255, 220, 80, 1)   0%,
    rgba(212, 168, 41, 0.85) 20%,
    rgba(173, 141, 80, 0.35) 50%,
    transparent 79%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

/* ═══════════════════════════════════════════════════════
   Section 4 — Timeline · Programme (fond bordeaux texturé)
═══════════════════════════════════════════════════════ */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 9rem 2rem 0;
  background: var(--c-deep);
  border-top: 1px solid rgba(173, 141, 80, 0.2);
  overflow: clip; /* contient le cadenas J4 décoratif qui peek à 50% */
}

.timeline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('charte-graphique/Background2.png') center / cover no-repeat;
  opacity: 0.12;
  z-index: 0;
}

.timeline::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 12% 0%,   rgba(173, 141, 80, 0.14) 0%, transparent 45%),
    radial-gradient(ellipse at 88% 100%, rgba(103, 30, 30, 0.55)  0%, transparent 50%),
    rgba(41, 6, 6, 0.80);
  z-index: 1;
}

/* ── En-tête de section ── */
.timeline__header {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  width: 100%;
  margin-bottom: 6rem;
}

.timeline__kicker {
  display: block;
  font-family: var(--f-text);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1.5rem;
}

.timeline__section-title {
  font-family: var(--f-first);
  font-size: clamp(3.2rem, 5.5vw, 4.5rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin-bottom: 1.75rem;
  background: linear-gradient(
    168deg,
    #e8c96a 0%,
    #c9a32b 18%,
    #f0d878 32%,
    #ad8d50 48%,
    #e4c45a 62%,
    #9a7018 76%,
    #c5a030 88%,
    #7a5508 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.timeline__section-sub {
  font-family: var(--f-text);
  font-size: 0.88rem;
  font-weight: 400;
  font-style: normal;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.04em;
}

.timeline__track {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 680px;
  padding-left: 64px;
}

/* ligne — se dessine via JS */
.timeline__line {
  position: absolute;
  top: 0;
  left: 27px;
  width: 1px;
  height: 0;
  background: linear-gradient(
    to bottom,
    var(--c-gold),
    rgba(173, 141, 80, 0.15)
  );
  will-change: height;
}

/* ── Item ── */
.timeline__item {
  position: relative;
  padding-bottom: 9rem;
  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity   0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.timeline__item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline__item:last-child { padding-bottom: 0; }

/* dot */
.timeline__dot {
  position: absolute;
  left: -42px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-gold);
  box-shadow:
    0 0 0 4px rgba(173, 141, 80, 0.18),
    0 0 14px rgba(173, 141, 80, 0.35);
}

.timeline__dot--locked {
  background: rgba(173, 141, 80, 0.38);
  box-shadow:
    0 0 0 4px rgba(173, 141, 80, 0.08),
    0 0 8px rgba(173, 141, 80, 0.12);
}


/* ── Badge ── */
.timeline__badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--c-gold);
  font-family: var(--f-text);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline__badge-icon { display: block; flex-shrink: 0; }

/* ── Badge cadenas J4 ── */
.timeline__badge--lock {
  color: rgba(255, 255, 255, 0.35);
  gap: 0.65rem;
}

.timeline__lock-img {
  display: block;
  flex-shrink: 0;
  height: 22px;
  width: auto;
  opacity: 0.65;
  transition: opacity 0.5s ease, filter 0.5s ease;
}

.timeline__item--locked.is-unlocked .timeline__lock-img {
  opacity: 1;
  filter: drop-shadow(0 0 4px rgba(173, 141, 80, 0.5));
}

/* ── Cadenas décoratif en arrière-plan J4 ─────────────────
   Effet Framer : Reveal au scroll + Float infini + Magnetic Glow
   Le cadenas apparaît à droite du texte, à moitié sorti du cadre */
.timeline__lock-bg {
  position: absolute;
  top: 50%;
  right: 0;
  height: clamp(200px, 32vw, 340px);
  width: auto;
  transform: translate(45%, -50%) rotate(-10deg) scale(0.85);
  opacity: 0;
  filter:
    drop-shadow(0 0 25px rgba(173, 141, 80, 0.35))
    drop-shadow(0 12px 30px rgba(0, 0, 0, 0.45))
    blur(8px);
  pointer-events: none;
  z-index: 0;
  will-change: transform, opacity, filter;
  transition:
    opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s,
    transform 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.3s,
    filter 1.2s ease 0.3s;
}

/* Reveal à l'apparition de la carte dans le viewport */
.timeline__item--locked.is-visible .timeline__lock-bg {
  opacity: 0.28;
  transform: translate(50%, -50%) rotate(-7deg) scale(1);
  filter:
    drop-shadow(0 0 35px rgba(173, 141, 80, 0.45))
    drop-shadow(0 12px 40px rgba(0, 0, 0, 0.5))
    blur(0);
  animation: lockBgFloat 9s ease-in-out infinite 1.6s;
}

/* État déverrouillé : le cadenas s'illumine */
.timeline__item--locked.is-unlocked .timeline__lock-bg {
  opacity: 0.5;
  filter:
    drop-shadow(0 0 55px rgba(173, 141, 80, 0.75))
    drop-shadow(0 0 100px rgba(173, 141, 80, 0.25))
    drop-shadow(0 12px 40px rgba(0, 0, 0, 0.5));
}

/* Float infini — comme suspendu, oscillation douce */
@keyframes lockBgFloat {
  0%, 100% {
    transform: translate(50%, -50%) rotate(-7deg) scale(1);
  }
  33% {
    transform: translate(50%, -53%) rotate(-5deg) scale(1.015);
  }
  66% {
    transform: translate(50%, -47%) rotate(-9deg) scale(0.99);
  }
}

/* Tout le contenu textuel reste au-dessus du cadenas */
.timeline__item--locked .timeline__day-pill,
.timeline__item--locked .timeline__badge,
.timeline__item--locked .timeline__locked-content {
  position: relative;
  z-index: 1;
}

/* Jour 4 — couleur or sur les éléments clés */
.timeline__day-pill--locked,
.timeline__item--locked .timeline__title,
.timeline__item--locked .timeline__text strong {
  color: var(--c-gold);
}

/* Mobile : on adoucit, on rapproche, on garde la magie */
@media (max-width: 720px) {
  .timeline__lock-bg {
    height: 180px;
  }
  .timeline__item--locked.is-visible .timeline__lock-bg {
    opacity: 0.18;
    transform: translate(38%, -50%) rotate(-7deg) scale(1);
    animation: lockBgFloatMobile 9s ease-in-out infinite 1.6s;
  }
}

@keyframes lockBgFloatMobile {
  0%, 100% { transform: translate(38%, -50%) rotate(-7deg) scale(1); }
  33%      { transform: translate(38%, -53%) rotate(-5deg) scale(1.015); }
  66%      { transform: translate(38%, -47%) rotate(-9deg) scale(0.99); }
}

/* Respecte les préférences accessibilité */
@media (prefers-reduced-motion: reduce) {
  .timeline__item--locked.is-visible .timeline__lock-bg {
    animation: none;
  }
}

/* ── Contenu verrouillé / déverrouillé ── */
.timeline__locked-content {
  user-select: none;
  pointer-events: none;
  transition: filter 1s ease 0.3s;
}

.timeline__item--locked.is-unlocked .timeline__locked-content {
  filter: none;
  pointer-events: auto;
  user-select: auto;
}

/* ── Titre ── */
.timeline__title {
  font-family: var(--f-first);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 0.6rem;
  color: var(--c-white);
}

/* ── Tagline (sous-titre du jour) ── */
.timeline__tagline {
  font-family: var(--f-text);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 1.4rem;
}

/* ── Texte ── */
.timeline__text {
  font-family: var(--f-text);
  font-size: 0.975rem;
  font-weight: 300;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.25rem;
  max-width: 520px;
}

.timeline__text em {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: normal;
  font-size: clamp(1.25rem, 1.7vw, 1.6rem);
  color: rgba(255, 255, 255, 0.92);
  display: block;
  line-height: 1.45;
  margin-bottom: 0.4rem;
}

.timeline__text strong {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.90);
}

/* ── Objectif ── */
.timeline__objective {
  font-family: var(--f-text);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--c-gold);
  margin-bottom: 2.25rem;
}

/* ── Bouton — Premium pill ── */
.timeline__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  width: fit-content;
  padding: 1rem 2.25rem;
  font-family: var(--f-text);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  color: var(--c-deep);
  background: linear-gradient(
    168deg,
    #e8c96a 0%, #c9a32b 25%, #f0d878 50%,
    #ad8d50 75%, #c5a030 100%
  );
  border: 1px solid rgba(173, 141, 80, 0.6);
  border-radius: 999px;
  cursor: pointer;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 12px 36px rgba(173, 141, 80, 0.25),
    0 0 40px rgba(173, 141, 80, 0.12);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s ease,
              filter 0.35s ease;
}

.timeline__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.timeline__cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 18px 50px rgba(173, 141, 80, 0.35),
    0 0 60px rgba(173, 141, 80, 0.2);
}

.timeline__cta:hover::before {
  transform: translateX(120%);
}

@media (max-width: 860px) {
  .timeline { padding: 7rem 2rem 9rem; }
  .timeline__header { margin-bottom: 4rem; }
}

/* ═══════════════════════════════════════════════════════
   Golden Ticket — image décorative + 3D Parallax (mouse tilt)
═══════════════════════════════════════════════════════ */
.ticket-wrap {
  position: relative;
  width: min(85%, 520px);
  margin: 0 auto 3rem;
  perspective: 1400px;
  perspective-origin: 50% 50%;
}

/* Couche pilotée par JS — rotation 3D sur mouvement souris */
.ticket-parallax {
  transform-style: preserve-3d;
  transform:
    rotateX(var(--ticket-rx, 0deg))
    rotateY(var(--ticket-ry, 0deg));
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.ticket-img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(var(--ticket-zoom, 1));
  transform-origin: center center;
  filter:
    drop-shadow(0 40px 70px rgba(0, 0, 0, 0.75))
    drop-shadow(0 0 80px rgba(212, 168, 41, 0.4));
  will-change: transform;
}


/* ═══════════════════════════════════════════════════════
   Section 5 — Le Golden Ticket FIRST CLASS
═══════════════════════════════════════════════════════ */
.golden-class {
  display: flex;
  justify-content: center;
  padding: 4rem 5rem 12rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(173, 141, 80, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(0, 0, 0, 0.5) 0%, transparent 70%),
    #150202;
}

.golden-class__inner {
  max-width: 640px;
  width: 100%;
}

.golden-class__kicker {
  display: block;
  font-family: var(--f-text);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 2rem;
  opacity: 0.7;
}

.golden-class__title {
  font-family: var(--f-first);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 3.5rem;
  background: linear-gradient(
    168deg,
    #e8c96a 0%,
    #c9a32b 18%,
    #f0d878 32%,
    #ad8d50 48%,
    #e4c45a 62%,
    #9a7018 76%,
    #c5a030 88%,
    #7a5508 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.golden-class__title em {
  font-family: var(--f-class);
  font-style: normal;
  font-size: 1.12em;
}

.golden-class__body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.golden-class__body p {
  font-family: var(--f-text);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.6);
}

.golden-class__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: 1.05rem 2.5rem;
  font-family: var(--f-text);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--c-deep);
  background: linear-gradient(
    168deg,
    #e8c96a 0%, #c9a32b 25%, #f0d878 50%,
    #ad8d50 75%, #c5a030 100%
  );
  border: 1px solid rgba(173, 141, 80, 0.6);
  border-radius: 999px;
  cursor: pointer;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 12px 36px rgba(173, 141, 80, 0.25),
    0 0 40px rgba(173, 141, 80, 0.12);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s ease,
              filter 0.35s ease;
}

.golden-class__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.golden-class__cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 18px 50px rgba(173, 141, 80, 0.35),
    0 0 60px rgba(173, 141, 80, 0.2);
}

.golden-class__cta:hover::before {
  transform: translateX(120%);
}

@media (max-width: 860px) {
  .golden-class { padding: 7rem 2rem 9rem; }
}

/* ═══════════════════════════════════════════════════════
   Section 8 — À propos de Sandra
═══════════════════════════════════════════════════════ */
.sandra {
  display: flex;
  justify-content: center;
  padding: 10rem 5rem;
  background:
    linear-gradient(rgba(5, 0, 0, 0.55), rgba(5, 0, 0, 0.55)),
    url('charte-graphique/Background1.png') center / cover no-repeat;
  border-top: 1px solid rgba(173, 141, 80, 0.1);
}

.sandra__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  max-width: 1080px;
  width: 100%;
  align-items: center;
}

/* ── Colonne photo ── */
.sandra__photo-col {
  display: flex;
  justify-content: center;
}

.sandra__photo-frame {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 3 / 4;
  border: 1.5px dashed rgba(173, 141, 80, 0.32);
  border-radius: 20px;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(173, 141, 80, 0.07) 0%, transparent 65%),
    rgba(103, 30, 30, 0.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
}

.sandra__photo-frame::before,
.sandra__photo-frame::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: rgba(173, 141, 80, 0.45);
  border-style: solid;
}
.sandra__photo-frame::before {
  top: 16px; left: 16px;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 4px 0 0 0;
}
.sandra__photo-frame::after {
  bottom: 16px; right: 16px;
  border-width: 0 1.5px 1.5px 0;
  border-radius: 0 0 4px 0;
}

.sandra__photo-icon {
  width: 52px;
  height: 52px;
  color: rgba(173, 141, 80, 0.35);
}

.sandra__photo-name {
  font-family: var(--f-class);
  font-size: 1.4rem;
  color: rgba(173, 141, 80, 0.55);
}

.sandra__photo-hint {
  font-family: var(--f-text);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
}

/* ── Colonne contenu ── */

.sandra__title {
  font-family: var(--f-first);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin-bottom: 2rem;
  background: linear-gradient(
    168deg,
    #e8c96a 0%, #c9a32b 18%, #f0d878 32%,
    #ad8d50 48%, #e4c45a 62%, #9a7018 76%,
    #c5a030 88%, #7a5508 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sandra__intro {
  font-family: var(--f-text);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.5rem;
}

.sandra__body {
  font-family: var(--f-text);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 1rem;
}

.sandra__body em {
  font-style: normal;
  color: var(--c-gold);
}

.sandra__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0.25rem 0 1.75rem;
}

.sandra__list li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-family: var(--f-text);
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.sandra__diamond {
  color: var(--c-gold);
  font-size: 0.55rem;
  flex-shrink: 0;
}

.sandra__quote {
  font-family: var(--f-first);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(173, 141, 80, 0.22);
  background: linear-gradient(
    168deg,
    #e8c96a 0%, #c9a32b 20%, #f0d878 38%,
    #ad8d50 55%, #e4c45a 70%, #9a7018 85%, #c5a030 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 860px) {
  .sandra { padding: 7rem 2rem; }
  .sandra__inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .sandra__photo-frame { max-width: 280px; margin: 0 auto; }
  .sandra__title { font-size: clamp(2.5rem, 8vw, 3.5rem); }
}

/* ═══════════════════════════════════════════════════════
   FAQ — Accordéon dynamique
═══════════════════════════════════════════════════════ */
.faq {
  position: relative;
  padding: 8rem 2rem 7rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(173, 141, 80, 0.06) 0%, transparent 55%),
    var(--c-deep);
  border-top: 1px solid rgba(173, 141, 80, 0.08);
}

.faq__inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* ── Header ── */
.faq__header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq__kicker {
  display: inline-block;
  font-family: var(--f-text);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1.25rem;
}

.faq__title {
  font-family: var(--f-first);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--c-white);
  margin-bottom: 1.5rem;
}

.faq__intro {
  font-family: var(--f-text);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto;
}

.faq__intro em {
  font-style: normal;
  color: var(--c-gold);
}

/* ── Liste ── */
.faq__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq__item {
  position: relative;
  background: rgba(41, 6, 6, 0.45);
  border: 1px solid rgba(173, 141, 80, 0.18);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.faq__item:hover {
  border-color: rgba(173, 141, 80, 0.4);
  background: rgba(41, 6, 6, 0.65);
}

.faq__item.is-open {
  border-color: rgba(173, 141, 80, 0.55);
  background: rgba(41, 6, 6, 0.75);
  box-shadow:
    0 0 0 1px rgba(173, 141, 80, 0.1) inset,
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(173, 141, 80, 0.08);
}

/* ── Question (bouton) ── */
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.5rem 1.75rem;
  background: none;
  border: none;
  color: var(--c-white);
  text-align: left;
  cursor: pointer;
  font-family: var(--f-text);
  font-size: clamp(0.98rem, 1.55vw, 1.1rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.005em;
  transition: color 0.3s ease;
}

.faq__question:hover {
  color: var(--c-white);
}

.faq__q-mark {
  flex-shrink: 0;
  color: var(--c-gold);
  font-size: 0.6rem;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq__item.is-open .faq__q-mark {
  opacity: 1;
  transform: scale(1.15);
}

.faq__q-text {
  flex: 1;
}

.faq__q-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(173, 141, 80, 0.35);
  color: var(--c-gold);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease,
              background 0.3s ease;
}

.faq__q-icon svg {
  width: 14px;
  height: 14px;
}

.faq__item:hover .faq__q-icon {
  border-color: rgba(173, 141, 80, 0.7);
  background: rgba(173, 141, 80, 0.08);
}

.faq__item.is-open .faq__q-icon {
  transform: rotate(135deg);
  border-color: var(--c-gold);
  background: rgba(173, 141, 80, 0.18);
}

/* ── Réponse ── */
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__answer-inner {
  padding: 0 1.75rem 1.6rem 3.6rem;
  font-family: var(--f-text);
  font-size: clamp(0.92rem, 1.35vw, 1rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.faq__item.is-open .faq__answer-inner {
  opacity: 1;
  transform: translateY(0);
}

.faq__answer-inner em {
  font-style: normal;
  color: var(--c-gold);
  font-weight: 400;
}

/* ── Outro (texte + CTA après les questions) ── */
.faq__outro {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  text-align: center;
}

.faq__outro-text {
  font-family: var(--f-text);
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
}

.faq__outro-text em {
  font-style: normal;
  font-weight: 500;
  background: linear-gradient(
    168deg,
    #e8c96a 0%, #c9a32b 20%, #f0d878 38%,
    #ad8d50 55%, #e4c45a 70%, #9a7018 85%, #c5a030 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.faq__outro-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.05rem 2.5rem;
  font-family: var(--f-text);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--c-deep);
  background: linear-gradient(
    168deg,
    #e8c96a 0%, #c9a32b 25%, #f0d878 50%,
    #ad8d50 75%, #c5a030 100%
  );
  border: 1px solid rgba(173, 141, 80, 0.6);
  border-radius: 999px;
  cursor: pointer;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 12px 36px rgba(173, 141, 80, 0.25),
    0 0 40px rgba(173, 141, 80, 0.12);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s ease,
              filter 0.35s ease;
}

.faq__outro-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.faq__outro-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 18px 50px rgba(173, 141, 80, 0.35),
    0 0 60px rgba(173, 141, 80, 0.2);
}

.faq__outro-cta:hover::before {
  transform: translateX(120%);
}

.faq__outro-cta-icon {
  font-size: 0.95rem;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* ── Responsive ── */
@media (max-width: 720px) {
  .faq { padding: 6rem 1.25rem 5rem; }
  .faq__header { margin-bottom: 3rem; }
  .faq__question {
    padding: 1.25rem 1.25rem;
    gap: 0.85rem;
    font-size: 0.95rem;
  }
  .faq__q-icon { width: 28px; height: 28px; }
  .faq__q-icon svg { width: 12px; height: 12px; }
  .faq__answer-inner {
    padding: 0 1.25rem 1.35rem 3rem;
    font-size: 0.92rem;
  }
  .faq__outro { margin-top: 3rem; gap: 1.5rem; }
  .faq__outro-text {
    white-space: normal;
    max-width: 360px;
  }
  .faq__outro-cta {
    padding: 0.95rem 1.75rem;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }
}

/* ═══════════════════════════════════════════════════════
   CTA Final — Section 9
═══════════════════════════════════════════════════════ */
.cta-final {
  display: flex;
  justify-content: center;
  padding: 2rem 2rem 9rem;
  text-align: center;
  background: transparent;
}

.cta-final__inner {
  max-width: 720px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Card ── */
.cta-final__card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 3.5rem 3rem;
  background: rgba(41, 6, 6, 0.55);
  border: 1px solid rgba(173, 141, 80, 0.28);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    0 0 0 1px rgba(173, 141, 80, 0.08) inset,
    0 32px 80px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(173, 141, 80, 0.06);
}

/* ── Dates ── */
.cta-final__dates {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.cta-final__dates-label {
  font-family: var(--f-text);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.cta-final__dates-value {
  font-family: var(--f-first);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #e8c96a 0%, #c9a32b 30%, #f0d878 55%, #ad8d50 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── Countdown ── */
.cta-final__countdown {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 1.5rem 2rem;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(173, 141, 80, 0.18);
  border-radius: 14px;
  width: 100%;
  justify-content: center;
}

.cta-final__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-width: 64px;
}

.cta-final__unit-num {
  font-family: var(--f-first);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c-white);
  font-variant-numeric: tabular-nums;
}

.cta-final__unit-label {
  font-family: var(--f-text);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.30);
}

.cta-final__sep {
  font-family: var(--f-first);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: rgba(173, 141, 80, 0.45);
  line-height: 1;
  padding-top: 0.1rem;
  align-self: flex-start;
}

@media (max-width: 700px) {
  .cta-final__card { padding: 2.5rem 1.5rem; }
  .cta-final__countdown { gap: 0.3rem; padding: 1.2rem 1rem; }
  .cta-final__unit { min-width: 52px; }
  .cta-final__sep { font-size: 1.8rem; }
}

.cta-final__hook {
  font-family: var(--f-first);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--c-white);
}

.cta-final__hook em {
  font-style: normal;
  background: linear-gradient(135deg, #e8c96a 0%, #c9a32b 30%, #f0d878 55%, #ad8d50 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-final__body {
  font-family: var(--f-text);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.60);
}

.cta-final__lock {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(173, 141, 80, 0.08);
  border: 1px solid rgba(173, 141, 80, 0.22);
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  margin-top: 0.5rem;
}

.cta-final__lock-icon { font-style: normal; font-size: 1rem; }

.cta-final__lock-text {
  font-family: var(--f-text);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--c-gold);
  line-height: 1.4;
}

.cta-final__lock-text em { font-style: italic; }

.cta-final__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  padding: 1.1rem 2.75rem;
  font-family: var(--f-text);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--c-deep);
  background: linear-gradient(
    168deg,
    #e8c96a 0%, #c9a32b 25%, #f0d878 50%,
    #ad8d50 75%, #c5a030 100%
  );
  border: 1px solid rgba(173, 141, 80, 0.6);
  border-radius: 999px;
  cursor: pointer;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 12px 36px rgba(173, 141, 80, 0.25),
    0 0 40px rgba(173, 141, 80, 0.12);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s ease,
              filter 0.35s ease;
}

.cta-final__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.cta-final__btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 18px 50px rgba(173, 141, 80, 0.35),
    0 0 60px rgba(173, 141, 80, 0.2);
}

.cta-final__btn:hover::before {
  transform: translateX(120%);
}

@media (max-width: 700px) {
  .cta-final { padding: 1.5rem 2rem 6rem; }
  .cta-final__lock { flex-direction: column; text-align: center; border-radius: 16px; }
}

/* ═══════════════════════════════════════════════════════
   Outro
═══════════════════════════════════════════════════════ */
.outro {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(173, 141, 80, 0.1);
}

.outro__text {
  font-family: var(--f-class);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--c-gold);
  margin-bottom: 1rem;
}

.outro__brand {
  font-family: var(--f-text);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}

/* ═══════════════════════════════════════════════════════
   Testimonials — draggable scatter cards
═══════════════════════════════════════════════════════ */
.testimonials {
  padding: 8rem 2rem 3rem;
}

.testimonials__header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.testimonials__kicker {
  display: block;
  font-family: var(--f-text);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1rem;
}

.testimonials__title {
  font-family: var(--f-first);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--c-white);
  margin-bottom: 0.75rem;
}

.testimonials__hint {
  font-family: var(--f-text);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.06em;
}

/* ── Canvas ── */
.testi-canvas {
  position: relative;
  width: 80%;
  max-width: 1400px;
  height: 880px;
  margin: 0 auto;
  user-select: none;
}

/* ── Card ── */
.testi-card {
  position: absolute;
  width: 292px;
  padding: 1.5rem;
  background: linear-gradient(
    145deg,
    rgba(103, 30, 30, 0.52),
    rgba(41, 6, 6, 0.88)
  );
  border: 1px solid rgba(173, 141, 80, 0.22);
  border-radius: 16px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.45);
  cursor: grab;
  z-index: 10;
  touch-action: none;
}

.testi-card.is-dragging {
  cursor: grabbing;
}

/* ── Card image (screenshot témoignage) ── */
.testi-card--img {
  width: 460px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 14px 44px rgba(0, 0, 0, 0.55),
    0 0 24px rgba(173, 141, 80, 0.05);
  transition: box-shadow 0.35s ease;
}

.testi-card--img:hover {
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(173, 141, 80, 0.12);
}

.testi-card--img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  pointer-events: none;
  -webkit-user-drag: none;
}

/* ── En-tête card ── */
.testi-card__top {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}

/* Photo placeholder — monogramme */
.testi-card__avatar {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-red), var(--c-deep));
  border: 1.5px solid rgba(173, 141, 80, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-class);
  font-size: 1.5rem;
  color: var(--c-gold);
  line-height: 1;
  padding-top: 4px;
}

.testi-card__meta {
  padding-top: 4px;
}

.testi-card__name {
  font-family: var(--f-text);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--c-gold);
  margin-bottom: 2px;
}

.testi-card__role {
  font-family: var(--f-text);
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 3px;
}

.testi-card__stars {
  font-size: 0.72rem;
  color: var(--c-gold);
  letter-spacing: 0.05em;
  opacity: 0.85;
}

/* ── Quote ── */
.testi-card__quote {
  font-family: var(--f-first);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--c-white);
  margin-bottom: 0.85rem;
}

/* ── Corps ── */
.testi-card__body {
  font-family: var(--f-text);
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.52);
}

/* Mobile : grille verticale */
@media (max-width: 900px) {
  .testi-canvas {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }

  .testi-card {
    position: static;
    width: 100%;
    transform: none !important;
  }

  .testi-card--img {
    width: 100%;
    max-width: 420px;
  }
}

/* ── Vidéo témoignages ── */
.testi-video-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: -3rem auto 0;
  padding: 0 2rem;
}

.testi-video-label {
  font-family: var(--f-text);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
}

.testi-video-caption {
  font-family: var(--f-text);
  font-size: 0.9rem;
  font-weight: 300;
  font-style: normal;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.25rem;
  text-align: center;
}

.testi-video-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--c-deep);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(173, 141, 80, 0.06);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.testi-video-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(173, 141, 80, 0.18) inset;
}

.testi-video-frame:hover {
  transform: translateY(-3px);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.7),
    0 0 50px rgba(173, 141, 80, 0.15);
}

.testi-video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

@media (max-width: 600px) {
  .testi-video-wrap { margin-top: 2rem; padding: 0 1.25rem; }
  .testi-video-frame { max-width: 100%; }
}

/* ═══════════════════════════════════════════════════════
   Section 6 — Elles y étaient (Circle feed marquee)
   Fond beige profond, bulles type interface communauté,
   Horizontal Scrolling Slider façon Framer auto-scroll
═══════════════════════════════════════════════════════ */
.circle-feed {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(173, 141, 80, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(103, 30, 30, 0.06) 0%, transparent 55%),
    #f3ebdc;
  padding: 7rem 0 8rem;
  overflow: hidden;
  position: relative;
}

/* Header centré */
.circle-feed__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}

.circle-feed__kicker {
  display: inline-block;
  font-family: var(--f-text);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1.5rem;
}

.circle-feed__title {
  font-family: var(--f-first);
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.015em;
  color: #2a1500;
  margin-bottom: 1rem;
}

.circle-feed__sub {
  font-family: var(--f-text);
  font-size: 0.92rem;
  font-weight: 400;
  font-style: normal;
  color: rgba(42, 21, 0, 0.55);
  letter-spacing: 0.02em;
}

/* Marquee container avec masque dégradé sur les bords */
.circle-feed__marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

/* Track : flex inline + animation linéaire infinie */
.circle-feed__track {
  display: flex;
  gap: 1.75rem;
  width: max-content;
  padding: 1rem 0;
  animation: circleScroll 60s linear infinite;
  will-change: transform;
}

/* Pause au survol — façon Framer auto-scroll */
.circle-feed__marquee:hover .circle-feed__track {
  animation-play-state: paused;
}

@keyframes circleScroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* ── Bubble — style post Circle ── */
.circle-bubble {
  flex-shrink: 0;
  width: 360px;
  background: #ffffff;
  border: 1px solid rgba(42, 21, 0, 0.06);
  border-radius: 18px;
  padding: 1.5rem 1.5rem 1.25rem;
  box-shadow:
    0 1px 2px rgba(42, 21, 0, 0.04),
    0 8px 24px rgba(42, 21, 0, 0.06);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.circle-bubble:hover {
  transform: translateY(-6px);
  box-shadow:
    0 1px 2px rgba(42, 21, 0, 0.04),
    0 14px 36px rgba(42, 21, 0, 0.12),
    0 0 0 1px rgba(173, 141, 80, 0.25);
}

/* Head : avatar + meta */
.circle-bubble__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.circle-bubble__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-text);
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.08);
}

/* Tones d'avatars — variés mais cohérents avec la palette */
.circle-bubble__avatar[data-tone="t1"] { background: linear-gradient(135deg, #b85e3f, #8a3e26); }
.circle-bubble__avatar[data-tone="t2"] { background: linear-gradient(135deg, #8a8a4f, #5e6033); }
.circle-bubble__avatar[data-tone="t3"] { background: linear-gradient(135deg, #d4a829, #9a7018); }
.circle-bubble__avatar[data-tone="t4"] { background: linear-gradient(135deg, #c47a7a, #8e4848); }
.circle-bubble__avatar[data-tone="t5"] { background: linear-gradient(135deg, #671e1e, #3d1010); }

.circle-bubble__meta { line-height: 1.2; }

.circle-bubble__name {
  font-family: var(--f-text);
  font-size: 0.88rem;
  font-weight: 600;
  color: #2a1500;
  margin-bottom: 0.15rem;
}

.circle-bubble__time {
  font-family: var(--f-text);
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(42, 21, 0, 0.45);
}

/* Texte du message */
.circle-bubble__text {
  font-family: var(--f-text);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(42, 21, 0, 0.82);
  margin-bottom: 1rem;
  font-style: normal;
}

/* Réactions style Circle */
.circle-bubble__reactions {
  display: flex;
  gap: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(42, 21, 0, 0.06);
}

.circle-bubble__reactions span {
  font-family: var(--f-text);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(42, 21, 0, 0.5);
  letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 720px) {
  .circle-feed { padding: 5rem 0 6rem; }
  .circle-feed__header { margin-bottom: 2.5rem; padding: 0 1.5rem; }
  .circle-bubble {
    width: 280px;
    padding: 1.25rem 1.25rem 1rem;
  }
  .circle-feed__track {
    gap: 1.25rem;
    animation-duration: 45s;
  }
}

/* Accessibilité — coupe l'auto-scroll si demandé */
@media (prefers-reduced-motion: reduce) {
  .circle-feed__track {
    animation: none;
  }
  .circle-feed__marquee {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .circle-bubble { scroll-snap-align: start; }
}

/* ═══════════════════════════════════════════════════════
   Section 7 — Le Live Final
   Badge LIVE pulsant standard broadcast + ambiance dramatique
═══════════════════════════════════════════════════════ */
.live-final {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(103, 30, 30, 0.5) 0%, transparent 60%),
    var(--c-deep);
  padding: 8rem 2rem 9rem;
  overflow: hidden;
}

/* Spotlight subtil qui respire derrière le titre */
.live-final__spotlight {
  position: absolute;
  top: 18%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(230, 57, 70, 0.18) 0%, transparent 55%);
  filter: blur(40px);
  pointer-events: none;
  animation: liveSpotlight 5s ease-in-out infinite;
}

@keyframes liveSpotlight {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50%      { opacity: 1;   transform: translateX(-50%) scale(1.08); }
}

.live-final__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

/* ── Live Badge — standard broadcast (Twitch / YouTube) ── */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 1.1rem 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(230, 57, 70, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 30px rgba(230, 57, 70, 0.15);
  margin-bottom: 2.5rem;
}

.live-badge__dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e63946;
  box-shadow:
    0 0 8px rgba(230, 57, 70, 0.9),
    0 0 16px rgba(230, 57, 70, 0.4),
    inset 0 0 4px rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
  animation: liveDotBreathe 1.8s ease-in-out infinite;
}

@keyframes liveDotBreathe {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 0 8px rgba(230, 57, 70, 0.9),
      0 0 16px rgba(230, 57, 70, 0.4),
      inset 0 0 4px rgba(255, 255, 255, 0.3);
  }
  50% {
    transform: scale(1.15);
    box-shadow:
      0 0 14px rgba(230, 57, 70, 1),
      0 0 28px rgba(230, 57, 70, 0.55),
      inset 0 0 4px rgba(255, 255, 255, 0.4);
  }
}

/* Anneaux pulsants en expansion */
.live-badge__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #e63946;
  animation: livePulse 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.live-badge__pulse--2 {
  animation-delay: 1s;
}

@keyframes livePulse {
  0%   { transform: scale(1);   opacity: 0.9; }
  100% { transform: scale(4);   opacity: 0;   }
}

.live-badge__label {
  font-family: var(--f-text);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
}

/* ── Kicker, titre, sub ── */
.live-final__kicker {
  display: block;
  font-family: var(--f-text);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1.25rem;
}

.live-final__title {
  font-family: var(--f-first);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
  background: linear-gradient(
    168deg,
    #e8c96a 0%,
    #c9a32b 18%,
    #f0d878 32%,
    #ad8d50 48%,
    #e4c45a 62%,
    #9a7018 76%,
    #c5a030 88%,
    #7a5508 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.live-final__sub {
  font-family: var(--f-class);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 3rem;
  letter-spacing: 0.01em;
}

/* ── Corps du texte ── */
.live-final__body {
  font-family: var(--f-text);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.72);
  max-width: 620px;
  margin: 0 auto;
}

.live-final__body p { margin-bottom: 2rem; }
.live-final__body p:last-child { margin-bottom: 0; }

/* ── Quote — style Spotlight cinéma (italic serif, halo gold/red) ── */
.live-final__quote {
  position: relative;
  margin: 3.5rem auto;
  padding: 1rem 1.5rem;
  max-width: 640px;
  text-align: center;
  isolation: isolate;
}

/* Halo doré/rouge en arrière-plan — pulse lent */
.live-final__quote-halo {
  position: absolute;
  inset: -30% -10%;
  background:
    radial-gradient(ellipse 60% 50% at 30% 50%, rgba(230, 57, 70, 0.28) 0%, transparent 60%),
    radial-gradient(ellipse 55% 50% at 70% 50%, rgba(173, 141, 80, 0.32) 0%, transparent 60%);
  filter: blur(40px);
  z-index: -1;
  animation: quoteHaloBreathe 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes quoteHaloBreathe {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.05); }
}

/* Texte de la quote — Cormorant Garamond italic, large, aéré */
.live-final__quote-text {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 720px) {
  .live-final__quote { margin: 2.5rem auto; padding: 0.5rem 0.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  .live-final__quote-halo { animation: none; }
}

/* ── CTA Réserver mon accès ── */
.live-final__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 3rem;
  padding: 1.05rem 2.5rem;
  font-family: var(--f-text);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--c-deep);
  background: linear-gradient(
    168deg,
    #e8c96a 0%, #c9a32b 25%, #f0d878 50%,
    #ad8d50 75%, #c5a030 100%
  );
  border: 1px solid rgba(173, 141, 80, 0.6);
  border-radius: 999px;
  cursor: pointer;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 12px 36px rgba(173, 141, 80, 0.25),
    0 0 40px rgba(173, 141, 80, 0.12);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s ease,
              filter 0.35s ease;
  z-index: 2;
}

.live-final__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.live-final__cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 18px 50px rgba(173, 141, 80, 0.35),
    0 0 60px rgba(173, 141, 80, 0.2);
}

.live-final__cta:hover::before {
  transform: translateX(120%);
}

.live-final__cta-icon {
  font-size: 0.95rem;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* Responsive */
@media (max-width: 720px) {
  .live-final { padding: 5rem 1.5rem 6rem; }
  .live-final__spotlight { width: 500px; height: 500px; }
  .live-final__body { font-size: 0.95rem; line-height: 1.7; }
  .live-final__quote { padding: 1.75rem 0.5rem; margin: 2rem 0; }
}

/* Accessibilité — désactive l'expansion infinie si demandé */
@media (prefers-reduced-motion: reduce) {
  .live-badge__pulse,
  .live-badge__dot,
  .live-final__spotlight {
    animation: none;
  }
  .live-badge__dot { opacity: 1; }
}

