/* =============================================================
   TOKENS
============================================================= */
:root {
  --bg:          #08080E;
  --bg-2:        #0D0D1C;
  --bg-3:        #101026;
  --gold:        #D4AF37;
  --gold-hover:  #F0C84A;
  --gold-border: rgba(212,175,55,0.22);
  --gold-glow:   rgba(212,175,55,0.15);
  --gold-dim:    rgba(212,175,55,0.08);
  --glass:       rgba(255,255,255,0.04);
  --glass-hover: rgba(255,255,255,0.07);
  --white:       #FFFFFF;
  --muted:       #9898A8;
  --line:        rgba(255,255,255,0.07);

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  --nav-h:    72px;
  --radius:   14px;
  --radius-lg:22px;

  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --section-py: clamp(5rem, 10vw, 9rem);
  --gap:        clamp(1.25rem, 4vw, 2rem);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
p { text-wrap: pretty; }
h1, h2, h3 {
  font-family: var(--serif);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
::selection { background: var(--gold); color: var(--bg); }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   UTILITIES
============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--gold); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-weight: 600; font-size: .875rem;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.section-kicker {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

/* =============================================================
   BUTTONS
============================================================= */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .7rem 1.5rem;
  border-radius: 6px;
  background: var(--gold);
  color: var(--bg);
  border: 1.5px solid var(--gold);
  transition: background .25s var(--ease), box-shadow .25s var(--ease), transform .2s var(--ease);
  white-space: nowrap;
  will-change: transform;
}
.btn-gold:hover {
  background: var(--gold-hover);
  box-shadow: 0 0 32px rgba(212,175,55,0.45), 0 8px 32px rgba(212,175,55,0.25);
  transform: translateY(-2px);
}

.btn-large {
  font-size: 1rem;
  padding: 1.1rem 3rem;
  border-radius: 8px;
  letter-spacing: .1em;
}

/* Shimmer */
.btn-shimmer {
  position: relative;
  overflow: hidden;
}
.btn-shimmer::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255,255,255,0.35) 50%,
    transparent 60%
  );
  transition: left .65s var(--ease);
}
.btn-shimmer:hover::before { left: 160%; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .05em;
  padding: .85rem 2.25rem;
  border-radius: 8px;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  background: transparent;
  transition: background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s;
  will-change: transform;
}
.btn-outline:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  box-shadow: 0 0 24px var(--gold-glow);
}

/* =============================================================
   NAVIGATION
============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s;
}
.nav.scrolled {
  background: rgba(8,8,14,0.9);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  box-shadow: 0 1px 0 var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
  gap: 2rem;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .02em;
  flex-shrink: 0;
  margin-right: auto;
  transition: opacity .2s;
}
.nav-logo:hover { opacity: .8; }

.nav-links {
  display: none;
  gap: 2.25rem;
  align-items: center;
}
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-link {
  font-size: .85rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .02em;
  transition: color .2s;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 0; right: 100%;
  height: 1px; background: var(--gold);
  transition: right .3s var(--ease);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { right: 0; }

.nav-cta {
  display: none;
  font-size: .78rem;
  padding: .55rem 1.25rem;
}
@media (min-width: 768px) { .nav-cta { display: inline-flex; } }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
}
@media (min-width: 768px) { .hamburger { display: none; } }

.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  background: rgba(8,8,14,0.97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  transition: max-height .4s var(--ease), padding .35s var(--ease);
  border-top: 1px solid transparent;
}
.nav-mobile.open {
  max-height: 360px;
  padding-block: 1.5rem;
  border-top-color: var(--line);
}
.nav-mobile-link {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--muted);
  padding: .75rem clamp(1.25rem, 5vw, 2.5rem);
  border-bottom: 1px solid var(--line);
  transition: color .2s, background .2s;
}
.nav-mobile-link:hover { color: var(--white); background: var(--glass); }
.nav-mobile-cta {
  margin: 1.25rem clamp(1.25rem, 5vw, 2.5rem) 0;
  align-self: flex-start;
}

/* =============================================================
   HERO — 2-column: texte gauche + freebie droite
============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Fallback quand la photo n'est pas encore uploadée */
  background: linear-gradient(135deg, #0D0D1E 0%, #080812 60%, #0A0A16 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 40% top;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    120deg,
    rgba(8,8,14,0.88) 0%,
    rgba(8,8,14,0.72) 45%,
    rgba(8,8,14,0.55) 100%
  );
}

.hero-grain {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none; opacity: .03; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* Radial glow at bottom center */
.hero-glow {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    ellipse 70% 55% at 50% 110%,
    rgba(212,175,55,0.07) 0%,
    transparent 70%
  );
}

/* Inner grid */
.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
  padding-block: calc(var(--nav-h) + 2rem) 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr 460px;
    gap: 5rem;
    padding-block: calc(var(--nav-h) + 4rem) 5rem;
  }
}

/* Sur mobile : freebie en premier, texte ensuite */
@media (max-width: 959px) {
  .hero-right { order: -1; }
  .hero-left  { order:  0; }
}

/* Fix overflow mobile : les colonnes ne dépassent pas */
.hero-left,
.hero-right {
  min-width: 0;
  width: 100%;
}

.hero-freebie {
  width: 100%;
  box-sizing: border-box;
}

/* Bouton pleine largeur dans la carte freebie */
.hero-freebie .btn-gold {
  width: 100%;
  white-space: normal;
  text-align: center;
}

/* Sur mobile : carte légèrement transparente pour voir la photo */
@media (max-width: 959px) {
  .hero-freebie {
    backdrop-filter: blur(10px) saturate(140%);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
    background: rgba(8, 8, 18, 0.52);
    border-color: rgba(212, 175, 55, 0.35);
  }
}

/* Left column */
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 100px;
  padding: .5rem 1.25rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,0.9);
  /* opacity/transform controlled by JS */
}
.hero-badge-star { font-size: .85rem; }

/* Title — em is gold but NOT italic (fixes the ornate J issue) */
.hero-title {
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
  /* opacity/transform controlled by JS */
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.68);
  line-height: 1.65;
  /* opacity/transform controlled by JS */
}

/* Right column — freebie card */
.hero-right {
  /* opacity/transform controlled by JS */
}

.hero-freebie {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(212,175,55,0.28);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  padding: clamp(2rem, 4vw, 2.75rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
  box-shadow:
    0 0 0 1px rgba(212,175,55,0.12),
    0 24px 80px rgba(0,0,0,0.45),
    0 0 60px rgba(212,175,55,0.04);
}

.hero-freebie-title {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
}

.hero-freebie-desc {
  font-size: .93rem;
  color: var(--muted);
  line-height: 1.6;
}
.hero-freebie-desc strong {
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* Scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0; /* revealed by JS after 1.2s */
}
.hero-scroll-bar {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollDrop 2.2s ease-in-out infinite;
  margin-inline: auto;
}
@keyframes scrollDrop {
  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; }
}

/* Protocole card eyebrow (shared with hero-freebie and protocole-rappel) */
.protocole-eyebrow {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: .32rem 1rem;
  border-radius: 20px;
}

/* Protocole list (shared) */
.protocole-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  width: 100%;
}
.protocole-list li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  font-size: .9rem;
  color: rgba(255,255,255,0.82);
}
.bullet {
  color: var(--gold);
  font-size: .72rem;
  flex-shrink: 0;
  margin-top: .22rem;
}

.protocole-micro {
  font-size: .75rem;
  color: var(--muted);
  margin-top: -.25rem;
  text-align: center;
  width: 100%;
}

/* =============================================================
   STATS BENTO
============================================================= */
.stats {
  background: var(--bg-2);
  padding-block: var(--section-py);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: clamp(2rem, 5vw, 3rem) 1.25rem;
  background: var(--glass);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-align: center;
  transition: background .3s, border-color .3s, transform .35s var(--ease), box-shadow .35s;
  opacity: 0;
  transform: translateY(30px);
}
.stat-card.visible {
  opacity: 1;
  transform: none;
}
.stat-card:hover {
  background: var(--glass-hover);
  border-color: rgba(212,175,55,0.4);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(212,175,55,0.1);
}

/* Wide card on mobile (1st card takes full row) */
@media (max-width: 767px) {
  .stat-card--wide {
    grid-column: 1 / -1;
  }
}

/* Accent card */
.stat-card--accent {
  background: rgba(212,175,55,0.06);
  border-color: rgba(212,175,55,0.35);
}

.stat-num, .stat-icon {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-icon { font-size: clamp(2rem, 4vw, 2.75rem); }

.stat-pyramid {
  width: 54px;
  height: 47px;
  flex-shrink: 0;
}

.stat-label {
  font-size: .82rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.4;
}

/* =============================================================
   RATINGS — Enquête de satisfaction
============================================================= */
.ratings {
  background: var(--bg);
  padding-block: var(--section-py);
  border-top: 1px solid var(--line);
}

.ratings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .ratings-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.rating-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .6rem;
  padding: clamp(1.75rem, 4vw, 2.5rem) 1rem;
  background: var(--glass);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background .3s, border-color .3s, transform .35s var(--ease), box-shadow .35s;
  opacity: 0;
  transform: translateY(28px);
}
.rating-card.visible {
  opacity: 1;
  transform: none;
}
.rating-card:hover {
  background: var(--glass-hover);
  border-color: rgba(212,175,55,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(212,175,55,0.1);
}

.rating-card--highlight {
  background: rgba(212,175,55,0.07);
  border-color: rgba(212,175,55,0.35);
}

.rating-score {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.rating-score small {
  font-family: var(--sans);
  font-size: .55em;
  color: var(--muted);
  font-weight: 400;
}

.rating-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: .05em;
  line-height: 1;
}

.rating-label {
  font-size: .78rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.45;
}

/* =============================================================
   PHOTO STRIP
============================================================= */
.photo-strip {
  overflow: hidden;
  background: var(--bg);
  line-height: 0;
}

.photo-strip-inner {
  display: grid;
  grid-template-columns: 58% 42%;
  height: clamp(280px, 42vw, 560px);
}

@media (max-width: 600px) {
  .photo-strip-inner {
    grid-template-columns: 1fr 1fr;
    height: clamp(220px, 58vw, 340px);
  }
}

.photo-strip-item {
  position: relative;
  overflow: hidden;
}

.photo-strip-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.photo-strip-item:hover img {
  transform: scale(1.06);
}

/* Gradient overlay bottom → transparent + darkens edges */
.photo-strip-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,14,0.15) 0%,
    transparent 35%,
    rgba(8,8,14,0.55) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Gold divider line between the two photos */
.photo-strip-item--right {
  border-left: 1px solid rgba(212,175,55,0.2);
}


/* =============================================================
   TESTIMONIALS
============================================================= */
.testimonials {
  background: var(--bg-3);
  padding-block: var(--section-py);
}

.carousel-wrap {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 1.25rem;
  transition: transform .5s var(--ease);
  will-change: transform;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.carousel-track:active { cursor: grabbing; }

.testi-card {
  flex: 0 0 clamp(280px, 80vw, 360px);
  background: var(--glass);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2rem 1.75rem 1.75rem;
  transition: border-color .3s, box-shadow .3s;
  pointer-events: none;
}
.testi-card:first-child { margin-left: 0; }

.testi-quote {
  font-family: var(--serif);
  font-size: 3.5rem;
  line-height: .75;
  color: var(--gold);
  opacity: .65;
  margin-bottom: 1rem;
}

.testi-card p {
  font-size: .93rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  font-style: italic;
  pointer-events: none;
}

.testi-name {
  margin-top: .75rem;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold);
  font-style: normal !important;
  letter-spacing: .06em;
}

/* Carousel nav */
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  color: var(--muted);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, color .2s, background .2s, box-shadow .2s, transform .2s var(--ease);
  flex-shrink: 0;
}
.carousel-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
  box-shadow: 0 0 20px var(--gold-glow);
  transform: scale(1.08);
}
.carousel-btn:active { transform: scale(0.96); }

.carousel-dots {
  display: flex;
  gap: .5rem;
  align-items: center;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--muted);
  border: none; padding: 0;
  cursor: pointer;
  transition: background .3s, transform .3s var(--ease), width .3s var(--ease);
}
.dot.active {
  background: var(--gold);
  transform: scale(1.6);
}

/* Video block */
.video-block {
  margin-top: clamp(4rem, 8vw, 6rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  opacity: 0;
  transform: translateY(30px);
}
.video-block.visible { opacity: 1; transform: none; }

/* Vidéo pleine largeur */
.video-block {
  align-items: stretch;
}
.video-block .video-frame {
  width: 100%;
  max-width: 100%;
}

.video-label {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  text-align: center;
}

.video-frame {
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.65);
  background: #000;
}
.video-frame iframe {
  width: 100%; height: 100%;
  border: 0;
}

/* =============================================================
   PROTOCOLE RAPPEL
============================================================= */
.protocole-rappel {
  background: var(--bg-2);
  padding-block: var(--section-py);
  border-top: 1px solid var(--line);
}

.protocole-rappel-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  max-width: 560px;
  margin-inline: auto;
  opacity: 0;
  transform: translateY(30px);
}
.protocole-rappel-inner.visible { opacity: 1; transform: none; }

.protocole-rappel-sub {
  font-size: 1.05rem;
  color: var(--muted);
}

/* =============================================================
   ABOUT
============================================================= */
.about {
  background: var(--bg);
  padding-block: var(--section-py);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 7vw, 5rem);
  align-items: center;
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 460px 1fr; }
}

.about-photo-wrap {
  opacity: 0;
  transform: translateX(-40px);
}
.about-photo-wrap.visible { opacity: 1; transform: none; }

.about-photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--gold-border);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  background: var(--bg-2);
  position: relative;
}

/* Vignette overlay to soften background in photo */
.about-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 30%,
    transparent 40%,
    rgba(8,8,14,0.45) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.about-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 10%;
  transition: transform .8s var(--ease-soft);
}
.about-photo-frame:hover .about-photo { transform: scale(1.04); }

.about-text {
  opacity: 0;
  transform: translateX(40px);
}
.about-text.visible { opacity: 1; transform: none; }

.about-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-top: .5rem;
  margin-bottom: 2rem;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.about-body p { color: rgba(255,255,255,0.72); font-size: 1rem; line-height: 1.8; }

.about-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.12rem !important;
  color: var(--gold) !important;
  padding-left: 1.25rem;
  border-left: 2px solid var(--gold);
  line-height: 1.6 !important;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}
.badge {
  font-size: .78rem;
  font-weight: 600;
  padding: .45rem 1rem;
  border-radius: 20px;
  background: var(--glass);
  border: 1px solid var(--gold-border);
  color: rgba(255,255,255,0.85);
  letter-spacing: .02em;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* =============================================================
   SOCIAL
============================================================= */
.social {
  background: var(--bg-2);
  padding-block: var(--section-py);
  border-top: 1px solid var(--line);
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 540px) {
  .social-grid { grid-template-columns: repeat(3, 1fr); }
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  padding: clamp(2rem, 5vw, 2.75rem) 1.5rem;
  background: var(--glass);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-align: center;
  transition: background .3s, border-color .3s, transform .35s var(--ease), box-shadow .35s;
  opacity: 0;
  transform: translateY(30px);
  will-change: transform;
}
.social-card.visible { opacity: 1; transform: translateY(0); }
.social-card:hover {
  background: var(--glass-hover);
  border-color: rgba(212,175,55,0.5);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(212,175,55,0.12), 0 0 0 1px rgba(212,175,55,0.2);
}

.social-icon {
  width: 48px; height: 48px;
  color: var(--gold);
  transition: transform .3s var(--ease);
}
.social-card:hover .social-icon { transform: scale(1.18); }
.social-icon svg { width: 100%; height: 100%; }

.social-platform {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}
.social-handle {
  font-size: .82rem;
  color: var(--muted);
}
.social-arrow {
  font-size: .85rem;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .25s, transform .25s var(--ease);
}
.social-card:hover .social-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* =============================================================
   CONTACT
============================================================= */
.contact {
  background: var(--bg-3);
  padding-block: var(--section-py);
}

.contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  max-width: 560px;
  margin-inline: auto;
  opacity: 0;
  transform: translateY(30px);
}
.contact-inner.visible { opacity: 1; transform: none; }

.contact-sub {
  color: var(--muted);
  font-size: 1.1rem;
  margin-top: -.5rem;
}

.contact-email {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-style: italic;
  color: var(--gold);
  position: relative;
  padding-bottom: 2px;
  transition: opacity .2s;
}
.contact-email::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 100%;
  height: 1px; background: var(--gold);
  transition: right .4s var(--ease);
}
.contact-email:hover { opacity: .85; }
.contact-email:hover::after { right: 0; }

/* =============================================================
   FOOTER
============================================================= */
.footer {
  background: #050508;
  padding-block: 3rem;
  border-top: 1px solid var(--line);
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
  text-align: center;
}
@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .02em;
  transition: opacity .2s;
}
.footer-logo:hover { opacity: .8; }

.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  font-size: .85rem;
  color: var(--muted);
  transition: color .2s;
}
.footer-links a:hover { color: var(--white); }

.footer-social {
  display: flex;
  gap: 1.25rem;
}
.footer-social a {
  color: var(--muted);
  transition: color .2s, transform .2s var(--ease);
  display: flex;
}
.footer-social a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 1.75rem;
  text-align: center;
}
.footer-bottom p {
  font-size: .78rem;
  color: rgba(160,160,170,0.4);
  letter-spacing: .04em;
}

/* =============================================================
   REVEAL TRANSITIONS (fallback CSS)
   Elements start opacity:0 + transform. JS adds .visible.
============================================================= */
.stat-card,
.rating-card,
.about-photo-wrap,
.about-text,
.video-block,
.protocole-rappel-inner,
.contact-inner,
.social-card {
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
/* Stagger delays for stat cards */
.stat-card:nth-child(2) { transition-delay: .1s; }
.stat-card:nth-child(3) { transition-delay: .2s; }
.stat-card:nth-child(4) { transition-delay: .3s; }

/* =============================================================
   RESPONSIVE FINE-TUNING
============================================================= */
@media (max-width: 540px) {
  .hero-title { font-size: 2.5rem; }
  .hero-freebie { padding: 1.75rem 1.5rem; }
  .protocole-list { font-size: .88rem; }
  .btn-large { padding: 1rem 2rem; font-size: .95rem; }
  .about-grid { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; }
  .video-frame { max-width: 100%; }
}

@media (min-width: 1024px) {
  .stats-grid { gap: 1.5rem; }
  .social-grid { gap: 1.5rem; }
}
