/**
 * Page d'accueil — bandeau, introduction, rideau, carrousel mobile.
 *
 * Traduction fidèle de la maquette validée. Les valeurs sont reprises telles
 * quelles, décimales comprises (15.5px, 10.5px, 14.5px) : elles ne sont pas
 * arrondies vers l'échelle du thème, sinon le rendu s'écarte de la maquette.
 *
 * La bascule se fait à 900 px : au-dessus le rideau (.rd), en dessous le
 * carrousel (.fm). Les deux ne coexistent jamais — voir .idv-desk / .idv-mob
 * dans 5-chrome.css.
 */

/* Une seule durée et une seule courbe pour tout le mouvement de la page. */
.rd,
.fm {
  --rd-rideau: 460ms cubic-bezier(0.2, 0.6, 0.3, 1);
  --rd-voile-ferme: linear-gradient(180deg, rgb(28 27 53 / 0.12) 34%, rgb(28 27 53 / 0.78) 100%);
  --rd-voile-replie: linear-gradient(180deg, rgb(28 27 53 / 0.62) 0%, rgb(28 27 53 / 0.72) 100%);
  --rd-voile-ouvert: linear-gradient(100deg, rgb(28 27 53 / 0.88) 0%, rgb(28 27 53 / 0.66) 52%, rgb(28 27 53 / 0.34) 100%);
}

/* ═══════════════════════════════════════════════════════════
   Bandeau d'annonce
   ═══════════════════════════════════════════════════════════ */

.rd-annonce-bandeau {
  display: block;
  background: var(--sable);
}

.rd-annonce-bandeau:hover {
  color: var(--ink);
}

.rd-annonce-bandeau__contenu {
  width: min(100%, var(--largeur-contenu));
  margin-inline: auto;
  padding: 9px var(--gouttiere);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 14px;
  text-align: center;
}

.rd-annonce-bandeau__surtitre {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terre-fonce);
}

.rd-annonce-bandeau__texte {
  font-size: 14.5px;
  color: #3A3547;
}

.rd-annonce-bandeau__action {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--terre-fonce);
  border-bottom: 1px solid var(--terre);
}

/* ═══════════════════════════════════════════════════════════
   Introduction
   ═══════════════════════════════════════════════════════════ */

.rd-intro {
  width: min(100%, var(--largeur-contenu));
  margin-inline: auto;
  padding: clamp(28px, 3.2vw, 52px) var(--gouttiere) clamp(18px, 2vw, 28px);
  text-align: center;
}

.rd-intro__surtitre {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terre-fonce);
}

.rd-intro__titre {
  margin: 0 auto;
  max-width: 30ch;
  font-family: var(--police-titre);
  font-weight: 500;
  font-size: clamp(2rem, 1.3rem + 2.8vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}

/* ── Carte-signature du fondateur ────────────────────────── */

/* Dit qui est derrière l'Institut avant même le premier défilement. Elle est
   posée entre le titre et le chapô, centrée comme eux. */
.rd-signature {
  margin: 22px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 20px 8px 8px;
  border-radius: var(--rayon-rond);
  background: #fff;
  border: 1px solid var(--trait);
  text-align: left;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}

.rd-signature:hover,
.rd-signature:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgb(28 27 53 / 0.12);
  color: var(--ink);
}

.rd-signature img {
  width: 52px;
  height: 52px;
  border-radius: var(--rayon-rond);
  object-fit: cover;
  /* Même cadrage que le grand portrait plus bas : centré, il coupe le front. */
  object-position: 50% 18%;
  flex: 0 0 auto;
}

.rd-signature__texte {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.rd-signature__surtitre {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terre-fonce);
}

.rd-signature__nom {
  font-family: var(--police-titre);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.15;
  color: var(--ink);
}

.rd-signature__role {
  font-family: var(--police-texte);
  font-weight: 400;
  font-size: 14.5px;
  color: var(--ink-2);
}

.rd-intro__chapo {
  margin: 16px auto 0;
  max-width: 56ch;
  font-size: clamp(16.5px, 16px + 0.3vw, 18.5px);
  line-height: 1.6;
  color: var(--ink-2);
}

/* ═══════════════════════════════════════════════════════════
   Appel vers le carrousel — sous 900 px seulement
   ═══════════════════════════════════════════════════════════ */

.rd-appel {
  flex-direction: column;
  gap: 14px;
  padding: 0 22px clamp(34px, 6vw, 54px);
}

.rd-appel__bouton {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  min-height: 62px;
  padding: 0 22px;
  border-radius: var(--rayon-rond);
  background: var(--ink);
  color: var(--paper);
  font-size: 17px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgb(28 27 53 / 0.24);
}

.rd-appel__bouton:hover,
.rd-appel__bouton:focus-visible {
  color: var(--paper);
}

.rd-appel__bouton i { font-size: 13px; }

.rd-appel__apercu {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--ink-2);
}

.rd-appel__vignettes {
  display: flex;
  flex: 0 0 auto;
}

.rd-appel__vignettes img {
  width: 34px;
  height: 34px;
  border-radius: var(--rayon-rond);
  object-fit: cover;
  border: 2px solid var(--paper);
}

/* Les vignettes se chevauchent, comme des jetons empilés. */
.rd-appel__vignettes img + img { margin-left: -11px; }

/* ═══════════════════════════════════════════════════════════
   Le rideau
   ═══════════════════════════════════════════════════════════ */

.rd {
  width: min(100%, var(--largeur-contenu));
  margin-inline: auto;
  padding: 0 var(--gouttiere) clamp(40px, 5vw, 84px);
}

/* Annonce réservée aux lecteurs d'écran. */
.rd-annonce {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.rd-piste {
  display: flex;
  gap: 6px;
  min-height: 620px;
}

/* ── Le panneau et ses trois tailles ─────────────────────── */

.rd-panneau {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  min-height: 620px;
  flex: 1 1 33.333%;
  min-width: 0;
  transition:
    flex-grow var(--rd-rideau),
    flex-basis var(--rd-rideau),
    min-width var(--rd-rideau);
}

/* L'attribut est posé par le script sur le conteneur. */
[data-rideau-etat] .rd-panneau { flex: 0 0 84px; min-width: 84px; }
[data-rideau-etat] .rd-panneau[data-actif] { flex: 1 1 100%; min-width: 0; }

.rd-panneau__fond {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rd-panneau__voile {
  position: absolute;
  inset: 0;
  background: var(--rd-voile-ferme);
  transition: background var(--rd-rideau);
}

[data-rideau-etat] .rd-panneau .rd-panneau__voile { background: var(--rd-voile-replie); }
[data-rideau-etat] .rd-panneau[data-actif] .rd-panneau__voile { background: var(--rd-voile-ouvert); }

/* ── Qui est visible dans quel état ──────────────────────── */

.rd-tranche,
.rd-detail { display: none; }

.rd-carte { display: flex; }

[data-rideau-etat] .rd-panneau .rd-carte,
[data-rideau-etat] .rd-panneau .rd-badge { display: none; }
[data-rideau-etat] .rd-panneau .rd-tranche { display: flex; }

[data-rideau-etat] .rd-panneau[data-actif] .rd-tranche { display: none; }
[data-rideau-etat] .rd-panneau[data-actif] .rd-detail { display: flex; }

/* ── Fermé : la carte, cliquable sur toute sa surface ────── */

/* Le bouton couvre le panneau entier. La pastille « Ouvrir » n'est qu'un
   repère : on peut cliquer l'image, le titre, le vide autour. */
.rd-carte,
.rd-tranche {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.rd-carte {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 12px;
  padding: clamp(20px, 2.4vw, 34px);
  text-align: left;
}

.rd-carte__surtitre {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--or);
}

.rd-carte__titre {
  font-family: var(--police-titre);
  font-weight: 500;
  font-size: clamp(1.55rem, 1.2rem + 1vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--paper);
}

.rd-carte__resume {
  max-width: 26ch;
  font-size: 15.5px;
  line-height: 1.55;
  color: rgb(251 248 243 / 0.86);
}

.rd-carte__ouvrir {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 4px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: var(--rayon-rond);
  border: 1px solid rgb(251 248 243 / 0.55);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper);
  transition: background-color var(--transition);
}

.rd-carte__ouvrir i { font-size: 11px; }

/* Le panneau entier est une cible : sans ce retour, rien ne le dit. */
.rd-carte:hover .rd-carte__ouvrir,
.rd-carte:focus-visible .rd-carte__ouvrir {
  background: rgb(251 248 243 / 0.14);
}

.rd-badge {
  position: absolute;
  left: clamp(20px, 2.4vw, 34px);
  top: clamp(20px, 2.4vw, 34px);
  padding: 6px 12px;
  background: var(--or);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  /* Posé par-dessus le bouton : il ne doit pas intercepter le clic. */
  pointer-events: none;
}

/* ── Replié : la tranche verticale ───────────────────────── */

.rd-tranche {
  align-items: center;
  justify-content: center;
  padding: 16px 0;
}

.rd-tranche__texte {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--police-titre);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: 0.01em;
  color: var(--paper);
  text-shadow: 0 1px 8px rgb(28 27 53 / 0.5);
}

.rd-tranche__numero {
  font-family: var(--police-texte);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--or);
}

/* ── Ouvert : le détail ──────────────────────────────────── */

.rd-detail {
  position: relative;
  z-index: 2;
  flex-direction: column;
  justify-content: flex-end;
  min-height: inherit;
  height: 100%;
  padding: clamp(24px, 3vw, 52px);
}

.rd-fermer {
  position: absolute;
  right: clamp(16px, 2vw, 28px);
  top: clamp(16px, 2vw, 28px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: var(--rayon-rond);
  border: 1px solid rgb(251 248 243 / 0.45);
  background: rgb(28 27 53 / 0.3);
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper);
  transition: background-color var(--transition);
}

.rd-fermer:hover,
.rd-fermer:focus-visible { background: rgb(28 27 53 / 0.55); }

.rd-fermer i { font-size: 12px; }

.rd-detail__surtitre {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or);
}

.rd-detail__titre {
  margin: 0;
  max-width: 22ch;
  font-family: var(--police-titre);
  font-weight: 500;
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--paper);
}

.rd-detail__texte {
  margin: 18px 0 0;
  max-width: 48ch;
  font-size: clamp(16.5px, 16px + 0.35vw, 19px);
  line-height: 1.6;
  color: rgb(251 248 243 / 0.9);
}

.rd-faits {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rd-faits li {
  margin-block-start: 0;
  padding: 8px 15px;
  border-radius: var(--rayon-rond);
  border: 1px solid rgb(251 248 243 / 0.35);
  font-size: 14px;
  font-weight: 500;
  color: var(--paper);
  white-space: nowrap;
}

.rd-detail__pied {
  margin: 26px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.rd-bouton {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 26px;
  border-radius: var(--rayon-rond);
  background: var(--or);
  color: var(--ink);
  font-size: 15.5px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color var(--transition), transform var(--transition);
}

.rd-bouton:hover,
.rd-bouton:focus-visible {
  background: #F7DE66;
  transform: translateY(-2px);
  color: var(--ink);
}

.rd-bouton i { font-size: 12px; }

.rd-prix {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--paper);
}

/* ═══════════════════════════════════════════════════════════
   Carrousel des formations — sous 900 px seulement
   ═══════════════════════════════════════════════════════════ */

.fm {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 80px;
  flex-direction: column;
  background: #141326;
  color: var(--paper);
  padding: 30px 0;
}

.fm__halo {
  position: absolute;
  aspect-ratio: 1;
  border-radius: var(--rayon-rond);
  pointer-events: none;
}

.fm__halo--terre {
  left: -18%;
  top: -10%;
  width: 82%;
  background: radial-gradient(circle, rgb(140 95 66 / 0.55) 0%, rgb(140 95 66 / 0) 68%);
  filter: blur(24px);
}

.fm__halo--or {
  right: -22%;
  bottom: 4%;
  width: 76%;
  background: radial-gradient(circle, rgb(243 211 60 / 0.28) 0%, rgb(243 211 60 / 0) 70%);
  filter: blur(26px);
}

.fm__entete {
  position: relative;
  padding: 0 22px 6px;
}

.fm__surtitre {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--or);
}

.fm__titre {
  margin: 12px 0 0;
  max-width: 22ch;
  font-family: var(--police-titre);
  font-weight: 500;
  font-size: clamp(1.7rem, 1.3rem + 2.2vw, 2.3rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--paper);
}

.fm__chapo {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.5;
  color: rgb(251 248 243 / 0.78);
}

/* Défilement au doigt, avec accrochage : aucun script derrière. */
.fm__piste {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 14px;
  padding: 18px 22px 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.fm__piste::-webkit-scrollbar { display: none; }

.fm-carte {
  flex: 0 0 82%;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 20px 50px rgb(20 19 38 / 0.45);
  animation: fm-monte 320ms cubic-bezier(0.2, 0.6, 0.3, 1) both;
}

/* Les cartes entrent l'une après l'autre, de gauche à droite. */
.fm-carte:nth-child(2) { animation-delay: 70ms; }
.fm-carte:nth-child(3) { animation-delay: 140ms; }

.fm-carte__media {
  position: relative;
  display: block;
  flex: 0 0 auto;
  height: min(30vh, 196px);
  overflow: hidden;
}

.fm-carte__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fm-carte__voile {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(28 27 53 / 0) 40%, rgb(28 27 53 / 0.72) 100%);
}

.fm-carte__surtitre {
  position: absolute;
  left: 18px;
  bottom: 14px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--or);
}

.fm-carte__badge {
  position: absolute;
  right: 14px;
  top: 14px;
  padding: 6px 12px;
  border-radius: var(--rayon-rond);
  background: var(--or);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}

.fm-carte__corps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}

.fm-carte__titre {
  margin: 0;
  font-family: var(--police-titre);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.fm-carte__texte {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-2);
}

.fm-carte__note {
  margin: 0;
  padding: 11px 14px;
  border-left: 3px solid var(--terre);
  background: var(--sable);
  font-size: 14.5px;
  line-height: 1.45;
  font-weight: 600;
  color: var(--terre-fonce);
}

.fm-carte__prix {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

/* Le bouton reste collé en bas de la carte, même si le texte défile. Le halo
   de la couleur du papier masque ce qui passe dessous. */
.fm-carte__bouton {
  margin-top: auto;
  position: sticky;
  bottom: 0;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  border-radius: var(--rayon-rond);
  background: var(--ink);
  color: var(--paper);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 0 0 8px var(--paper);
}

.fm-carte__bouton:hover,
.fm-carte__bouton:focus-visible {
  background: var(--c-nuit-clair);
  color: var(--paper);
}

.fm-carte__bouton i { font-size: 12px; }

.fm__indice {
  position: relative;
  margin: 0;
  padding: 6px 22px 0;
  text-align: center;
  font-size: 13px;
  color: rgb(251 248 243 / 0.62);
}

@keyframes fm-monte {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .fm-carte { animation: none; }
}

/* ═══════════════════════════════════════════════════════════
   Le fondateur
   ═══════════════════════════════════════════════════════════ */

.rd-fondateur {
  border-block: 1px solid var(--trait);
  background: var(--paper-2);
}

.rd-fondateur__grille {
  width: min(100%, var(--largeur-contenu));
  margin-inline: auto;
  padding: clamp(40px, 5vw, 84px) var(--gouttiere);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 3.5vw, 60px);
  align-items: center;
}

.rd-fondateur__portrait {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  object-fit: cover;
  /* Le cadrage remonte : centré, le portrait coupe le front. */
  object-position: 50% 18%;
  border-radius: 8px;
}

.rd-fondateur__surtitre {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terre-fonce);
}

.rd-fondateur__titre {
  margin: 0;
  font-family: var(--police-titre);
  font-weight: 500;
  font-size: clamp(1.9rem, 1.4rem + 1.8vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.rd-fondateur__texte {
  margin: 18px 0 0;
  max-width: 50ch;
  font-size: clamp(16.5px, 16px + 0.35vw, 19px);
  line-height: 1.6;
  color: var(--ink-2);
}

.rd-fondateur__texte strong {
  font-weight: 700;
  color: var(--ink);
}

.rd-fondateur__lien {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--terre);
  text-decoration: none;
}

.rd-fondateur__lien:hover,
.rd-fondateur__lien:focus-visible { color: var(--terre); }

.rd-fondateur__lien i { font-size: 11px; }

/* ═══════════════════════════════════════════════════════════
   Ce qu'en disent les membres
   ═══════════════════════════════════════════════════════════ */

.rd-paroles {
  width: min(100%, var(--largeur-contenu));
  margin-inline: auto;
  padding: clamp(40px, 5vw, 84px) var(--gouttiere);
}

.rd-paroles__entete {
  text-align: center;
  margin-bottom: 30px;
}

.rd-paroles__surtitre {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terre-fonce);
}

.rd-paroles__titre {
  margin: 0;
  font-family: var(--police-titre);
  font-weight: 500;
  font-size: clamp(1.8rem, 1.4rem + 1.6vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* La base donne à tout blockquote un filet doré et l'italique. Ici les
   citations sont des cartes : on remet à zéro avant d'habiller. */
.rd-parole blockquote {
  margin: 0;
  padding-inline-start: 0;
  border-inline-start: 0;
  font-family: var(--police-texte);
  font-style: normal;
}

.rd-parole--vedette {
  margin: 0 auto 14px;
  max-width: 900px;
  text-align: center;
}

.rd-parole--vedette blockquote {
  font-family: var(--police-titre);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.4rem, 1.1rem + 1.5vw, 2.4rem);
  line-height: 1.28;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.rd-parole--vedette figcaption {
  margin-top: 18px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terre-fonce);
}

.rd-paroles__trio {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.rd-paroles__trio .rd-parole {
  margin: 0;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--trait);
  border-radius: 8px;
}

.rd-paroles__trio blockquote {
  font-size: 16px;
  line-height: 1.6;
  color: #3C3849;
}

.rd-paroles__trio figcaption {
  margin-top: 16px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terre-fonce);
}

/* ═══════════════════════════════════════════════════════════
   Sous 900 px : les grilles à colonnes passent en pile
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .rd-fondateur__grille,
  .rd-paroles__trio {
    grid-template-columns: 1fr;
  }
}
