/* ============================================
   SARAH SALOMÉE — DESIGN SYSTEM
   L'art de la vérité dans le lien.
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=Jost:wght@300;400;500;600&display=swap');

/* ============================================
   1. TOKENS
   ============================================ */
:root {
  /* Palette — or, encre, terracotta */
  --or-profond: #B8973A;
  --or-clair:   #D4B96A;
  --champagne:  #E8D7B5;
  --terracotta: #A86B45;
  --encre:      #2C2518;
  --bronze:     #6B5E45;
  --ivoire:     #FAF7F2;
  --sable:      #F5F1E8;
  --creme:      #F0EAE0;

  /* Typographies */
  --serif: 'Cormorant Garamond', 'Georgia', serif;
  --sans:  'Jost', 'Helvetica Neue', system-ui, sans-serif;

  /* Rythme */
  --container: 1200px;
  --container-text: 820px;

  /* Easings & durées */
  --ease-soft:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:   cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-fast:     200ms;
  --t-base:     400ms;
  --t-slow:     700ms;

  /* Ombres dorées subtiles */
  --shadow-gold-sm: 0 8px 24px rgba(184, 151, 58, 0.08);
  --shadow-gold-md: 0 18px 40px rgba(184, 151, 58, 0.12);
  --shadow-gold-lg: 0 30px 70px rgba(184, 151, 58, 0.18);
}

/* ============================================
   2. RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--encre);
  background: var(--ivoire);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }

::selection { background: var(--or-clair); color: var(--encre); }

/* ============================================
   3. TYPOGRAPHIE
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--encre);
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.75rem, 7vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}
h1 em { font-style: italic; color: var(--or-profond); }

h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}
h2 em { font-style: italic; color: var(--or-profond); }

h3 { font-size: 1.5rem; line-height: 1.25; }
h4 { font-size: 1.15rem; line-height: 1.3; }

p { margin: 0 0 1rem; }

.lead {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.55;
  color: var(--bronze);
  font-weight: 400;
  margin-bottom: 1.5rem;
  text-wrap: pretty;
}

em { font-style: italic; }
strong { font-weight: 600; color: var(--encre); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--or-profond);
}
.eyebrow::before, .eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.eyebrow.no-lines::before,
.eyebrow.no-lines::after { display: none; }

.text-center { text-align: center; }

/* ============================================
   4. LAYOUT
   ============================================ */
section { padding: 6rem 2rem; position: relative; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 0; /* sections own padding */
}
@media (min-width: 1280px) { .container { padding: 0; } }

.container-text {
  max-width: var(--container-text);
  margin: 0 auto;
}

.section-sable { background: var(--sable); }
.section-creme { background: var(--creme); }
.section-ivoire { background: var(--ivoire); }
.section-encre {
  background: var(--encre);
  color: var(--ivoire);
  padding: 6rem 2rem;
}
.section-encre h1, .section-encre h2, .section-encre h3 { color: var(--ivoire); }
.section-encre h1 em, .section-encre h2 em, .section-encre h3 em { color: var(--or-clair); }
.section-encre .lead { color: var(--champagne); }

/* ============================================
   5. NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base) ease, background var(--t-base) ease, box-shadow var(--t-base) ease;
}
.nav.is-scrolled {
  border-bottom-color: rgba(184, 151, 58, 0.12);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 8px 24px rgba(184, 151, 58, 0.05);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--encre);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color var(--t-fast) ease;
}
.nav-logo:hover { color: var(--or-profond); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--encre);
  text-decoration: none;
  position: relative;
  padding: 0.4rem 0;
  transition: color var(--t-fast) ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--or-profond);
  transform-origin: right;
  transform: scaleX(0);
  transition: transform var(--t-base) var(--ease-soft);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform-origin: left;
  transform: scaleX(1);
}
.nav-links a:hover,
.nav-links a.active { color: var(--or-profond); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  width: 32px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--encre);
  border-radius: 2px;
  transition: transform var(--t-base) var(--ease-soft), opacity var(--t-fast) ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---- Dropdown Alliance ---- */
.nav-links .has-dropdown {
  position: relative;
}
.nav-links .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}
.nav-links .dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  margin-left: 0.15rem;
  opacity: 0.55;
  transition: transform var(--t-base) var(--ease-soft), opacity var(--t-fast) ease;
}
.nav-links .has-dropdown:hover .dropdown-toggle::after,
.nav-links .has-dropdown.is-open .dropdown-toggle::after {
  transform: rotate(-135deg) translateY(0);
  opacity: 1;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 220px;
  background: var(--ivoire);
  border: 1px solid rgba(184, 151, 58, 0.15);
  border-radius: 1rem;
  padding: 0.5rem;
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 16px 40px rgba(44, 37, 24, 0.10),
              0 2px 6px rgba(44, 37, 24, 0.04);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base) ease,
              transform var(--t-base) var(--ease-soft);
  z-index: 50;
}
/* Invisible bridge so the menu doesn't close as the cursor crosses the gap */
.dropdown-menu::before {
  content: '';
  position: absolute;
  inset: -10px 0 auto 0;
  height: 12px;
}
.nav-links .has-dropdown:hover .dropdown-menu,
.nav-links .has-dropdown:focus-within .dropdown-menu,
.nav-links .has-dropdown.is-open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu li { width: 100%; }
.dropdown-menu a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  padding: 0.7rem 0.9rem;
  border-radius: 0.75rem;
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--encre);
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0;
  transition: background var(--t-fast) ease, color var(--t-fast) ease;
}
.dropdown-menu a::after { display: none !important; }
.dropdown-menu a small {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--bronze);
  letter-spacing: 0;
  text-transform: none;
}
.dropdown-menu a:hover,
.dropdown-menu a.active {
  background: var(--creme);
  color: var(--or-profond);
}
.dropdown-menu a:hover small,
.dropdown-menu a.active small {
  color: var(--or-profond);
  opacity: 0.85;
}

@media (max-width: 820px) {
  /* Mobile: dropdown items inlined, indented */
  .nav-links .has-dropdown { width: 100%; }
  .nav-links .dropdown-toggle::after { margin-left: auto; }
  .dropdown-menu {
    position: static;
    transform: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0 0 0.5rem 1rem;
    opacity: 1;
    pointer-events: auto;
    min-width: 0;
    width: 100%;
    display: none;
  }
  .nav-links .has-dropdown.is-open .dropdown-menu {
    display: flex;
  }
  .dropdown-menu a {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--creme);
  }
  .dropdown-menu li:last-child a { border-bottom: 0; }
}

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--ivoire);
    padding: 1rem 2rem 2rem;
    border-bottom: 1px solid rgba(184, 151, 58, 0.15);
    box-shadow: 0 12px 24px rgba(0,0,0,0.04);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--t-base) var(--ease-soft), opacity var(--t-base) ease;
  }
  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--creme);
    font-size: 1rem;
  }
  .nav-links li:last-child a { border-bottom: 0; }
}

/* ============================================
   6. BOUTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.05rem 2.1rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition:
    transform var(--t-base) var(--ease-soft),
    background var(--t-base) var(--ease-soft),
    color var(--t-base) ease,
    border-color var(--t-base) ease,
    box-shadow var(--t-base) ease;
  margin-right: 0.75rem;
  margin-bottom: 0.5rem;
}
.btn:focus-visible {
  outline: 2px solid var(--or-profond);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--or-profond);
  color: var(--ivoire);
  border-color: var(--or-profond);
  box-shadow: 0 8px 24px rgba(184, 151, 58, 0.25);
}
.btn-primary:hover {
  background: var(--encre);
  border-color: var(--encre);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 36px rgba(184, 151, 58, 0.35), 0 0 0 4px rgba(212, 185, 106, 0.15);
}

.btn-outline {
  background: transparent;
  color: var(--encre);
  border-color: rgba(44, 37, 24, 0.2);
}
.btn-outline:hover {
  border-color: var(--or-profond);
  color: var(--or-profond);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(184, 151, 58, 0.12);
}

.section-encre .btn-outline {
  color: var(--ivoire);
  border-color: rgba(250, 247, 242, 0.3);
}
.section-encre .btn-outline:hover {
  border-color: var(--or-clair);
  color: var(--or-clair);
}

/* Icône à l'intérieur d'un bouton */
.btn .icon { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary .icon { stroke: currentColor; }

/* ============================================
   7. ICÔNES (Lucide-like, fine ligne)
   ============================================ */
.icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: transform var(--t-base) var(--ease-soft), color var(--t-fast) ease;
}
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 22px; height: 22px; }
.icon-lg { width: 28px; height: 28px; }

/* Petits “dot” signature pour metas */
.dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--or-clair);
  vertical-align: middle;
}

/* ============================================
   8. CARTES — hover doré uniforme
   ============================================ */
.action-card,
.voie-card,
.which-card,
.timeline-card,
.info-card,
.format-card,
.protagoniste-card,
.sensoriel-card,
.moment-card,
.hostility-card,
.faq-item {
  will-change: transform;
}

/* Image placeholder (rayures monospace, sobre) */
.img-placeholder {
  position: relative;
  background:
    repeating-linear-gradient(135deg,
      var(--creme) 0px, var(--creme) 12px,
      var(--sable) 12px, var(--sable) 24px);
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.img-placeholder span {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.78rem;
  color: var(--bronze);
  opacity: 0.7;
  letter-spacing: 0.05em;
  padding: 1rem 1.5rem;
  background: rgba(250, 247, 242, 0.6);
  border-radius: 999px;
  text-align: center;
}

/* Photos avec zoom doux au survol */
.photo-frame {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  background: var(--creme);
  isolation: isolate;
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease-soft), filter var(--t-base) ease;
}
.photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 37, 24, 0.08), transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.photo-frame:hover img {
  transform: scale(1.04);
}
.photo-frame.warm-tint::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 151, 58, 0.06), transparent 60%);
  z-index: 2;
  pointer-events: none;
}

/* ============================================
   9. FOOTER
   ============================================ */
.footer {
  background: var(--encre);
  color: var(--champagne);
  padding: 5rem 2rem 2rem;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(232, 215, 181, 0.15);
}
.footer-brand h4 {
  font-family: var(--serif);
  color: var(--ivoire);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.footer-brand p {
  color: var(--champagne);
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 360px;
  opacity: 0.8;
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--or-clair);
  font-weight: 600;
  margin: 0 0 1.25rem;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col a {
  color: var(--champagne);
  text-decoration: none;
  font-size: 0.92rem;
  opacity: 0.8;
  transition: color var(--t-fast) ease, opacity var(--t-fast) ease, padding-left var(--t-base) var(--ease-soft);
  position: relative;
}
.footer-col a:hover {
  color: var(--or-clair);
  opacity: 1;
  padding-left: 8px;
}
.footer-col a:hover::before {
  content: '—';
  position: absolute;
  left: -8px;
  color: var(--or-clair);
}
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--champagne);
  opacity: 0.6;
  font-size: 0.8rem;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ============================================
   10. ANIMATIONS — Reveal au scroll
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease-soft),
    transform 0.8s var(--ease-soft);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* Délais en cascade (utilisables via .reveal-1..6 ou data-stagger sur parent) */
.reveal-1 { transition-delay: 0.05s; }
.reveal-2 { transition-delay: 0.18s; }
.reveal-3 { transition-delay: 0.30s; }
.reveal-4 { transition-delay: 0.42s; }
.reveal-5 { transition-delay: 0.54s; }
.reveal-6 { transition-delay: 0.66s; }

/* Stagger automatique : applique reveal sur enfants d'un .stagger */
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s var(--ease-soft),
    transform 0.7s var(--ease-soft);
}
.stagger.is-in > * {
  opacity: 1;
  transform: translateY(0);
}
.stagger.is-in > *:nth-child(1) { transition-delay: 0.00s; }
.stagger.is-in > *:nth-child(2) { transition-delay: 0.10s; }
.stagger.is-in > *:nth-child(3) { transition-delay: 0.20s; }
.stagger.is-in > *:nth-child(4) { transition-delay: 0.30s; }
.stagger.is-in > *:nth-child(5) { transition-delay: 0.40s; }
.stagger.is-in > *:nth-child(6) { transition-delay: 0.50s; }
.stagger.is-in > *:nth-child(7) { transition-delay: 0.60s; }
.stagger.is-in > *:nth-child(8) { transition-delay: 0.70s; }

/* Compteurs animés */
.counter {
  font-variant-numeric: tabular-nums;
}

/* Désactivation pour utilisateurs sensibles */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .stagger > * { opacity: 1 !important; transform: none !important; }
}

/* ============================================
   11. FORMULAIRES (page contact)
   ============================================ */
.field {
  display: block;
  margin-bottom: 1.25rem;
}
.field label {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.95rem 1.15rem;
  border: 1px solid var(--creme);
  border-radius: 14px;
  background: white;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--encre);
  transition: border-color var(--t-fast) ease, box-shadow var(--t-fast) ease, background var(--t-fast) ease;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--or-profond);
  box-shadow: 0 0 0 4px rgba(212, 185, 106, 0.18);
}
.field textarea { resize: vertical; min-height: 140px; }

.btn[disabled],
.btn.is-loading {
  pointer-events: none;
  opacity: 0.7;
}
.btn.is-loading .icon-spinner {
  display: inline-block;
  width: 16px; height: 16px;
  border: 1.5px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================
   12. COMPOSANTS — cartes, prose, formulaires, témoignages
   ============================================ */

/* Container narrow */
.container-narrow {
  max-width: 760px;
  margin: 0 auto;
}

/* Prose */
.prose p {
  font-size: 1.075rem;
  line-height: 1.75;
  color: var(--encre);
  margin-bottom: 1.4rem;
  text-wrap: pretty;
}
.prose strong { color: var(--encre); font-weight: 600; }
.prose em { font-style: italic; }

/* Generic 3-col grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 980px) {
  .grid-3 { grid-template-columns: 1fr; }
}

/* Card générique */
.card {
  background: white;
  border: 1px solid var(--creme);
  border-radius: 1.5rem;
  padding: 2.5rem;
  transition:
    transform var(--t-base) var(--ease-soft),
    border-color var(--t-base) ease,
    box-shadow var(--t-base) ease,
    background var(--t-base) ease;
  position: relative;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--or-clair);
  box-shadow: var(--shadow-gold-md);
}
.card h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--encre);
  margin: 0.5rem 0 0.85rem;
  line-height: 1.2;
}
.card h3 em { font-style: italic; color: var(--or-profond); }

/* --- Program emblems (Alliance I / II / III) --- */
.program-emblem {
  color: var(--or-profond);
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  transition: transform var(--t-base) var(--ease-soft);
}
.card:hover .program-emblem {
  transform: rotate(-4deg) scale(1.06);
}
.program-emblem svg { display: block; }
.card p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--bronze);
  margin: 0;
}
.card-eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--or-profond);
  margin-bottom: 0.5rem;
}

/* Bouton fantôme (lien texte avec flèche) */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--or-profond);
  text-decoration: none;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--t-fast) ease, gap var(--t-base) var(--ease-soft);
}
.btn-ghost::after {
  content: '→';
  transition: transform var(--t-base) var(--ease-soft);
}
.btn-ghost:hover {
  color: var(--encre);
  gap: 0.85rem;
}
.btn-ghost:hover::after { transform: translateX(3px); }

/* Divider élégant entre témoignages */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2.5rem auto;
  position: relative;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--champagne), transparent);
}
.divider-dot {
  width: 7px;
  height: 7px;
  background: var(--or-clair);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--ivoire);
}

/* Formulaire de capture */
.form-capture {
  border: 1px solid var(--champagne);
  border-radius: 1.8rem;
  padding: 3.5rem 3rem;
  text-align: center;
  box-shadow: var(--shadow-gold-sm);
  position: relative;
  overflow: hidden;
}
.form-capture::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(212, 185, 106, 0.08), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(168, 107, 69, 0.05), transparent 50%);
  pointer-events: none;
}
.form-capture > * { position: relative; }
.form-capture h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 500;
  margin: 0.5rem 0 1rem;
  color: var(--encre);
}
.form-capture > p {
  color: var(--bronze);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.form-row {
  display: flex;
  gap: 0.5rem;
  max-width: 540px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.form-input {
  flex: 1 1 160px;
  min-width: 0;
  padding: 0.95rem 1.2rem;
  border: 1px solid var(--creme);
  background: white;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--encre);
  transition: border-color var(--t-fast) ease, box-shadow var(--t-fast) ease;
}
.form-input:focus {
  outline: none;
  border-color: var(--or-profond);
  box-shadow: 0 0 0 4px rgba(212, 185, 106, 0.18);
}
.form-input::placeholder { color: var(--bronze); opacity: 0.7; }
.form-submit {
  padding: 0.95rem 1.8rem;
  background: var(--or-profond);
  color: var(--ivoire);
  border: 0;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition:
    background var(--t-base) ease,
    transform var(--t-base) var(--ease-soft),
    box-shadow var(--t-base) ease;
  box-shadow: 0 8px 24px rgba(184, 151, 58, 0.25);
}
.form-submit:hover {
  background: var(--encre);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 34px rgba(184, 151, 58, 0.35), 0 0 0 4px rgba(212, 185, 106, 0.15);
}
.form-note {
  font-size: 0.78rem;
  color: var(--bronze);
  opacity: 0.8;
  margin-top: 1.25rem;
  font-style: italic;
}
@media (max-width: 560px) {
  .form-capture { padding: 2.5rem 1.5rem; }
  .form-row { flex-direction: column; gap: 0.6rem; }
  .form-submit { width: 100%; }
}

/* Témoignages */
.testimonial {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}
.testimonial-text {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  color: var(--encre);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  text-wrap: pretty;
}
.testimonial-author {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}
.testimonial-author-name {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--or-profond);
  font-size: 1rem;
}
.testimonial-author-role {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--bronze);
}

/* Helpers */
.compact { padding-top: 3.5rem !important; padding-bottom: 3.5rem !important; }
.tight   { padding-top: 2rem !important; padding-bottom: 2rem !important; }

/* ============================================
   17. PARCOURS — 4 piliers visuels (Biographie)
   ============================================ */
.journey-pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: 3.5rem auto 0;
}
.journey-pillar {
  position: relative;
  background: white;
  border: 1px solid var(--creme);
  border-radius: 1.25rem;
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--t-base) var(--ease-soft),
    border-color var(--t-base) ease,
    box-shadow var(--t-base) ease;
}
.journey-pillar:hover {
  transform: translateY(-4px);
  border-color: var(--or-clair);
  box-shadow: var(--shadow-gold-sm);
}
.journey-pillar-num {
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--or-clair);
  letter-spacing: 0.05em;
  opacity: 0.8;
}
.journey-pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--ivoire);
  border: 1px solid var(--champagne);
  border-radius: 12px;
  color: var(--or-profond);
  margin: 0 auto 1.25rem;
  transition: background var(--t-base) ease, color var(--t-base) ease, border-color var(--t-base) ease;
}
.journey-pillar:hover .journey-pillar-icon {
  background: var(--or-profond);
  border-color: var(--or-profond);
  color: var(--ivoire);
}
.journey-pillar h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--encre);
  margin: 0 0 0.65rem;
  letter-spacing: 0;
}
.journey-pillar p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--bronze);
  margin: 0;
  text-wrap: pretty;
}

/* --- Mini-ligne de temps par pilier --- */
.journey-pillar-period {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--or-profond);
  font-weight: 600;
  margin-top: 1.3rem;
}
.journey-pillar-timeline {
  position: relative;
  height: 5px;
  margin-top: 0.65rem;
  background: var(--creme);
  border-radius: 999px;
}
.journey-pillar-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--start, 0%);
  right: calc(100% - var(--end, 100%));
  background: linear-gradient(90deg, var(--or-clair), var(--or-profond));
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(184, 151, 58, 0.22);
}
.journey-pillar-timeline.ongoing::after {
  content: '';
  position: absolute;
  top: 50%;
  left: var(--end, 100%);
  width: 9px;
  height: 9px;
  background: var(--or-profond);
  border: 2px solid var(--ivoire);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 3px rgba(184, 151, 58, 0.18);
  animation: journey-pulse 2.6s ease-in-out infinite;
}
@keyframes journey-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(184, 151, 58, 0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(184, 151, 58, 0.05); }
}

/* --- Axe global sous les 4 cartes --- */
.journey-axis {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 1.25rem auto 0;
  padding: 0 1.5rem;
  position: relative;
}
.journey-axis::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  top: 50%;
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(184, 151, 58, 0.25) 8%,
    rgba(184, 151, 58, 0.25) 92%,
    transparent 100%);
  transform: translateY(-50%);
  z-index: 0;
}
.journey-axis-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  background: var(--sable);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  position: relative;
  z-index: 1;
}
.journey-axis-today {
  color: var(--or-profond);
  font-weight: 600;
  background: var(--ivoire);
  border: 1px solid var(--champagne);
}
@media (max-width: 1100px) {
  .journey-pillars { grid-template-columns: repeat(3, 1fr); }
  .journey-axis { display: none; }
}
@media (max-width: 720px) {
  .journey-pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .journey-pillars { grid-template-columns: 1fr; gap: 0.85rem; }
  .journey-pillar { padding: 1.5rem 1.25rem 1.4rem; }
}


/* ============================================
   16. ENSEIGNEMENT — stats horizontales (page Biographie)
   ============================================ */
.teaching-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid var(--champagne);
  border-bottom: 1px solid var(--champagne);
}
.teaching-stat {
  position: relative;
  padding: 2.25rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}
.teaching-stat + .teaching-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  bottom: 25%;
  width: 1px;
  background: var(--champagne);
}
.teaching-stat-num {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--or-profond);
  line-height: 1;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.teaching-stat-label {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
  max-width: 200px;
  line-height: 1.4;
}
.teaching-stat-label em {
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  color: var(--encre);
}
@media (max-width: 820px) {
  .teaching-stats { grid-template-columns: repeat(2, 1fr); }
  .teaching-stat + .teaching-stat::before { display: none; }
  .teaching-stat:nth-child(odd) { border-right: 1px solid var(--champagne); }
  .teaching-stat:nth-child(-n+2) { border-bottom: 1px solid var(--champagne); }
}
@media (max-width: 520px) {
  .teaching-stats { grid-template-columns: 1fr; }
  .teaching-stat:nth-child(odd) { border-right: 0; }
  .teaching-stat:not(:last-child) { border-bottom: 1px solid var(--champagne); }
}


/* ============================================
   15. RÉSEAUX SOCIAUX — trois cartes
   ============================================ */
.socials-section {
  padding: 7rem 2rem;
  background: var(--ivoire);
  position: relative;
  overflow: hidden;
}
.socials-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, var(--champagne) 0%, transparent 65%);
  opacity: 0.4;
  pointer-events: none;
}
.socials-section .container { position: relative; }

.socials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.social-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: white;
  border: 1px solid var(--creme);
  border-radius: 1.5rem;
  padding: 2.25rem 2rem;
  text-decoration: none;
  color: var(--encre);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform var(--t-base) var(--ease-soft),
    border-color var(--t-base) ease,
    box-shadow var(--t-base) ease;
}
.social-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  opacity: 0.12;
  filter: blur(20px);
  transition: opacity var(--t-base) ease, transform var(--t-base) var(--ease-soft);
  z-index: -1;
}
.social-card:hover {
  transform: translateY(-6px);
  border-color: var(--or-clair);
  box-shadow: var(--shadow-gold-md);
}
.social-card:hover::before {
  opacity: 0.22;
  transform: scale(1.15);
}

/* Per-platform accent (kept subtle, in the brand palette) */
.social-fb::before { background: #4267B2; }
.social-ig::before { background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF); }
.social-yt::before { background: #FF0000; }

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--ivoire);
  border: 1px solid var(--creme);
  color: var(--encre);
  transition: background var(--t-base) ease, color var(--t-base) ease, border-color var(--t-base) ease;
}
.social-fb .social-icon { color: #4267B2; }
.social-ig .social-icon { color: #DD2A7B; }
.social-yt .social-icon { color: #FF0000; }
.social-card:hover .social-icon {
  background: var(--encre);
  border-color: var(--encre);
  color: var(--or-clair);
}

.social-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.4rem;
}
.social-platform {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--or-profond);
  font-weight: 600;
}
.social-cadence {
  position: relative;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--bronze);
  padding-left: 0.85rem;
}
.social-cadence::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  background: var(--or-clair);
  border-radius: 50%;
  transform: translateY(-50%);
}

.social-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.25;
  font-weight: 500;
  color: var(--encre);
  margin: 0.25rem 0 0;
}
.social-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--bronze);
  margin: 0;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--or-profond);
  letter-spacing: 0.02em;
  transition: gap var(--t-base) var(--ease-soft);
}
.social-link::after {
  content: '→';
  transition: transform var(--t-base) var(--ease-soft);
}
.social-card:hover .social-link { gap: 0.7rem; }
.social-card:hover .social-link::after { transform: translateX(3px); }

@media (max-width: 900px) {
  .socials-grid { grid-template-columns: 1fr; }
  .socials-section { padding: 5rem 1.25rem; }
}

/* ============================================
   18. VU SUR LES RÉSEAUX — contenus impactants (Hall of Fame)
   ============================================ */
.impact-section {
  padding: 7rem 2rem;
  background: var(--sable);
  position: relative;
  overflow: hidden;
}
.impact-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--champagne) 0%, transparent 65%);
  opacity: 0.5;
  pointer-events: none;
}
.impact-section .container { position: relative; }

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}

/* --- Card --- */
.impact-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--creme);
  border-radius: 1.5rem;
  overflow: hidden;
  text-decoration: none;
  color: var(--encre);
  isolation: isolate;
  transition:
    transform var(--t-base) var(--ease-soft),
    border-color var(--t-base) ease,
    box-shadow var(--t-base) ease;
}
.impact-card:hover {
  transform: translateY(-6px);
  border-color: var(--or-clair);
  box-shadow: var(--shadow-gold-md);
}

/* --- Thumbnail area (9:16 "phone screen" feel) --- */
.impact-thumb {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}
.impact-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-soft);
}
/* YouTube thumbnail is 16:9 — letterbox inside the 9:16 frame */
.impact-thumb--letterbox img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  background: #000;
}
.impact-card:hover .impact-thumb img { transform: scale(1.04); }

/* Subtle dark gradient at top & bottom for legibility of overlays */
.impact-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, transparent 20%, transparent 75%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
  z-index: 1;
}

/* --- Platform mark (top-left) --- */
.impact-platform-mark {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: white;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.impact-platform-mark--fb { background: rgba(66, 103, 178, 0.92); }
.impact-platform-mark--yt { background: rgba(255, 0, 0, 0.92); }
.impact-platform-mark--tt { background: rgba(0, 0, 0, 0.85); }
.impact-platform-mark .icon { stroke-width: 1.8; }

/* --- View count stamp (top-right) — "hall of fame" badge --- */
.impact-views-stamp {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 0.55rem 0.95rem 0.45rem;
  background: linear-gradient(135deg, var(--or-clair) 0%, var(--or-profond) 100%);
  color: var(--ivoire);
  border-radius: 14px;
  box-shadow:
    0 10px 24px rgba(184, 151, 58, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  line-height: 1;
  text-align: center;
}
.impact-views-stamp strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
}
.impact-views-unit {
  font-size: 0.65em;
  margin-left: 1px;
  opacity: 0.85;
}
.impact-views-stamp small {
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 4px;
  opacity: 0.95;
}

/* --- Optional caption baked over the thumb (FB only) --- */
.impact-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.3;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
.impact-caption em { font-style: italic; color: var(--or-clair); }

/* --- Play button (center) --- */
.impact-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--encre);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.30);
  transition:
    transform var(--t-base) var(--ease-soft),
    background var(--t-base) ease,
    color var(--t-base) ease;
}
.impact-play svg {
  margin-left: 3px; /* optical centering */
}
.impact-card:hover .impact-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--or-profond);
  color: var(--ivoire);
}

/* --- Body (below thumb) --- */
.impact-body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.5rem 1.5rem 1.75rem;
  flex: 1;
}
.impact-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 500;
  color: var(--encre);
  margin: 0;
  text-wrap: balance;
}
.impact-text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--bronze);
  margin: 0;
  flex: 1;
}
.impact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--or-profond);
  align-self: flex-start;
  transition: gap var(--t-base) var(--ease-soft);
}
.impact-link::after {
  content: '→';
  transition: transform var(--t-base) var(--ease-soft);
}
.impact-card:hover .impact-link { gap: 0.65rem; }
.impact-card:hover .impact-link::after { transform: translateX(4px); }

/* --- Platforms row (below the grid) --- */
.impact-platforms {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  max-width: 900px;
  margin: 4rem auto 0;
  padding-top: 3rem;
  border-top: 1px solid var(--champagne);
}
.impact-platforms-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--bronze);
  width: 100%;
  text-align: center;
  margin-bottom: 0.25rem;
}
.impact-platform-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--encre);
  text-decoration: none;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--creme);
  transition: all var(--t-base) var(--ease-soft);
}
.impact-platform-link:hover {
  border-color: var(--or-profond);
  color: var(--or-profond);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(184, 151, 58, 0.12);
}

/* TikTok screenshot — keep the right-side action bar visible (likes, comments, shares) */
.impact-tt .impact-thumb img {
  object-position: center center;
}

/* --- FB card: edge-to-edge screenshot, no top/bottom dark band, right-side action overlay --- */
.impact-fb .impact-thumb::before { display: none; }
.impact-fb .impact-thumb img {
  object-position: center center;
}

.impact-actions {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  pointer-events: none;
}
.impact-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  min-width: 48px;
}
.impact-action-ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.impact-action-ico--heart {
  background: rgba(0, 0, 0, 0.55);
}
.impact-action-num {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.75), 0 0 8px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* YouTube card — typographic thumbnail (no image, brand-styled text) */
.impact-thumb--text {
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.7), transparent 55%),
    linear-gradient(160deg, #f6efe3 0%, #efe5d2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.75rem;
  position: relative;
}
/* Disable the dark gradient overlay used on photo thumbs */
.impact-thumb--text::before { display: none; }
/* Subtle paper grain to match the book cover style */
.impact-thumb--text::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(0,0,0,0.012) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(0,0,0,0.012) 0 1px, transparent 1px 3px);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}
.impact-thumb-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 88%;
}
.impact-thumb-eyebrow {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--or-profond);
  font-weight: 600;
}
.impact-thumb-rule {
  width: 28px;
  height: 1px;
  background: var(--or-profond);
  margin: 0.85rem auto 1.5rem;
}
.impact-thumb-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.2vw, 1.95rem);
  line-height: 1.15;
  color: var(--encre);
  margin: 0;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.impact-thumb-title em {
  font-style: italic;
  color: var(--or-profond);
}

/* For the text-thumbnail, move play button out of the title's way */
.impact-thumb--text .impact-play {
  top: auto;
  left: auto;
  bottom: 1rem;
  right: 1rem;
  transform: none;
  width: 52px;
  height: 52px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}
.impact-card:hover .impact-thumb--text .impact-play {
  transform: scale(1.08);
}

@media (max-width: 900px) {
  .impact-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .impact-section { padding: 5rem 1.25rem; }
  .impact-thumb { aspect-ratio: 4 / 5; }
  .impact-views-stamp strong { font-size: 1.4rem; }
  .impact-play { width: 60px; height: 60px; }
}

/* --- Embedded video (click-to-play) --- */
.impact-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
  z-index: 5;
}
.impact-card.is-playing .impact-platform-mark,
.impact-card.is-playing .impact-views-stamp,
.impact-card.is-playing .impact-play,
.impact-card.is-playing .impact-caption,
.impact-card.is-playing .impact-thumb-text,
.impact-card.is-playing .impact-thumb::before {
  display: none;
}
.impact-card.is-playing {
  cursor: default;
}
.impact-card.is-playing:hover {
  transform: none;
}
.impact-card.is-playing:hover .impact-thumb img,
.impact-card.is-playing:hover .impact-thumb-text {
  transform: none;
}
.impact-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 10;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 0;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  font-size: 1.05rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast) ease, transform var(--t-fast) ease;
  font-family: var(--sans);
  line-height: 1;
}
.impact-close:hover {
  background: rgba(0, 0, 0, 0.92);
  transform: scale(1.08);
}

/* ============================================
   14. LIVRE — Mockup couverture maison d'édition
   ============================================ */
.book-section {
  padding: 7rem 2rem;
  overflow: hidden;
}
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

/* --- Stage --- */
.book-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0 0.5rem;
}
.book {
  position: relative;
  width: 280px;
  height: 420px;        /* ratio 2/3, format livre standard FR */
  transform: rotate(-2.5deg);
  transition: transform 0.8s var(--ease-soft);
  filter: drop-shadow(0 22px 40px rgba(44, 37, 24, 0.22));
}
.book-stage:hover .book { transform: rotate(0deg); }

/* Faux pages stack on the right edge (sits behind the cover) */
.book-pages {
  position: absolute;
  top: 5px;
  bottom: 5px;
  right: -8px;
  width: 9px;
  background:
    linear-gradient(to right,
      #f1e7d2 0%,
      #ffffff 25%,
      #fbf6ea 55%,
      #ede2c8 100%);
  border-radius: 0 3px 3px 0;
  box-shadow:
    inset -1px 0 0 rgba(0, 0, 0, 0.06),
    inset 1px 0 0 rgba(0, 0, 0, 0.04);
  z-index: 0;
}
.book-pages::before,
.book-pages::after {
  /* Subtle horizontal lines suggesting page edges */
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.book-pages::before {
  background:
    repeating-linear-gradient(0deg,
      transparent 0px,
      transparent 2px,
      rgba(184, 151, 58, 0.04) 2px,
      rgba(184, 151, 58, 0.04) 3px);
}

/* Cover (front face) */
.book-cover {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.55), transparent 60%),
    linear-gradient(180deg, #f6efe3 0%, #efe5d2 100%);
  border-radius: 2px 6px 6px 2px;
  box-shadow:
    inset 0 0 0 1px rgba(184, 151, 58, 0.18);
  overflow: hidden;
  z-index: 1;
}
/* paper grain */
.book-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(0,0,0,0.012) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(0,0,0,0.012) 0 1px, transparent 1px 3px);
  mix-blend-mode: multiply;
  pointer-events: none;
}
/* subtle gold sheen */
.book-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
    transparent 0%,
    transparent 35%,
    rgba(255, 250, 235, 0.30) 50%,
    transparent 65%,
    transparent 100%);
  pointer-events: none;
}

/* Spine = faux relief on the LEFT edge of the cover (sits ON the cover) */
.book-spine {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 16px;
  background:
    linear-gradient(to right,
      rgba(0, 0, 0, 0.20) 0%,
      rgba(0, 0, 0, 0.10) 30%,
      rgba(0, 0, 0, 0.04) 60%,
      rgba(0, 0, 0, 0) 100%);
  z-index: 2;
  pointer-events: none;
}
.book-spine::before {
  /* Single hairline groove just inside the spine */
  content: '';
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 16px;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent,
    rgba(184, 151, 58, 0.25),
    transparent);
}

.book-cover-inner {
  position: absolute;
  inset: 22px 24px 18px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(184, 151, 58, 0.4);
  padding: 22px 16px 18px;
  color: var(--encre);
  z-index: 3;
}

.book-publisher {
  font-family: var(--sans);
  font-size: 7px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-top: 2px;
}
.book-author {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--encre);
  margin-top: 12px;
}
.book-rule {
  width: 22px;
  height: 1px;
  background: var(--or-profond);
  margin: 14px auto 0;
}
.book-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--encre);
  margin: 26px 0 8px;
  text-wrap: balance;
}
.book-subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: 11.5px;
  line-height: 1.4;
  color: var(--bronze);
  margin: 0 0 auto;
  letter-spacing: 0.02em;
  max-width: 180px;
}
.book-mark {
  font-family: var(--serif);
  color: var(--or-profond);
  font-size: 16px;
  margin: auto 0 10px;
  opacity: 0.85;
}
.book-collection {
  font-family: var(--sans);
  font-size: 7px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 2px;
}

/* Spine (left edge) — OBSOLETE 3D rules, replaced above */

/* Floor shadow */
.book-shadow {
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 280px;
  height: 18px;
  background: radial-gradient(ellipse at center,
    rgba(44, 37, 24, 0.30) 0%,
    rgba(44, 37, 24, 0.06) 45%,
    transparent 75%);
  transform: translateX(-50%);
  filter: blur(6px);
  pointer-events: none;
  z-index: -1;
}

/* --- Right column copy --- */
.book-content h2 { margin-bottom: 0.25rem; }
.book-offer {
  margin-top: 2.5rem;
  background: white;
  border: 1px solid var(--champagne);
  border-radius: 1.5rem;
  padding: 1.75rem 1.85rem;
  box-shadow: var(--shadow-gold-sm);
}
.book-offer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.book-offer-price {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.book-offer-amount {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--encre);
  letter-spacing: -0.01em;
  line-height: 1;
}
.book-offer-currency {
  font-size: 0.55em;
  vertical-align: top;
  position: relative;
  top: 0.3em;
  color: var(--or-profond);
}
.book-offer-vat {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
}
.book-offer .btn { margin: 0; }

.book-offer-perk {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--creme);
}
.book-offer-perk-icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  background: var(--ivoire);
  color: var(--or-profond);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.book-offer-perk p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--encre);
  line-height: 1.55;
}
.book-offer-perk strong { color: var(--or-profond); }

.book-fine-print {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--bronze);
  margin-top: 1.5rem;
  font-style: italic;
  line-height: 1.5;
}

/* --- Dark variant (page Biographie) --- */
.book-section--dark {
  background: var(--encre);
}
/* Make sure the book cover keeps its dark-on-cream typography,
   even when .section-encre's global h3 rule forces white. */
.book-section--dark .book-title,
.book-section--dark .book-title em,
.book-section--dark .book-author {
  color: var(--encre);
}
.book-section--dark .book-subtitle {
  color: var(--bronze);
}
.book-section--dark .book-rule {
  background: var(--or-profond);
}
.book-section--dark .book-mark,
.book-section--dark .book-collection {
  color: var(--or-profond);
}
.book-section--dark .book-offer {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(232, 215, 181, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: none;
}
.book-section--dark .book-offer-amount {
  color: var(--ivoire);
}
.book-section--dark .book-offer-currency {
  color: var(--or-clair);
}
.book-section--dark .book-offer-vat {
  color: var(--champagne);
}
.book-section--dark .book-offer-perk {
  border-top-color: rgba(232, 215, 181, 0.15);
}
.book-section--dark .book-offer-perk-icon {
  background: rgba(212, 185, 106, 0.12);
  color: var(--or-clair);
}
.book-section--dark .book-offer-perk p {
  color: var(--champagne);
}
.book-section--dark .book-offer-perk strong {
  color: var(--or-clair);
}
.book-section--dark .book-fine-print {
  color: var(--champagne);
  opacity: 0.7;
}
.book-section--dark .book-shadow {
  background: radial-gradient(ellipse at center,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.15) 40%,
    transparent 70%);
}

@media (max-width: 900px) {
  .book-grid { grid-template-columns: 1fr; gap: 4rem; }
  .book-stage { order: 1; }
  .book-content { order: 2; }
  .book { width: 240px; height: 360px; }
  .book-title { font-size: 20px; }
  .book-subtitle { font-size: 10px; }
  .book-offer-row { flex-direction: column; align-items: stretch; }
  .book-offer .btn { width: 100%; justify-content: center; }
  .book-offer-row .book-offer-price { align-items: center; text-align: center; }
}


/* Icon container overrides — ensure SVG centers cleanly inside
   pre-existing .voie-icon / .action-card-icon / .info-icon / etc. */
.voie-icon,
.action-card-icon,
.info-icon,
.sensoriel-icon,
.logistique-icon,
.hostility-card-icon,
.benefit-card-icon,
.promise-card-icon,
.transformation-card-icon,
.pas-cest-icon,
.modalite-icon,
.format-icon,
.icon-bg {
  font-size: 0 !important;          /* kill any leftover glyph metrics */
}
.voie-icon > .has-icon,
.action-card-icon > .has-icon,
.info-icon > .has-icon,
.sensoriel-icon > .has-icon,
.logistique-icon > .has-icon,
.hostility-card-icon > .has-icon,
.benefit-card-icon > .has-icon,
.promise-card-icon > .has-icon,
.transformation-card-icon > .has-icon,
.pas-cest-icon > .has-icon,
.modalite-icon > .has-icon,
.format-icon > .has-icon,
.icon-bg > .has-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Hover state — subtly animate icons on card hover */
.card:hover .icon,
.voie-card:hover .icon,
.action-card:hover .icon,
.format-card:hover .icon,
.info-card:hover .icon,
.which-card:hover .icon,
.timeline-card:hover .icon,
.protagoniste-card:hover .icon,
.hostility-card:hover .icon,
.sensoriel-card:hover .icon,
.benefit-card:hover .icon,
.promise-card:hover .icon {
  transform: scale(1.08);
  color: var(--or-profond);
}

/* Inline gold-dot bullets used in heros ( GROUP · DATE) */
.nav-inner ~ section [data-icon="dot"] .has-icon,
[data-icon="dot"] svg {
  width: 8px !important;
  height: 8px !important;
  stroke-width: 0 !important;
  fill: currentColor !important;
}

/* ============================================
   13. RESPONSIVE — Ajustements globaux
   ============================================ */
@media (max-width: 900px) {
  section { padding: 4.5rem 1.25rem; }
  .nav-inner { padding: 0.9rem 1.25rem; }
  .btn { padding: 0.95rem 1.6rem; font-size: 0.85rem; }
  /* Grilles 3-cards → 1 colonne propre */
  .voies-grid,
  .infos-grid,
  .hostility-grid,
  .sensoriel-grid {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  h1 { font-size: clamp(2.25rem, 9vw, 3rem); }
  h2 { font-size: clamp(1.75rem, 7vw, 2.4rem); }
  .lead { font-size: 1.1rem; }
  .nav-logo { font-size: 1.2rem; }
}


/* ============================================
   ALLIANCE COMMUNICATION — Promesses (éditorial)
   ============================================ */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
}
.promise-card {
  position: relative;
  background: var(--ivoire);
  border: 1px solid var(--champagne);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem 1.75rem;
  transition: transform var(--t-base) var(--ease-soft),
              border-color var(--t-base) ease,
              box-shadow var(--t-base) ease;
  overflow: hidden;
}
.promise-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 3rem;
  height: 1px;
  background: var(--or-clair);
  opacity: 0;
  transition: opacity var(--t-base) ease, width var(--t-base) var(--ease-soft);
}
.promise-card:hover {
  transform: translateY(-4px);
  border-color: var(--or-clair);
  box-shadow: var(--shadow-gold-sm);
}
.promise-card:hover::before {
  opacity: 1;
  width: 5rem;
}
.promise-card-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 4.2rem;
  line-height: 0.85;
  color: var(--or-clair);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  transition: color var(--t-base) ease;
}
.promise-card:hover .promise-card-num {
  color: var(--or-profond);
}
.promise-card-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--or-profond);
  margin-bottom: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--champagne);
}
.promise-card-text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--encre);
  margin: 0;
}
.promise-card--featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--creme) 0%, var(--ivoire) 100%);
  border-color: var(--or-clair);
  padding: 2.5rem 2.5rem 2.25rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 2.5rem;
  align-items: start;
}
.promise-card--featured .promise-card-num {
  font-size: 6.5rem;
  color: var(--or-profond);
  margin-bottom: 0;
  grid-row: span 2;
}
.promise-card--featured .promise-card-label {
  border-top: 0;
  padding-top: 0;
  margin-bottom: 1rem;
  align-self: end;
}
.promise-card--featured .promise-card-text {
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.45;
  color: var(--encre);
}
@media (max-width: 980px) {
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .promise-card--featured { grid-column: span 2; }
  .promise-card--featured .promise-card-num { font-size: 5rem; }
}
@media (max-width: 600px) {
  .promise-grid { grid-template-columns: 1fr; gap: 1rem; }
  .promise-card--featured {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .promise-card--featured .promise-card-num {
    font-size: 4.2rem;
    grid-row: auto;
    margin-bottom: 0.5rem;
  }
  .promise-card-num { font-size: 3.6rem; }
  .promise-card--featured .promise-card-text { font-size: 1.2rem; }
}



/* ============================================
   HOME — Offers section (dramatic dark)
   ============================================ */
.offers-section {
  background: linear-gradient(180deg, #1a160e 0%, #0f0c08 100%);
  padding: 8rem 2rem 7rem;
  position: relative;
  overflow: hidden;
  color: var(--ivoire);
}
.offers-deco { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.offers-circle { position: absolute; border-radius: 50%; border: 1px solid rgba(212, 185, 106, 0.18); }
.offers-circle--1 { top: -200px; right: -150px; width: 600px; height: 600px; }
.offers-circle--2 { bottom: -250px; left: -180px; width: 700px; height: 700px; border-color: rgba(168, 107, 69, 0.18); }
.offers-circle--3 { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 360px; height: 360px; border-color: rgba(212, 185, 106, 0.1); }

/* Hero card — Mastermind */
.offer-hero {
  position: relative;
  max-width: 1100px;
  margin: 1rem auto 2rem;
  background: linear-gradient(135deg, var(--ivoire) 0%, var(--creme) 100%);
  border-radius: 1.75rem;
  padding: 3.5rem 3.5rem 3rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(212, 185, 106, 0.4);
  transition: transform var(--t-base) var(--ease-soft), box-shadow var(--t-base) ease;
}
.offer-hero:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45), 0 0 0 1px var(--or-profond);
}
.offer-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--or-clair), var(--or-profond), var(--terracotta), var(--or-profond), var(--or-clair));
  background-size: 200% 100%;
  animation: heroShine 6s linear infinite;
  border-radius: 1.75rem 1.75rem 0 0;
}
@keyframes heroShine { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.offer-hero-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--or-profond);
  color: var(--ivoire);
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(184, 151, 58, 0.45);
  z-index: 5;
  white-space: nowrap;
}
.offer-hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--or-clair); box-shadow: 0 0 0 0 rgba(212, 185, 106, 0.6); animation: heroPulse 2s ease-out infinite; }
@keyframes heroPulse { 0% { box-shadow: 0 0 0 0 rgba(232, 215, 181, 0.7); } 100% { box-shadow: 0 0 0 12px rgba(232, 215, 181, 0); } }

.offer-hero-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3rem;
  align-items: center;
}
.offer-hero-emblem { color: var(--or-profond); flex-shrink: 0; transition: transform var(--t-base) var(--ease-soft); }
.offer-hero:hover .offer-hero-emblem { transform: rotate(-6deg) scale(1.05); }
.offer-hero-eyebrow { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 600; color: var(--or-profond); margin-bottom: 0.75rem; }
.offer-hero-title { font-family: var(--serif); font-size: clamp(2.5rem, 4.5vw, 3.6rem); color: var(--encre); margin: 0 0 0.5rem; line-height: 1; font-weight: 500; letter-spacing: -0.01em; }
.offer-hero-tagline { font-family: var(--serif); font-style: italic; color: var(--terracotta); font-size: 1.2rem; margin: 0 0 1.2rem; line-height: 1.3; }
.offer-hero-desc { font-size: 1rem; line-height: 1.65; color: var(--encre); margin: 0 0 1.5rem; max-width: 560px; }
.offer-hero-points { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem 1.5rem; }
.offer-hero-points li { font-family: var(--sans); font-size: 0.88rem; color: var(--encre); display: flex; align-items: center; gap: 0.55rem; line-height: 1.3; }
.offer-check { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; border-radius: 50%; background: var(--or-profond); color: var(--ivoire); font-size: 0.7rem; flex-shrink: 0; font-weight: 700; }

.offer-hero-action { display: flex; flex-direction: column; align-items: flex-end; gap: 0.85rem; min-width: 220px; text-align: right; }
.offer-hero-price { display: flex; flex-direction: column; align-items: flex-end; gap: 0.15rem; }
.offer-price-amount { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--or-profond); font-size: 2.4rem; line-height: 1; letter-spacing: -0.01em; }
.offer-price-period { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bronze); font-weight: 500; }
.offer-hero-cta { width: 100%; text-align: center; }
.offer-hero-note { font-family: var(--serif); font-style: italic; font-size: 0.85rem; color: var(--bronze); margin: 0; }

/* Duo cards below — Communication (light/course) & Mentoring (premium/dark) */
.offer-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}
.offer-card {
  border-radius: 1.5rem;
  padding: 2.5rem 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: transform var(--t-base) var(--ease-soft), box-shadow var(--t-base) ease;
  position: relative;
  overflow: hidden;
}

/* ---- Communication: LIGHT, ACCESSIBLE, ONLINE COURSE ---- */
.offer-card--communication {
  background:
    radial-gradient(circle at 100% 0%, rgba(232, 215, 181, 0.35) 0%, transparent 50%),
    var(--ivoire);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(232, 215, 181, 0.4);
}
.offer-card--communication:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.3), 0 0 0 1px var(--or-clair);
}
.offer-card--communication .offer-card-emblem { color: var(--or-profond); }
.offer-card--communication .offer-card-title,
.offer-card--communication .offer-card-desc { color: var(--encre); }
.offer-card--communication .offer-card-points li { color: var(--encre); }
.offer-card--communication .offer-card-foot { border-top-color: rgba(184, 151, 58, 0.18); }

/* Curriculum strip — only on Communication */
.offer-curriculum {
  background: rgba(232, 215, 181, 0.28);
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  margin: 0.5rem 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.curriculum-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--or-profond);
  font-weight: 600;
  white-space: nowrap;
}
.curriculum-dots {
  flex: 1;
  display: flex;
  gap: 0.32rem;
  align-items: center;
}
.curriculum-dot {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: rgba(184, 151, 58, 0.25);
}
.curriculum-dot.is-done {
  background: var(--or-profond);
}

/* ---- Mentoring: DARK, PREMIUM, EXCLUSIVE ---- */
.offer-card--mentoring {
  background:
    radial-gradient(circle at 0% 100%, rgba(168, 107, 69, 0.18) 0%, transparent 55%),
    linear-gradient(165deg, #2a2418 0%, #16120a 100%);
  color: var(--ivoire);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(212, 185, 106, 0.32),
    inset 0 0 0 2px rgba(212, 185, 106, 0.08);
}
.offer-card--mentoring::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(212, 185, 106, 0.18);
  border-radius: 1.15rem;
  pointer-events: none;
}
.offer-card--mentoring:hover {
  transform: translateY(-6px);
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px var(--or-clair),
    inset 0 0 0 2px rgba(212, 185, 106, 0.12);
}
.offer-card--mentoring .offer-card-emblem { color: var(--or-clair); }
.offer-card--mentoring .offer-card-meta { color: var(--or-clair); }
.offer-card--mentoring .offer-card-title { color: var(--ivoire); }
.offer-card--mentoring .offer-card-tagline { color: var(--or-clair); }
.offer-card--mentoring .offer-card-desc { color: var(--champagne); opacity: 0.88; }
.offer-card--mentoring .offer-card-points li { color: var(--ivoire); }
.offer-card--mentoring .offer-check {
  background: transparent;
  color: var(--or-clair);
  border: 1px solid rgba(212, 185, 106, 0.6);
}
.offer-card--mentoring .offer-card-foot {
  border-top: 1px solid rgba(212, 185, 106, 0.22);
}
.offer-card--mentoring .offer-price-amount { color: var(--or-clair); }
.offer-card--mentoring .offer-price-period { color: rgba(232, 215, 181, 0.65); }
.offer-card--mentoring .btn.btn-outline {
  border-color: var(--or-clair);
  color: var(--or-clair);
}
.offer-card--mentoring .btn.btn-outline:hover {
  background: var(--or-clair);
  color: var(--encre);
}

/* Premium ornamental line */
.offer-premium-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin: 1rem 0 1.25rem;
  color: var(--or-clair);
  opacity: 0.85;
}
.premium-dot { width: 4px; height: 4px; border-radius: 50%; background: currentColor; }
.premium-rule { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, currentColor, transparent); max-width: 80px; }
.premium-icon { display: inline-flex; }

/* Card tags (top-right corner) */
.offer-card-tag {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  z-index: 2;
}
.offer-card-tag--access {
  background: white;
  color: var(--or-profond);
  border: 1px solid var(--or-clair);
  box-shadow: 0 4px 12px rgba(184, 151, 58, 0.2);
}
.offer-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--or-profond);
}
.offer-card--mentoring .offer-card-tag--exclusive {
  right: auto;
  left: 1.25rem;
}
.offer-card-tag--exclusive {
  background: rgba(15, 12, 8, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--or-clair);
  border: 1px solid rgba(212, 185, 106, 0.55);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

/* Shared internals */
.offer-card-top { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.5rem; margin-top: 1.5rem; }
.offer-card-emblem { flex-shrink: 0; transition: transform var(--t-base) var(--ease-soft); }
.offer-card:hover .offer-card-emblem { transform: rotate(-6deg) scale(1.05); }
.offer-card-meta { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; color: var(--or-profond); }
.offer-card-title { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.4rem); margin: 0; font-weight: 500; line-height: 1; letter-spacing: -0.01em; }
.offer-card-tagline { font-family: var(--serif); font-style: italic; color: var(--terracotta); font-size: 1.05rem; margin: 0.5rem 0 0.5rem; line-height: 1.3; }
.offer-card-desc { font-size: 0.95rem; line-height: 1.6; margin: 0 0 1rem; }
.offer-card-points { list-style: none; padding: 0; margin: 0 0 1.5rem; display: flex; flex-direction: column; gap: 0.55rem; }
.offer-card-points li { font-family: var(--sans); font-size: 0.88rem; display: flex; align-items: center; gap: 0.55rem; line-height: 1.3; }

.offer-card-foot {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(184, 151, 58, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.offer-card-price { display: flex; flex-direction: column; gap: 0.1rem; }
.offer-card-price .offer-price-amount { font-size: 1.5rem; }
.offer-card-price .offer-price-period { font-size: 0.68rem; }
.offer-card-cta { white-space: nowrap; }

.offer-hint { text-align: center; margin-top: 3rem; font-family: var(--serif); color: var(--champagne); opacity: 0.75; font-size: 1rem; }
.offer-hint em { color: var(--or-clair); font-weight: 500; }
.offer-hint a { color: var(--or-clair); border-bottom: 1px solid rgba(212, 185, 106, 0.4); padding-bottom: 1px; margin-left: 0.5rem; transition: color var(--t-base) ease, border-color var(--t-base) ease; }
.offer-hint a:hover { color: var(--ivoire); border-color: var(--ivoire); }

@media (max-width: 900px) {
  .offer-hero { padding: 2.5rem 1.75rem 2rem; }
  .offer-hero-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .offer-hero-badge { position: static; align-self: flex-start; margin-bottom: 1rem; }
  .offer-hero-emblem svg { width: 80px; height: 80px; }
  .offer-hero-action { align-items: flex-start; text-align: left; min-width: 0; }
  .offer-hero-price { align-items: flex-start; }
  .offer-hero-cta { width: auto; }
  .offer-hero-points { grid-template-columns: 1fr; }
  .offer-duo { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .offers-section { padding: 5rem 1rem 4rem; }
  .offer-hero { padding: 2rem 1.25rem 1.75rem; }
  .offer-card { padding: 2rem 1.5rem 1.5rem; }
  .offer-card-foot { flex-direction: column; align-items: stretch; }
  .offer-card-foot .offer-card-price { align-items: center; }
}


/* ============================================
   OFFERS — Imagery
   ============================================ */

/* ---- Mastermind hero: 2-column layout image | content ---- */
.offer-hero-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 3rem;
  align-items: stretch;
}
.offer-hero-visual {
  margin: 0;
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  min-height: 480px;
  background: var(--encre);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}
.offer-hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}
.offer-hero-visual-overlay {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 2;
}
.offer-hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(15, 12, 8, 0.78) 100%);
  z-index: 1;
}
.offer-hero-live {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(15, 12, 8, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--ivoire);
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 185, 106, 0.35);
}
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ff5a3a;
  box-shadow: 0 0 0 0 rgba(255, 90, 58, 0.7);
  animation: livePulse 1.8s ease-out infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 90, 58, 0.6); }
  100% { box-shadow: 0 0 0 10px rgba(255, 90, 58, 0); }
}
.offer-hero-cohort {
  display: flex;
  align-items: center;
}
.cohort-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--ivoire);
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--ivoire);
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.cohort-avatar:first-child { margin-left: 0; }
.cohort-avatar-1 { background: linear-gradient(135deg, #8a5638, var(--terracotta)); }
.cohort-avatar-2 { background: linear-gradient(135deg, #6b5e45, #3b3528); }
.cohort-avatar-3 { background: linear-gradient(135deg, #b8973a, #7a6228); }
.cohort-avatar-4 { background: linear-gradient(135deg, #5c3a26, #2a1a10); }
.cohort-avatar-5 { background: linear-gradient(135deg, #4b3a26, #7a5a36); }
.cohort-more {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--ivoire);
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.65rem;
  color: var(--encre);
  background: var(--or-clair);
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.offer-hero-cohort-label {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ivoire);
  font-size: 0.95rem;
  opacity: 0.92;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Body becomes vertical layout */
.offer-hero-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.offer-hero-body .offer-hero-action {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(184, 151, 58, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-direction: row;
}
.offer-hero-body .offer-hero-action .offer-hero-price {
  align-items: flex-start;
  text-align: left;
}
.offer-hero-body .offer-hero-cta { white-space: nowrap; }

/* ---- Duo cards: hero photo at top ---- */
.offer-card-visual {
  position: relative;
  margin: -2.5rem -2.25rem 1.5rem;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--encre);
}
.offer-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-soft);
}
.offer-card:hover .offer-card-visual:not(.offer-card-visual--mockup) img { transform: scale(1.04); }

/* Communication: bright photo + "module en cours" chip */
.offer-card--communication .offer-card-visual {
  border-radius: 0 0 1rem 1rem;
}
.offer-card-visual-chip {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(15, 12, 8, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--ivoire);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 0.85rem 0.5rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 185, 106, 0.3);
  z-index: 2;
}
.visual-chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--or-clair);
  color: var(--encre);
}

/* Mentoring: dark, premium image */
.offer-card-visual--dark {
  border-radius: 0 0 1rem 1rem;
}
.offer-card-visual--dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 12, 8, 0.35) 0%, rgba(15, 12, 8, 0.55) 60%, rgba(15, 12, 8, 0.88) 100%);
  z-index: 1;
}
.offer-card-visual-corner {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  color: var(--or-clair);
  opacity: 1;
  z-index: 2;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.7));
}
.offer-card-visual-quote {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1rem;
  z-index: 2;
  color: var(--ivoire);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.visual-quote-mark {
  font-family: var(--serif);
  font-size: 2.6rem;
  line-height: 0.8;
  color: var(--or-clair);
  font-style: italic;
  margin-top: -0.2rem;
}
.offer-card-visual-quote p {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.35;
  margin: 0;
  font-weight: 500;
}
.offer-card-visual-quote em {
  font-style: italic;
  color: var(--or-clair);
}

/* Move card-tag so it sits over the image */
.offer-card-tag {
  z-index: 3;
}

@media (max-width: 900px) {
  .offer-hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .offer-hero-visual { min-height: 320px; }
  .offer-hero-body .offer-hero-action {
    flex-direction: column;
    align-items: stretch;
  }
  .offer-card-visual { margin: -2.5rem -1.5rem 1.5rem; }
}
@media (max-width: 540px) {
  .offer-card-visual { margin: -2rem -1.5rem 1rem; aspect-ratio: 16/10; }
}


/* ============================================
   OFFERS — Communication card: mini-laptop mockup
   ============================================ */
.offer-card-visual--mockup {
  background: linear-gradient(135deg, var(--creme) 0%, var(--ivoire) 50%, var(--sable) 100%);
  display: block;
  padding: 0;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.offer-card-visual--mockup::before {
  content: '';
  position: absolute;
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(212, 185, 106, 0.3) 0%, transparent 65%);
  pointer-events: none;
}
.mockup-scene-mini {
  position: relative;
  width: 100%;
  height: 100%;
}
.mockup-scene-mini > div {
  position: absolute;
}

/* — LAPTOP centered, top — */
.mini-laptop {
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 68%;
  z-index: 1;
  filter: drop-shadow(0 14px 22px rgba(44, 37, 24, 0.22));
}
.mini-laptop-body {
  background: linear-gradient(180deg, #1a1610 0%, #0e0c08 100%);
  padding: 6px 6px 8px;
  border-radius: 6px 6px 2px 2px;
  border: 1px solid rgba(212, 185, 106, 0.25);
}
.mini-laptop-screen {
  aspect-ratio: 16/10;
  border-radius: 3px;
  background: var(--ivoire);
  overflow: hidden;
  position: relative;
}
.mini-laptop-base {
  width: 118%;
  height: 6px;
  background: linear-gradient(180deg, #2a2418 0%, #1a1610 100%);
  margin: 0 auto;
  border-radius: 0 0 6px 6px;
  position: relative;
}
.mini-laptop-base::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 2px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 0 0 4px 4px;
}

/* Mini UI inside */
.mini-ui {
  height: 100%;
  display: flex;
  flex-direction: column;
  font-family: var(--sans);
}
.mini-ui-header {
  padding: 5px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(184, 151, 58, 0.15);
}
.mini-ui-logo {
  font-family: var(--serif);
  font-style: italic;
  color: var(--or-profond);
  font-size: 7px;
  font-weight: 500;
}
.mini-ui-dots {
  display: flex;
  gap: 3px;
}
.mini-ui-dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--champagne);
}
.mini-ui-dots span:nth-child(1) { background: #ff6b5e; }
.mini-ui-dots span:nth-child(2) { background: #f5c443; }
.mini-ui-dots span:nth-child(3) { background: #5cb85c; }

.mini-ui-body {
  flex: 1;
  display: grid;
  grid-template-columns: 70px 1fr;
  min-height: 0;
}
.mini-ui-side {
  background: var(--sable);
  padding: 5px 4px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mini-ui-side-label {
  font-size: 5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--bronze);
  margin: 0 0 2px 3px;
}
.mini-ui-module {
  font-size: 5.5px;
  background: var(--ivoire);
  padding: 3px 4px;
  border-radius: 3px;
  color: var(--encre);
  border: 1px solid transparent;
  line-height: 1.2;
}
.mini-ui-module.is-active {
  border-color: var(--or-clair);
  background: white;
  color: var(--or-profond);
  font-weight: 600;
}
.mini-ui-main {
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mini-ui-eyebrow {
  font-size: 5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--or-profond);
}
.mini-ui-title {
  font-family: var(--serif);
  font-size: 10px;
  line-height: 1.15;
  color: var(--encre);
  margin: 0;
  font-weight: 500;
}
.mini-ui-title em { font-style: italic; color: var(--or-profond); }
.mini-ui-video {
  background: linear-gradient(135deg, var(--terracotta) 0%, #8a5638 100%);
  border-radius: 4px;
  aspect-ratio: 16/9;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mini-ui-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 185, 106, 0.3) 0%, transparent 60%);
}
.mini-ui-play {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  display: block;
  position: relative;
  z-index: 1;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}
.mini-ui-play::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-30%, -50%);
  width: 0; height: 0;
  border-left: 6px solid var(--or-profond);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
.mini-ui-progress {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 5px;
  color: var(--bronze);
  font-weight: 500;
}
.mini-ui-bar {
  flex: 1;
  height: 2px;
  background: var(--creme);
  border-radius: 2px;
  overflow: hidden;
}
.mini-ui-bar > span {
  display: block;
  height: 100%;
  width: 62%;
  background: linear-gradient(90deg, var(--or-clair), var(--or-profond));
  border-radius: 2px;
}

/* mockup hover effect removed — keep laptop static */


/* Photo inside laptop video tile */
.mini-ui-video--photo { position: relative; }
.mini-ui-video--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
}
.mini-ui-video--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.35) 100%);
  z-index: 1;
}
.mini-ui-video--photo .mini-ui-play { z-index: 2; }

/* — TABLET bottom-left — */
.mini-tablet {
  bottom: 2%;
  left: 14%;
  width: 24%;
  transform: rotate(-5deg);
  z-index: 3;
  filter: drop-shadow(0 10px 18px rgba(44, 37, 24, 0.28));
}
.mini-tablet-body {
  background: linear-gradient(180deg, #1a1610 0%, #0e0c08 100%);
  padding: 3px 3px;
  border-radius: 5px;
  border: 1px solid rgba(212, 185, 106, 0.3);
}
.mini-tablet-screen {
  aspect-ratio: 3/4;
  border-radius: 3px;
  background: var(--ivoire);
  overflow: hidden;
  position: relative;
}
.mini-tablet-ui {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 3px;
  gap: 2px;
}
.mini-tablet-header {
  font-family: var(--serif);
  font-style: italic;
  font-size: 5px;
  color: var(--or-profond);
  text-align: center;
  font-weight: 500;
  padding-bottom: 2px;
  border-bottom: 0.5px solid rgba(184, 151, 58, 0.2);
}
.mini-tablet-video {
  aspect-ratio: 16/10;
  border-radius: 2px;
  background: var(--terracotta);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mini-tablet-video img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
}
.mini-tablet-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.35) 100%);
  z-index: 1;
}
.mini-tablet-play {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.96);
  position: relative;
  z-index: 2;
}
.mini-tablet-play::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-30%, -50%);
  width: 0; height: 0;
  border-left: 3px solid var(--or-profond);
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
}
.mini-tablet-chapters {
  display: flex;
  flex-direction: column;
  gap: 1.5px;
  margin-top: 2px;
}
.mini-tablet-chap {
  font-family: var(--sans);
  font-size: 4px;
  background: var(--sable);
  color: var(--encre);
  padding: 1.5px 3px;
  border-radius: 1.5px;
  font-weight: 500;
}
.mini-tablet-chap.is-active {
  background: white;
  border: 0.5px solid var(--or-clair);
  color: var(--or-profond);
  font-weight: 700;
}

/* — PHONE bottom-right — */
.mini-phone {
  bottom: 5%;
  right: 16%;
  width: 13%;
  transform: rotate(6deg);
  z-index: 3;
  filter: drop-shadow(0 10px 18px rgba(44, 37, 24, 0.28));
}
.mini-phone-body {
  background: linear-gradient(180deg, #1a1610 0%, #0e0c08 100%);
  padding: 2px 2px;
  border-radius: 6px;
  border: 1px solid rgba(212, 185, 106, 0.3);
}
.mini-phone-screen {
  aspect-ratio: 9/19;
  border-radius: 4px;
  background: var(--sable);
  overflow: hidden;
  position: relative;
}
.mini-phone-notch {
  position: absolute;
  top: 2px; left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 4px;
  background: #0e0c08;
  border-radius: 0 0 3px 3px;
  z-index: 5;
}
.mini-phone-ui {
  height: 100%;
  padding: 8px 3px 3px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mini-phone-greet {
  font-family: var(--sans);
  font-size: 3.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 600;
  margin-bottom: 1px;
}
.mini-phone-thumb {
  aspect-ratio: 16/10;
  border-radius: 2px;
  background: var(--or-profond);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mini-phone-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
}
.mini-phone-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}
.mini-phone-play {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.96);
  position: relative;
  z-index: 2;
}
.mini-phone-play::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-30%, -50%);
  width: 0; height: 0;
  border-left: 3px solid var(--or-profond);
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
}
.mini-phone-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 5px;
  color: var(--encre);
  line-height: 1.2;
  margin-top: 1px;
}
.mini-phone-bar {
  height: 1.5px;
  background: var(--creme);
  border-radius: 1.5px;
  overflow: hidden;
  margin-top: 1px;
}
.mini-phone-bar > span {
  display: block;
  height: 100%;
  width: 45%;
  background: var(--or-profond);
}


/* ============================================
   MASTERMIND HERO IMAGE — Zoom + Telegram cues
   ============================================ */

/* Subtle dark frame overlay so chrome reads on any photo */
.offer-hero-visual::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(15, 12, 8, 0.5) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* Stronger bottom shade so participants/Telegram read clearly */
.offer-hero-visual::after {
  background: linear-gradient(180deg, transparent 30%, rgba(15, 12, 8, 0.88) 100%);
}

/* — Host badge top-left — */
.zoom-host {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(15, 12, 8, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--ivoire);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.65rem 0.4rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 185, 106, 0.25);
}
.zoom-mic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--or-clair);
  color: var(--encre);
}

/* — Live indicator top-right — */
.zoom-live {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(15, 12, 8, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--ivoire);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 90, 58, 0.4);
}

/* — Participant gallery (Zoom tiles) bottom — */
.zoom-gallery {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.35rem;
}
.zoom-tile {
  aspect-ratio: 4/3;
  border-radius: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ivoire);
  position: relative;
  border: 1px solid rgba(212, 185, 106, 0.25);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.zoom-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.zoom-tile-1 { background: linear-gradient(135deg, #8a5638, var(--terracotta)); }
.zoom-tile-2 { background: linear-gradient(135deg, #6b5e45, #3b3528); }
.zoom-tile-3 { background: linear-gradient(135deg, #b8973a, #7a6228); }
.zoom-tile-4 { background: linear-gradient(135deg, #5c3a26, #2a1a10); }
.zoom-tile-5 { background: linear-gradient(135deg, #4b3a26, #7a5a36); }
.zoom-tile-more {
  background: rgba(15, 12, 8, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--or-clair);
  border-color: rgba(212, 185, 106, 0.4);
}
.zoom-tile-mic {
  position: absolute;
  bottom: 3px;
  right: 3px;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}
.zoom-tile-mic::after {
  content: '';
  width: 3px;
  height: 6px;
  background: var(--ivoire);
  border-radius: 2px;
}
.zoom-tile-1 .zoom-tile-mic { background: rgba(168, 107, 69, 0.85); }

/* — Telegram floating bubble — */
.tg-bubble {
  position: absolute;
  right: 1rem;
  top: 55%;
  z-index: 4;
  width: 175px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 0.85rem;
  padding: 0.7rem 0.8rem 0.75rem;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(212, 185, 106, 0.4);
  font-family: var(--sans);
  transform: translateY(0);
  animation: tgBubbleFloat 4s ease-in-out infinite;
}
@keyframes tgBubbleFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}
.tg-bubble::after {
  content: '';
  position: absolute;
  left: -7px;
  top: 1.1rem;
  width: 0; height: 0;
  border-right: 8px solid rgba(255, 255, 255, 0.97);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.tg-bubble-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(184, 151, 58, 0.18);
}
.tg-bubble-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--or-clair), var(--or-profond));
  color: var(--ivoire);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  font-weight: 500;
  flex-shrink: 0;
}
.tg-bubble-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.tg-bubble-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--encre);
  letter-spacing: 0.01em;
}
.tg-bubble-online {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.58rem;
  color: var(--bronze);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.tg-online-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #5cb85c;
}
.tg-bubble-msg {
  font-size: 0.7rem;
  line-height: 1.4;
  color: var(--encre);
}
.tg-bubble-msg strong {
  color: var(--or-profond);
  font-weight: 700;
  margin-right: 0.18rem;
}

/* Hide legacy overlay if still rendered */
.offer-hero-visual-overlay { display: none; }

@media (max-width: 900px) {
  .tg-bubble { display: none; }
  .zoom-gallery { grid-template-columns: repeat(6, 1fr); gap: 0.25rem; }
}


/* ============================================
   MASTERMIND HERO — Faces + 2 testimonials
   ============================================ */

/* Zoom tiles now contain real photos */
.zoom-tile-face {
  padding: 0;
  background: var(--encre);
}
.zoom-tile-face img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  z-index: 0;
}
.zoom-tile-face::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.55) 100%);
  z-index: 1;
  pointer-events: none;
}
.zoom-tile-name {
  position: absolute;
  bottom: 3px;
  left: 4px;
  z-index: 2;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ivoire);
  text-shadow: 0 1px 2px rgba(0,0,0,0.7);
  line-height: 1;
}
.zoom-tile-face .zoom-tile-mic { z-index: 2; }
.zoom-tile-mic--speaking { background: rgba(168, 107, 69, 0.95) !important; }
.zoom-tile-face.zoom-tile-mic--speaking,
.zoom-tile:has(.zoom-tile-mic--speaking) {
  box-shadow: inset 0 0 0 2px var(--or-clair), 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Two Telegram bubbles, staggered */
.tg-bubble {
  width: 168px;
  padding: 0.6rem 0.75rem 0.65rem;
}
.tg-bubble-1 { top: 22%; right: 0.85rem; }
.tg-bubble-2 {
  top: 50%;
  right: 1.8rem;
  animation-delay: 1.2s;
  background: rgba(247, 240, 224, 0.97);
  transform: rotate(0.5deg);
}
.tg-bubble-2::after { border-right-color: rgba(247, 240, 224, 0.97); }

/* Avatar with photo */
.tg-bubble-avatar {
  overflow: hidden;
  padding: 0;
}
.tg-bubble-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tg-bubble-avatar-1 { background: linear-gradient(135deg, #8a5638, var(--terracotta)); }
.tg-bubble-avatar-2 { background: linear-gradient(135deg, var(--or-clair), var(--or-profond)); }

/* Time replaces "online" subtitle on individual messages */
.tg-bubble-time {
  font-size: 0.55rem;
  color: var(--bronze);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

.tg-bubble-msg {
  font-size: 0.68rem;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .tg-bubble-1, .tg-bubble-2 { display: none; }
}


/* ============================================
   TESTIMONIALS — magazine spread
   ============================================ */
.testimonials-section {
  background: var(--sable);
  padding: 7rem 2rem 7rem;
  position: relative;
  overflow: hidden;
}
.testimonials-deco { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.testimonials-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--champagne);
  opacity: 0.5;
}
.testimonials-circle--1 { top: -180px; right: -150px; width: 540px; height: 540px; }
.testimonials-circle--2 { bottom: -200px; left: -180px; width: 640px; height: 640px; border-color: var(--or-clair); opacity: 0.25; }
.testimonials-bigmark {
  position: absolute;
  top: 4rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 28rem;
  line-height: 0.8;
  color: var(--or-clair);
  opacity: 0.08;
  pointer-events: none;
  font-style: italic;
  user-select: none;
}

/* HERO TESTIMONIAL */
.testimonial-hero {
  background: var(--ivoire);
  border-radius: 1.75rem;
  padding: 0;
  margin: 0 auto 3rem;
  max-width: 1100px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  overflow: hidden;
  box-shadow:
    0 30px 70px rgba(44, 37, 24, 0.18),
    0 0 0 1px var(--champagne);
  position: relative;
}
.testimonial-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--or-clair), var(--or-profond), var(--or-clair));
  z-index: 2;
}
.testimonial-hero-portrait {
  position: relative;
  background: linear-gradient(135deg, var(--champagne) 0%, var(--or-clair) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 320px;
}
.testimonial-hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}
.testimonial-hero-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(184, 151, 58, 0.25) 100%);
  pointer-events: none;
}
.testimonial-hero-stars {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  font-size: 0.95rem;
  color: var(--or-clair);
  letter-spacing: 0.1em;
  background: rgba(15, 12, 8, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 185, 106, 0.4);
  z-index: 2;
}
.testimonial-hero-body {
  padding: 3rem 3.5rem 3rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial-hero-mark {
  position: absolute;
  top: 1rem;
  right: 2.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 9rem;
  line-height: 0.8;
  color: var(--or-clair);
  opacity: 0.4;
  pointer-events: none;
  user-select: none;
}
.testimonial-hero-quote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 500;
  color: var(--encre);
  line-height: 1.3;
  margin: 0 0 1.25rem;
  letter-spacing: -0.005em;
  position: relative;
  z-index: 1;
}
.testimonial-hero-quote em {
  font-style: italic;
  color: var(--or-profond);
}
.testimonial-hero-text {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--encre);
  margin: 0 0 2rem;
  position: relative;
  z-index: 1;
}
.testimonial-hero-signature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}
.testimonial-hero-rule {
  width: 32px;
  height: 1px;
  background: var(--or-profond);
  flex-shrink: 0;
}
.testimonial-hero-name {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--or-profond);
  line-height: 1.1;
}
.testimonial-hero-role {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
  margin-top: 0.35rem;
}

/* TRIO */
.testimonials-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--ivoire);
  border-radius: 1.25rem;
  padding: 2.25rem 1.75rem 1.75rem;
  position: relative;
  border: 1px solid var(--champagne);
  transition: transform var(--t-base) var(--ease-soft),
              box-shadow var(--t-base) ease,
              border-color var(--t-base) ease;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--or-clair);
  box-shadow: 0 22px 50px rgba(44, 37, 24, 0.15);
}
.testimonial-card-mark {
  position: absolute;
  top: 0.5rem;
  right: 1.25rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 4rem;
  line-height: 0.8;
  color: var(--or-clair);
  opacity: 0.5;
  pointer-events: none;
}
.testimonial-card-stars {
  font-size: 0.85rem;
  color: var(--or-profond);
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}
.testimonial-card-quote {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.35;
  color: var(--encre);
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.testimonial-card-quote em { font-style: italic; color: var(--or-profond); }
.testimonial-card-text {
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--encre);
  margin: 0;
  flex: 1;
}
.testimonial-card-foot {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--champagne);
}
.testimonial-card-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  border: 2px solid var(--ivoire);
}
.testimonial-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-card-name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--or-profond);
  line-height: 1.1;
}
.testimonial-card-role {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
  margin-top: 0.2rem;
}

@media (max-width: 900px) {
  .testimonial-hero { grid-template-columns: 1fr; }
  .testimonial-hero-portrait { min-height: 300px; aspect-ratio: 16/9; }
  .testimonial-hero-body { padding: 2.5rem 2rem 2.5rem; }
  .testimonial-hero-mark { right: 1.5rem; top: 0.5rem; font-size: 6rem; }
  .testimonials-trio { grid-template-columns: 1fr; gap: 1rem; }
  .testimonials-bigmark { font-size: 18rem; top: 2rem; }
}
