/* Reabel Partners — one-page v3
 * Tout est stylé via les variables --rp-* du design system (colors_and_type.css).
 */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 64px; /* hauteur du header fixe */
}
html, body {
  margin: 0;
  padding: 0;
  background: var(--rp-dark-blue);
  color: var(--rp-fg);
  font-family: var(--rp-font-body);
}
*, *::before, *::after { box-sizing: border-box; }
a { color: var(--rp-link); text-decoration: none; }
a:hover { color: var(--rp-link-hover); }
img { max-width: 100%; }

@keyframes rpFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
@keyframes rpMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Les éléments ne sont masqués que si JS est actif (classe posée par main.js) :
   sans JavaScript, tout le contenu reste visible. */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 800ms var(--rp-ease-standard), transform 800ms var(--rp-ease-standard);
}
html.js [data-reveal="in"] { opacity: 1; transform: none; }

/* Vidéo d'arrière-plan (hero, contact) */
.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Animation générative d'arrière-plan (panneaux Trajectoires) */
.bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* Eyebrows et titres de section */
.eyebrow {
  font-family: var(--rp-font-ui);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rp-coral);
  margin: 0 0 20px;
}
.eyebrow--gold { color: var(--rp-gold); }

.section-title {
  font-family: var(--rp-font-display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.12;
  color: var(--rp-fg);
  margin: 0;
}
.section-title--split { max-width: 820px; }
.section-title--method { max-width: 720px; }
.section-title--portfolio { color: var(--rp-white); margin-bottom: 16px; max-width: 820px; }
.section-title--team { font-size: clamp(30px, 3.4vw, 46px); line-height: 1.15; margin-bottom: 28px; }
.section-title--contact { font-size: clamp(30px, 3.6vw, 50px); line-height: 1.15; color: var(--rp-white); margin-bottom: 40px; }

/* ============ HEADER + PROGRESS ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: 64px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(29, 37, 52, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.brand { display: flex; align-items: center; }
.brand img { height: 24px; display: block; }

.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav a {
  font-family: var(--rp-font-ui);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}
.site-nav a:hover, .site-nav a.active { color: var(--rp-white); }
.nav-num { color: var(--rp-coral); }

.header-cta {
  font-family: var(--rp-font-ui);
  font-weight: 600;
  font-size: 13px;
  color: var(--rp-dark-blue);
  background: var(--rp-white);
  padding: 8px 18px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background var(--rp-dur-base) var(--rp-ease-standard);
}
.header-cta:hover { background: var(--rp-light-gray); color: var(--rp-dark-blue); }

.progress {
  position: absolute;
  bottom: -2px; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--rp-coral), var(--rp-gold));
}

/* Recherche */
.search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transition: color var(--rp-dur-base) var(--rp-ease-standard);
}
.search-btn:hover { color: var(--rp-white); }
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(29, 37, 52, 0.97);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 16vh 24px 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms var(--rp-ease-standard), visibility 240ms var(--rp-ease-standard);
}
.search-overlay.open { opacity: 1; visibility: visible; }
.search-box { width: 100%; max-width: 640px; }
.search-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  padding: 18px 20px;
  font-family: var(--rp-font-body);
  font-size: 18px;
  color: var(--rp-white);
}
.search-input:focus { outline: none; border-color: var(--rp-light-blue); }
.search-input::placeholder { color: rgba(255, 255, 255, 0.45); }
.search-results { margin-top: 14px; display: flex; flex-direction: column; gap: 6px; }
.search-result {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  transition: background var(--rp-dur-fast) var(--rp-ease-standard);
}
.search-result:hover { background: rgba(255, 255, 255, 0.12); }
.sr-t { font-family: var(--rp-font-ui); font-weight: 600; font-size: 15px; color: var(--rp-white); }
.sr-d { font-size: 13px; color: rgba(255, 255, 255, 0.6); }
.search-empty { color: rgba(255, 255, 255, 0.6); font-size: 14px; padding: 8px 4px; margin: 0; }
.search-hint {
  margin: 14px 4px 0;
  font-family: var(--rp-font-ui);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.65);
}

/* Burger + menu mobile */
.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--rp-white);
  transition: transform var(--rp-dur-base) var(--rp-ease-standard), opacity var(--rp-dur-base) var(--rp-ease-standard);
}
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 49;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 88px 32px 48px;
  background: rgba(29, 37, 52, 0.98);
  opacity: 0;
  visibility: hidden;
  transition: opacity 280ms var(--rp-ease-standard), visibility 280ms var(--rp-ease-standard);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--rp-font-display);
  font-size: 30px;
  color: var(--rp-white);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-menu a:hover { color: var(--rp-white); }
.mobile-menu .nav-num {
  font-family: var(--rp-font-ui);
  font-weight: 600;
  font-size: 15px;
  margin-right: 14px;
}
.mobile-menu-cta {
  align-self: flex-start;
  margin-top: 32px;
  border-bottom: none;
}
.mobile-menu a.mobile-menu-cta {
  font-family: var(--rp-font-ui);
  font-weight: 600;
  font-size: 15px;
  color: var(--rp-dark-blue);
  background: var(--rp-white);
  padding: 12px 24px;
  border-radius: 8px;
}
body.menu-open { overflow: hidden; }

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--rp-dark-blue);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 64px;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29, 37, 52, 0.42) 0%, rgba(29, 37, 52, 0.12) 55%, rgba(29, 37, 52, 0.6) 100%);
}
.hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  animation: rpFadeUp 700ms var(--rp-ease-standard);
}
.hero-eyebrow {
  font-family: var(--rp-font-ui);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rp-gold);
  margin: 0 0 32px;
}
.hero-title {
  font-family: var(--rp-font-display);
  font-weight: 400;
  font-size: clamp(56px, 8.5vw, 128px);
  line-height: 1.02;
  color: var(--rp-white);
  text-shadow: 0 2px 24px rgba(29, 37, 52, 0.6);
  margin: 0;
}
.hero-title--outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.85);
  text-shadow: none;
  margin: 0 0 48px;
}
.hero-stats {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 32px;
  max-width: 820px;
}
.stat-value {
  font-family: var(--rp-font-display);
  font-size: 44px;
  line-height: 1;
  color: var(--rp-white);
}
.stat-label {
  font-family: var(--rp-font-ui);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 8px;
}
.scroll-hint {
  position: absolute;
  bottom: 28px; left: 48px;
  font-family: var(--rp-font-ui);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* ============ TICKER SECTORIEL ============ */
.ticker {
  background: var(--rp-dark-blue);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  padding: 18px 0;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: rpMarquee 56s linear infinite;
}
.ticker-set {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
}
.ticker-set span {
  font-family: var(--rp-font-ui);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}
.ticker-set .tick-sep { color: rgba(255, 107, 107, 0.55); }

/* ============ PRINCIPES ============ */
.principles {
  background: var(--rp-dark-blue);
  padding: 110px 48px;
}
.principles-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.principle {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 28px;
}
.principle-word {
  font-family: var(--rp-font-accent);
  font-style: italic;
  font-size: 32px;
  color: var(--rp-white);
  margin: 0 0 14px;
}
.principle-note {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  max-width: 340px;
}

/* ============ 01 CONVICTION ============ */
.conviction {
  background: var(--rp-dark-blue);
  padding: 26vh 48px;
}
.conviction-inner { max-width: 1100px; margin: 0 auto; }
.conviction .eyebrow { margin-bottom: 40px; }
.manifesto {
  font-family: var(--rp-font-display);
  font-weight: 400;
  font-size: clamp(30px, 3.8vw, 54px);
  line-height: 1.35;
  margin: 0;
  color: rgba(255, 255, 255, 0.18);
}
.manifesto span[data-w] {
  color: rgba(255, 255, 255, 0.18);
  transition: color 400ms var(--rp-ease-standard);
}
.manifesto span[data-w="lit"] { color: var(--rp-white); }
.quote-row {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.quote-dash { flex: 0 0 auto; width: 48px; height: 3px; background: var(--rp-coral); }
.quote {
  font-family: var(--rp-font-accent);
  font-style: italic;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}
.conviction-linkedin {
  display: inline-block;
  margin-top: 40px;
  font-family: var(--rp-font-ui);
  font-weight: 600;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 2px solid var(--rp-coral);
  padding-bottom: 2px;
  transition: color var(--rp-dur-base) var(--rp-ease-standard);
}
.conviction-linkedin:hover { color: var(--rp-coral); }

/* ============ 02 TRAJECTOIRES ============ */
.split-section { background: var(--rp-white); }
.split-head {
  padding: 120px 48px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.split-intro {
  font-size: 17px;
  line-height: 1.7;
  color: var(--rp-fg-2);
  max-width: 760px;
  margin: 28px 0 0;
}
.coverage-label {
  margin: 40px 0 14px;
  font-family: var(--rp-font-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rp-muted);
}
.coverage {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  font-family: var(--rp-font-ui);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--rp-fg-2);
  border: 1px solid var(--rp-border-strong);
  border-radius: var(--rp-radius-pill);
  padding: 8px 16px;
  white-space: nowrap;
}
.split { display: flex; min-height: 72vh; }
.split-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  transition: flex 500ms var(--rp-ease-standard);
  display: flex;
  align-items: flex-end;
}
.split-panel--investors { border-right: 1px solid rgba(255, 255, 255, 0.2); }
@media (hover: hover) {
  .split-panel:hover { flex: 1.6; }
}
.split-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29, 37, 52, 0.08) 0%, rgba(29, 37, 52, 0.42) 55%, rgba(29, 37, 52, 0.82) 100%);
  pointer-events: none;
}
.split-content { position: relative; padding: 48px; }
.split-tag {
  font-family: var(--rp-font-ui);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.split-tag--coral { color: var(--rp-coral); }
.split-tag--ocean { color: var(--rp-ocean); }
.split-title {
  font-family: var(--rp-font-display);
  font-weight: 400;
  font-size: 38px;
  color: var(--rp-white);
  margin: 0 0 16px;
}
.split-text {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 460px;
  margin: 0 0 20px;
}
.split-link {
  font-family: var(--rp-font-ui);
  font-weight: 600;
  font-size: 15px;
  color: var(--rp-white);
  padding-bottom: 2px;
}
.split-link--coral { border-bottom: 2px solid var(--rp-coral); }
.split-link--coral:hover { color: var(--rp-coral); }
.split-link--ocean { border-bottom: 2px solid var(--rp-ocean); }
.split-link--ocean:hover { color: var(--rp-ocean); }

/* ============ 03 MÉTHODE ============ */
.method {
  background: var(--rp-bg-alt);
  padding: 120px 0;
  overflow: hidden;
}
.method-head {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.method-tabs { display: flex; gap: 8px; margin-top: 28px; }
.method-tab {
  font-family: var(--rp-font-ui);
  font-weight: 600;
  font-size: 13px;
  color: var(--rp-fg-2);
  background: transparent;
  border: 1px solid var(--rp-border-strong);
  border-radius: var(--rp-radius-pill);
  padding: 10px 20px;
  cursor: pointer;
  transition: all var(--rp-dur-base) var(--rp-ease-standard);
}
.method-tab:hover { border-color: var(--rp-primary-blue); color: var(--rp-primary-blue); }
.method-tab.active {
  background: var(--rp-primary-blue);
  border-color: var(--rp-primary-blue);
  color: var(--rp-white);
}
.rail.rail--hidden { display: none; }
.rail-nav { display: flex; gap: 12px; padding-bottom: 8px; }
.rail-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--rp-border-strong);
  background: var(--rp-white);
  color: var(--rp-primary-blue);
  font-size: 18px;
  cursor: pointer;
  transition: all var(--rp-dur-base) var(--rp-ease-standard);
}
.rail-btn:hover { background: var(--rp-primary-blue); color: var(--rp-white); }
.rail {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 48px 48px 8px;
  margin-top: 8px;
  scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }
.rail-card {
  flex: 0 0 420px;
  scroll-snap-align: start;
  background: var(--rp-white);
  border: 1px solid var(--rp-border);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--rp-shadow-sm);
  transition: all var(--rp-dur-base) var(--rp-ease-standard);
}
.rail-card:hover { transform: translateY(-2px); box-shadow: var(--rp-shadow-md); }
.rail-card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
}
.rail-num { font-family: var(--rp-font-display); font-size: 64px; line-height: 1; }
.rail-num--coral { color: var(--rp-coral); }
.rail-num--ocean { color: var(--rp-ocean); }
.rail-num--gold { color: var(--rp-gold); }
.rail-num--medium { color: var(--rp-medium-blue); }
.rail-when {
  font-family: var(--rp-font-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rp-muted);
}
.rail-card h3 {
  font-family: var(--rp-font-ui);
  font-weight: 600;
  font-size: 24px;
  color: var(--rp-fg);
  margin: 0 0 14px;
}
.rail-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--rp-fg-2);
  margin: 0;
}
.rail-card--dark { background: var(--rp-dark-blue); border: none; }
.rail-card--dark .rail-when { color: rgba(255, 255, 255, 0.55); }
.rail-card--dark h3 { color: var(--rp-white); }
.rail-card--dark p { color: rgba(255, 255, 255, 0.8); }
.rail-spacer { flex: 0 0 24px; }

/* ============ 04 PORTEFEUILLE ============ */
.portfolio {
  background: var(--rp-dark-blue);
  padding: 140px 48px;
}
.portfolio-inner { max-width: 1200px; margin: 0 auto; }
.portfolio .eyebrow { margin-bottom: 24px; }
.portfolio-lead {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 640px;
  margin: 0 0 56px;
}
.axes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 80px;
}
.axis {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 36px;
  color: var(--rp-white);
  transition: border-color var(--rp-dur-base) var(--rp-ease-standard), transform var(--rp-dur-base) var(--rp-ease-standard);
}
a.axis:hover {
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  color: var(--rp-white);
}
.axis-more {
  margin-top: auto;
  padding-top: 22px;
  font-family: var(--rp-font-ui);
  font-weight: 600;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--rp-dur-base) var(--rp-ease-standard);
}
a.axis:hover .axis-more { color: var(--rp-white); }
.axis-more--soon { color: rgba(255, 255, 255, 0.4); font-style: normal; }
.axis-tag {
  font-family: var(--rp-font-ui);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.axis-tag--coral { color: var(--rp-coral); }
.axis-tag--ocean { color: var(--rp-ocean); }
.axis-tag--gold { color: var(--rp-gold); }
.axis p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}
.holdings-label {
  font-family: var(--rp-font-ui);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 8px;
}
.holdings-lead {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 640px;
  margin: 0 0 32px;
}
.holdings { display: flex; flex-direction: column; }
.holdings-sublabel {
  font-family: var(--rp-font-ui);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 44px 0 4px;
}
.holdings--grouped { margin-bottom: 8px; }
.holdings-note {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--rp-font-ui);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 2px;
  transition: color var(--rp-dur-base) var(--rp-ease-standard);
}
.holdings-note:hover { color: var(--rp-white); }

.case-study {
  margin: 56px 0 88px;
  border: 1px dashed rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  padding: 36px;
}
.case-study-kicker {
  font-family: var(--rp-font-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rp-gold);
  margin: 0 0 14px;
}
.case-study-title {
  font-family: var(--rp-font-display);
  font-size: 28px;
  line-height: 1.2;
  color: var(--rp-white);
  margin: 0 0 10px;
}
.case-study-text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.holdings-label--wall { margin-top: 88px; }
.logo-wall {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Tuiles d'opération : logo client -> logo contrepartie */
.deal-wall {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.deal-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: var(--rp-white);
  border-radius: 12px;
  padding: 28px 24px 22px;
  transition: transform var(--rp-dur-base) var(--rp-ease-standard), box-shadow var(--rp-dur-base) var(--rp-ease-standard);
}
.deal-tile:hover { transform: translateY(-2px); box-shadow: var(--rp-shadow-md); }
.deal-tile:focus-visible { outline: 2px solid var(--rp-white); outline-offset: 3px; }
.deal-pair {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
}
.deal-pair img {
  max-height: 38px;
  max-width: 36%;
  width: auto;
  object-fit: contain;
}
.deal-arrow {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  flex: 0 0 auto;
}
.deal-arrow--coral { color: var(--rp-coral); }
.deal-arrow--ocean { color: var(--rp-ocean); }
.deal-caption {
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  color: var(--rp-fg-2);
}
.deal-kind { display: block; margin-top: 4px; font-size: 13px; font-family: var(--rp-font-ui); font-weight: 600; letter-spacing: 0.04em; color: var(--rp-fg-2); }
.deal-caption strong { color: var(--rp-fg); }
.logo-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rp-white);
  border-radius: 12px;
  padding: 26px 24px;
  min-height: 92px;
  transition: transform var(--rp-dur-base) var(--rp-ease-standard), box-shadow var(--rp-dur-base) var(--rp-ease-standard);
}
.logo-tile:hover { transform: translateY(-2px); box-shadow: var(--rp-shadow-md); }
.logo-tile img {
  max-height: 40px;
  max-width: 82%;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.75;
  transition: filter var(--rp-dur-base) var(--rp-ease-standard), opacity var(--rp-dur-base) var(--rp-ease-standard);
}
.logo-tile:hover img { filter: none; opacity: 1; }
.logo-tile--navy { background: var(--rp-primary-blue); }
.logo-tile--faint img { filter: grayscale(1) brightness(0.55); }
.holding {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--rp-white);
  transition: padding-left 300ms var(--rp-ease-standard);
}
.holding:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.holding:hover { padding-left: 16px; color: var(--rp-white); }
.holding-index {
  font-family: var(--rp-font-display);
  font-size: 22px;
  color: rgba(255, 255, 255, 0.4);
}
.holding-name {
  display: block;
  font-family: var(--rp-font-display);
  font-size: 38px;
  line-height: 1.1;
  margin-bottom: 6px;
}
.holding-desc {
  display: block;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
}
.holding-arrow { font-family: var(--rp-font-ui); font-weight: 600; font-size: 20px; }
.holding-arrow--coral { color: var(--rp-coral); }
.holding-arrow--ocean { color: var(--rp-ocean); }
.holding-arrow--gold { color: var(--rp-gold); }

/* ============ 04 STRATÉGIE IA (accueil) ============ */
.ai-section {
  background: var(--rp-white);
  padding: 140px 48px;
}
.ai-inner { max-width: 1200px; margin: 0 auto; }
.ai-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--rp-fg-2);
  max-width: 760px;
  margin: 28px 0 0;
}
.ai-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 56px 0 48px;
}
.ai-pillar {
  border-top: 1px solid var(--rp-border-strong);
  padding-top: 22px;
}
.ai-num {
  display: block;
  font-family: var(--rp-font-display);
  font-size: 26px;
  line-height: 1;
  margin-bottom: 14px;
}
.ai-num--coral { color: var(--rp-coral); }
.ai-num--ocean { color: var(--rp-ocean); }
.ai-num--gold { color: var(--rp-gold); }
.ai-pillar p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--rp-fg-2);
  margin: 0;
}
.ai-pillar strong { color: var(--rp-fg); font-weight: 600; }
.ai-cta {
  display: inline-block;
  font-family: var(--rp-font-ui);
  font-weight: 600;
  font-size: 15px;
  color: var(--rp-primary-blue);
  border-bottom: 2px solid var(--rp-coral);
  padding-bottom: 2px;
  transition: color var(--rp-dur-base) var(--rp-ease-standard);
}
.ai-cta:hover { color: var(--rp-coral); }

/* ============ 06 ÉQUIPE ============ */
.team {
  position: relative;
  background: var(--rp-white);
  padding: 140px 48px;
  overflow: hidden;
}
.team-watermark {
  position: absolute;
  top: -40px; right: 24px;
  font-family: var(--rp-font-display);
  font-size: 340px;
  line-height: 1;
  color: var(--rp-bg-tint);
  pointer-events: none;
  user-select: none;
}
.team-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 72px;
  align-items: center;
}
.team .eyebrow { margin-bottom: 24px; }
.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.team-photo {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--rp-shadow-md);
}
.team-id { text-align: center; }
.team-name {
  font-family: var(--rp-font-ui);
  font-weight: 600;
  font-size: 20px;
  color: var(--rp-fg);
}
.team-role {
  font-family: var(--rp-font-ui);
  font-size: 14px;
  color: var(--rp-muted);
  margin-top: 4px;
}
.team-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 12px;
}
.team-links a { font-size: 13px; }
.team-bio {
  font-size: 17px;
  line-height: 1.65;
  color: var(--rp-fg-2);
  margin: 0 0 32px;
  max-width: 640px;
}
.timeline { display: flex; gap: 40px; flex-wrap: wrap; }
.timeline-year {
  font-family: var(--rp-font-display);
  font-size: 34px;
  color: var(--rp-primary-blue);
}
.timeline-what {
  font-family: var(--rp-font-ui);
  font-weight: 600;
  font-size: 14px;
  color: var(--rp-fg-2);
}
.partners {
  max-width: 1200px;
  margin: 96px auto 0;
  position: relative;
}
.partners-label {
  font-family: var(--rp-font-ui);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rp-muted);
  margin: 0 0 32px;
}
.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.partner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--rp-bg-alt);
  border: 1px solid var(--rp-border);
  border-radius: 12px;
  padding: 32px;
  transition: transform var(--rp-dur-base) var(--rp-ease-standard), box-shadow var(--rp-dur-base) var(--rp-ease-standard);
}
.partner:hover {
  transform: translateY(-2px);
  box-shadow: var(--rp-shadow-md);
}
.partner-avatar {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--rp-dark-blue);
  font-family: var(--rp-font-display);
  font-size: 23px;
  color: var(--rp-white);
}
.partner-photo {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--rp-shadow-sm);
}
.partners-lead {
  font-size: 16px;
  line-height: 1.65;
  color: var(--rp-fg-2);
  max-width: 760px;
  margin: 0 0 40px;
}
.partner-body { display: flex; flex-direction: column; }
.partner-name {
  font-family: var(--rp-font-ui);
  font-weight: 600;
  font-size: 17px;
  color: var(--rp-fg);
}
.partner-role {
  font-family: var(--rp-font-ui);
  font-size: 13px;
  line-height: 1.5;
  color: var(--rp-muted);
  margin-top: 2px;
}
.partner-bio {
  font-size: 14px;
  line-height: 1.65;
  color: var(--rp-fg-2);
  margin-top: 12px;
}
.partner-follow {
  margin-top: 14px;
  font-family: var(--rp-font-ui);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--rp-medium-blue);
}
.partner:hover .partner-follow { color: var(--rp-primary-blue); }

/* ============ 06 PERSPECTIVES ============ */
.perspectives {
  background: var(--rp-bg-alt);
  padding: 140px 48px;
}
.perspectives-inner { max-width: 1200px; margin: 0 auto; }
.section-title--perspectives { max-width: 820px; margin-bottom: 56px; }
.perspective-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.perspective-card.perspective-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  padding: 48px;
}
.perspective-card.perspective-card--featured h3 { font-size: 30px; }
.perspective-quote {
  border-left: 3px solid var(--rp-coral);
  padding-left: 28px;
}
.perspective-card .perspective-quote p {
  font-family: var(--rp-font-accent);
  font-style: italic;
  font-size: 26px;
  line-height: 1.4;
  color: var(--rp-primary-blue);
  margin: 0 0 12px;
}
.perspective-card .perspective-quote span {
  font-family: var(--rp-font-ui);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rp-muted);
}
.perspective-card {
  display: flex;
  flex-direction: column;
  background: var(--rp-white);
  border: 1px solid var(--rp-border);
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: var(--rp-shadow-sm);
  color: var(--rp-fg);
  transition: all var(--rp-dur-base) var(--rp-ease-standard);
}
.perspective-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--rp-shadow-md);
  color: var(--rp-fg);
}
.perspective-card .perspective-kicker {
  font-family: var(--rp-font-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.perspective-card .perspective-kicker--coral { color: var(--rp-coral); }
.perspective-card .perspective-kicker--ocean { color: var(--rp-ocean); }
.perspective-card .perspective-kicker--gold { color: var(--rp-medium-blue); }
.perspective-card h3 {
  font-family: var(--rp-font-display);
  font-weight: 400;
  font-size: 23px;
  line-height: 1.25;
  color: var(--rp-fg);
  margin: 0 0 14px;
}
.perspective-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--rp-fg-2);
  margin: 0 0 24px;
}
.perspective-link {
  margin-top: auto;
  font-family: var(--rp-font-ui);
  font-weight: 600;
  font-size: 14px;
  color: var(--rp-primary-blue);
}
.perspective-card:hover .perspective-link { color: var(--rp-medium-blue); }

/* ============ 07 CONTACT ============ */
.contact {
  position: relative;
  overflow: hidden;
  background: var(--rp-dark-blue);
  padding: 160px 48px;
  text-align: center;
}
.contact-shade { position: absolute; inset: 0; background: rgba(29, 37, 52, 0.6); }
.contact-inner { position: relative; max-width: 1000px; margin: 0 auto; }
.contact .eyebrow { margin-bottom: 28px; }
.contact-email {
  display: inline-block;
  font-family: var(--rp-font-display);
  font-size: clamp(24px, 3.2vw, 44px);
  color: var(--rp-white);
  border-bottom: 3px solid var(--rp-coral);
  padding-bottom: 6px;
  transition: color var(--rp-dur-base) var(--rp-ease-standard);
}
.contact-email:hover { color: var(--rp-coral); }
.contact-form {
  max-width: 680px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--rp-font-body);
  font-size: 16px;
  color: var(--rp-white);
  transition: border-color var(--rp-dur-base) var(--rp-ease-standard);
}
.contact-form ::placeholder { color: rgba(255, 255, 255, 0.5); }
.contact-form select { color: rgba(255, 255, 255, 0.75); }
.contact-form select option { color: var(--rp-fg); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--rp-light-blue);
}
.contact-form textarea { resize: vertical; }

/* Barre d'édition (administrateur connecté) */
.admin-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1300;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 18px;
  background: #10161f;
  border-bottom: 1px solid rgba(255, 209, 102, 0.5);
  font-family: var(--rp-font-ui);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}
.admin-bar-label { font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 11.5px; color: #FFD166; white-space: nowrap; }
.admin-bar-actions { display: flex; align-items: center; gap: 6px; white-space: nowrap; overflow-x: auto; }
.admin-bar a { color: var(--rp-white); text-decoration: underline; }
.admin-bar-logout {
  background: none;
  border: none;
  padding: 4px 0;
  font: inherit;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  cursor: pointer;
}
.admin-bar a:focus-visible, .admin-bar-logout:focus-visible { outline: 2px solid #FFD166; outline-offset: 2px; }
body.has-admin-bar { padding-top: 40px; }
body.has-admin-bar .site-header { top: 40px; }
body.has-admin-bar .mobile-menu { top: 40px; }
.admin-bar-edit, .admin-bar-save, .admin-bar-cancel {
  background: none;
  border: 1px solid rgba(255, 209, 102, 0.6);
  border-radius: var(--rp-radius-pill);
  padding: 4px 12px;
  font: inherit;
  font-weight: 600;
  color: #FFD166;
  cursor: pointer;
}
.admin-bar-save { background: #FFD166; color: #10161f; }
.admin-bar-status { color: rgba(255, 255, 255, 0.85); }
body.rp-editing [data-edit] { outline: 2px dashed rgba(255, 209, 102, 0.65); outline-offset: 3px; cursor: text; }
body.rp-editing [data-edit]:hover { outline-color: #FFD166; }
body.rp-editing [data-edit]:focus { outline: 2px solid #FFD166; outline-offset: 3px; }
body.rp-editing [data-reveal] { opacity: 1 !important; transform: none !important; }
body.rp-editing [data-edit-img] { outline: 2px dashed rgba(72, 169, 166, 0.75); outline-offset: 3px; cursor: pointer; }
body.rp-editing [data-edit-img]:hover { outline-color: var(--rp-ocean); filter: brightness(0.85); }

/* Bandeau de consentement cookies */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1200;
  max-width: 720px;
  margin: 0 auto;
  background: var(--rp-primary-blue);
  color: var(--rp-white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 12px 40px rgba(10, 16, 28, 0.45);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-text { margin: 0; flex: 1 1 320px; font-size: 14px; line-height: 1.55; color: rgba(255, 255, 255, 0.88); }
.cookie-text a { color: var(--rp-white); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex: 0 0 auto; }
.cookie-btn {
  font-family: var(--rp-font-ui);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: var(--rp-radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  color: var(--rp-white);
  cursor: pointer;
}
.cookie-btn--accept { background: var(--rp-white); color: var(--rp-primary-blue); border-color: var(--rp-white); }
.cookie-btn--link { border-color: transparent; text-decoration: underline; padding-left: 8px; padding-right: 8px; }
.cookie-custom { display: grid; gap: 8px; flex: 1 1 100%; }
.cookie-custom label { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255, 255, 255, 0.88); cursor: pointer; }
.cookie-custom input { width: 18px; height: 18px; accent-color: var(--rp-coral); }
.cookie-banner { max-height: 60vh; overflow-y: auto; }
.cookie-btn:hover { border-color: var(--rp-white); }
.cookie-btn:focus-visible { outline: 2px solid var(--rp-white); outline-offset: 2px; }
.cookie-manage-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--rp-primary-blue);
  text-decoration: underline;
  cursor: pointer;
}
.cookie-manage-link:focus-visible { outline: 2px solid var(--rp-light-blue); outline-offset: 2px; }
@media (max-width: 560px) {
  .cookie-banner { flex-direction: column; align-items: stretch; }
  .cookie-actions { justify-content: stretch; }
  .cookie-btn { flex: 1; }
}

.form-field { display: grid; gap: 6px; }
.form-field label {
  font-family: var(--rp-font-ui);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
.form-optional { font-weight: 400; text-transform: none; letter-spacing: 0.02em; color: rgba(255, 255, 255, 0.62); }
.hp { position: absolute; left: -9999px; height: 0; opacity: 0; }
.form-submit {
  justify-self: center;
  font-family: var(--rp-font-ui);
  font-weight: 600;
  font-size: 15px;
  color: var(--rp-dark-blue);
  background: var(--rp-white);
  border: none;
  border-radius: var(--rp-radius-pill);
  padding: 14px 44px;
  cursor: pointer;
  transition: background var(--rp-dur-base) var(--rp-ease-standard);
}
.form-submit:hover { background: var(--rp-light-gray); }
.form-submit[disabled] { opacity: 0.6; cursor: wait; }
.form-status {
  min-height: 22px;
  margin: 0;
  text-align: center;
  font-family: var(--rp-font-ui);
  font-weight: 600;
  font-size: 14px;
  color: var(--rp-gold);
}
.form-status--ok { color: var(--rp-ocean); }
.contact-mail { color: var(--rp-white); border-bottom: 1px solid var(--rp-coral); padding-bottom: 1px; }
.contact-mail:hover { color: var(--rp-coral); }
.contact-details {
  margin-top: 48px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}
.contact-details a { color: rgba(255, 255, 255, 0.7); }
.contact-details a:hover { color: var(--rp-white); }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--rp-dark-blue);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 64px 48px 0;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr 1.2fr 0.7fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand img { height: 22px; margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
.footer-label {
  font-family: var(--rp-font-ui);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 12px;
}
.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}
.footer-col a { color: rgba(255, 255, 255, 0.65); }
.footer-col a:hover { color: var(--rp-white); }
.footer-base {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-base span { font-size: 12px; color: rgba(255, 255, 255, 0.65); }
.footer-admin { font-size: 12px; color: rgba(255, 255, 255, 0.65); padding: 6px 0; margin: -6px 0; }
.footer-admin:hover, .footer-admin:focus-visible { color: var(--rp-white); }
.footer-admin:focus-visible { outline: 2px solid var(--rp-white); outline-offset: 2px; }

/* ============ PAGES DÉDIÉES (trajectoires) ============ */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--rp-dark-blue);
  padding: 180px 48px 110px;
}
.page-hero .bg-video { opacity: 0.55; }
.page-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29, 37, 52, 0.55) 0%, rgba(29, 37, 52, 0.35) 55%, rgba(29, 37, 52, 0.92) 100%);
}
.page-hero-inner { position: relative; max-width: 1100px; margin: 0 auto; }
.page-title {
  font-family: var(--rp-font-display);
  font-weight: 400;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.08;
  color: var(--rp-white);
  margin: 0 0 28px;
}
.page-lead {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 760px;
  margin: 0;
}
.page-lead--tight { margin-bottom: 40px; }
.page-lead strong { color: var(--rp-white); font-weight: 600; }
.page-lead a { color: var(--rp-white); text-decoration: underline; text-underline-offset: 3px; transition: color var(--rp-dur-base) var(--rp-ease-standard); }
.page-lead a:hover { color: var(--rp-gold); }
.page-section { background: var(--rp-bg-alt); padding: 110px 48px; }
.page-section--navy { background: var(--rp-dark-blue); }
.page-section-inner { max-width: 1100px; margin: 0 auto; }
.section-title--onnavy { color: var(--rp-white); margin-bottom: 20px; }
.page-section .section-title { margin-bottom: 20px; }
.page-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--rp-fg-2);
  max-width: 720px;
  margin: 0 0 48px;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.feature-card {
  background: var(--rp-white);
  border: 1px solid var(--rp-border);
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: var(--rp-shadow-sm);
  transition: transform 350ms var(--rp-ease-standard), box-shadow 350ms var(--rp-ease-standard);
}
@media (hover: hover) {
  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(29, 37, 52, 0.13);
  }
  .feature-card .card-icon { transition: transform 350ms var(--rp-ease-standard); }
  .feature-card:hover .card-icon { transform: scale(1.15) rotate(-4deg); }
}
.feature-card h3 {
  font-family: var(--rp-font-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.25;
  color: var(--rp-fg);
  margin: 0 0 12px;
}
.feature-card p:last-child {
  font-size: 15px;
  line-height: 1.7;
  color: var(--rp-fg-2);
  margin: 0;
}
.feature-card .perspective-kicker {
  font-family: var(--rp-font-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.feature-card .perspective-kicker--coral { color: var(--rp-coral); }
.feature-card .perspective-kicker--ocean { color: var(--rp-ocean); }
.feature-card .perspective-kicker--gold { color: var(--rp-medium-blue); }
.collabs { margin: 12px 0 48px; }
.collab {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.collab:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.collab-who {
  font-family: var(--rp-font-ui);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rp-gold);
  padding-top: 3px;
}
.collab-what {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}
.collabs--light .collab,
.collabs--light .collab:last-child { border-color: rgba(31, 41, 63, 0.14); }
.collabs--light .collab-who { color: var(--rp-coral); }
.collabs--light .collab-what { color: var(--rp-fg-2); }
.ref-block {
  margin-top: 64px;
  padding-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.card-more {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--rp-font-ui);
  font-weight: 600;
  font-size: 13px;
  color: var(--rp-medium-blue);
}
.card-more:hover { color: var(--rp-primary-blue); }
.page-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.page-cta {
  font-family: var(--rp-font-ui);
  font-weight: 600;
  font-size: 14px;
  color: var(--rp-white);
  background: transparent;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--rp-radius-pill);
  padding: 13px 26px;
  transition: all var(--rp-dur-base) var(--rp-ease-standard);
}
.page-cta:hover { border-color: var(--rp-white); color: var(--rp-white); }
.page-cta--primary { background: var(--rp-white); color: var(--rp-dark-blue); border-color: var(--rp-white); }
.page-cta--primary:hover { background: var(--rp-light-gray); color: var(--rp-dark-blue); }
.footer-links { display: flex; flex-direction: column; gap: 6px; list-style: none; margin: 0; padding: 0; }
.footer-links a { display: inline-block; }
.footer-col p, .footer-col a { overflow-wrap: anywhere; }
.footer-links a[aria-current="page"] { color: var(--rp-white); }

/* Texte réservé aux lecteurs d'écran */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.legal h2 {
  font-family: var(--rp-font-ui);
  font-weight: 600;
  font-size: 20px;
  color: var(--rp-fg);
  margin: 40px 0 12px;
}
.legal h2:first-child { margin-top: 0; }
.legal p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--rp-fg-2);
  max-width: 780px;
  margin: 0 0 14px;
}
.legal-updated { font-size: 13px; color: var(--rp-muted); margin-top: 36px; }
.page-hero--compact { padding: 150px 48px 70px; }
.page-title--compact { font-size: clamp(32px, 4vw, 52px); margin-bottom: 0; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1360px) {
  .site-nav { gap: 14px; }
  .site-nav a { font-size: 11px; }
}
@media (max-width: 1160px) {
  .site-nav { gap: 10px; }
  .site-nav a { font-size: 10.5px; }
}

@media (max-width: 1060px) {
  .axes { grid-template-columns: 1fr; }
  .axis { flex-direction: column; }
}
@media (max-width: 960px) {
  .site-nav, .header-cta { display: none; }
  .site-header--page .site-nav { display: flex; gap: 16px; }
  .menu-btn { display: flex; }
  .team-inner { grid-template-columns: 1fr; gap: 48px; justify-items: center; }
  .team-inner > div:last-child { justify-self: stretch; }
  .team-watermark { font-size: 220px; top: -24px; }
  .principles-inner { grid-template-columns: 1fr; gap: 36px; }
  .perspective-cards { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .ai-pillars { grid-template-columns: 1fr; gap: 24px; }
  .ai-section { padding: 96px 24px; }
}

@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .hero { padding: 100px 24px 88px; }
  .hero-title { font-size: clamp(38px, 10.5vw, 128px); }
  .hero-title--outline { margin-bottom: 36px; }
  .hero-stats { gap: 28px 36px; padding-top: 28px; }
  .stat-value { font-size: 36px; }
  .scroll-hint { left: 24px; bottom: 24px; }

  .conviction { padding: 18vh 24px; }
  .quote-row { margin-top: 40px; }
  .quote { font-size: 18px; }

  .split-head { padding: 96px 24px 40px; }
  .split { flex-direction: column; min-height: 0; }
  .split-panel { min-height: 64vh; }
  .split-panel--investors { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
  .split-content { padding: 32px 24px; }
  .split-title { font-size: 30px; }

  .method { padding: 96px 0; }
  .method-head { padding: 0 24px; }
  .rail { padding: 40px 24px 8px; gap: 16px; }
  .rail-card { flex-basis: min(420px, 84vw); padding: 28px; }
  .rail-spacer { flex-basis: 8px; }

  .portfolio { padding: 96px 24px; }
  .axis { padding: 28px 24px; }
  .axes { margin-bottom: 64px; }
  .holding { grid-template-columns: 40px 1fr auto; gap: 16px; padding: 28px 0; }
  .holding-index { font-size: 18px; }
  .holding-name { font-size: 28px; }
  .case-study { margin: 40px 0 64px; padding: 28px 24px; }
  .case-study-title { font-size: 23px; }
  .holdings-label--wall { margin-top: 64px; }
  .logo-wall { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .deal-wall { grid-template-columns: 1fr; gap: 12px; }
  .logo-tile { padding: 20px 16px; min-height: 76px; }
  .logo-tile img { max-height: 32px; }

  .team { padding: 96px 24px; }
  .team-watermark { font-size: 160px; right: 12px; top: -16px; }
  .partners { margin-top: 64px; }
  .partners-grid { gap: 12px; }
  .partner { flex-direction: column; align-items: flex-start; gap: 16px; padding: 24px 20px; }
  .partner-photo { width: 60px; height: 60px; }
  .partner-name { font-size: 16px; }

  .contact { padding: 120px 24px; }
  .contact-details { margin-top: 36px; }

  .principles { padding: 80px 24px; }
  .principle-word { font-size: 27px; }

  .perspectives { padding: 96px 24px; }
  .perspective-card { padding: 28px 24px; }
  .perspective-card.perspective-card--featured { grid-template-columns: 1fr; gap: 28px; padding: 28px 24px; }
  .perspective-card.perspective-card--featured h3 { font-size: 24px; }
  .perspective-card .perspective-quote p { font-size: 22px; }

  .site-footer { padding: 48px 24px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; }
  .footer-base { flex-direction: column; align-items: flex-start; padding-bottom: 20px; }

  .page-hero { padding: 130px 24px 80px; }
  .page-section { padding: 80px 24px; }
  .feature-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature-card { padding: 28px 24px; }
  .collab { grid-template-columns: 1fr; gap: 10px; padding: 22px 0; }
}

/* ============ ACCESSIBILITÉ / MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-inner { animation: none; }
  .ticker-track { animation: none; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .split-panel, .rail-card, .holding, .menu-btn span, .mobile-menu, .deal-tile, .logo-tile { transition: none; }
  .manifesto span[data-w] { transition: none; }
}

/* ============ Assistant IA — recherche ============ */
.search-ask { display: none; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--rp-border); }
.search-ask.visible { display: block; }
.search-ask-btn {
  font-family: var(--rp-font-ui);
  font-weight: 600;
  font-size: 13px;
  color: var(--rp-coral);
  background: none;
  border: 1px solid var(--rp-coral);
  border-radius: var(--rp-radius-pill);
  padding: 8px 16px;
  cursor: pointer;
  transition: background var(--rp-dur-fast) var(--rp-ease-standard), color var(--rp-dur-fast) var(--rp-ease-standard);
}
.search-ask-btn:hover:not(:disabled) { background: var(--rp-coral); color: var(--rp-white); }
.search-ask-btn:disabled { opacity: 0.6; cursor: wait; }
.search-ask-answer { font-size: 14px; line-height: 1.65; color: var(--rp-fg-2); margin-top: 12px; }
.search-ask-answer:empty { display: none; }
.search-ask-answer a { color: var(--rp-coral); font-weight: 600; }

/* ============ Assistant IA — widget de chat ============ */
.agent-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 0;
  background: var(--rp-coral);
  color: var(--rp-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--rp-shadow-lg);
  transition: transform var(--rp-dur-fast) var(--rp-ease-standard), background var(--rp-dur-fast) var(--rp-ease-standard);
}
.agent-fab:hover { transform: scale(1.06); }
.agent-panel {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 60;
  width: min(380px, calc(100vw - 32px));
  display: none;
  flex-direction: column;
  background: var(--rp-dark-blue);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--rp-radius-lg);
  box-shadow: var(--rp-shadow-lg);
  overflow: hidden;
}
.agent-panel.open { display: flex; }
.agent-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.agent-title {
  display: block;
  font-family: var(--rp-font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--rp-fg-on-dark);
}
.agent-sub {
  display: block;
  font-family: var(--rp-font-ui);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rp-gold);
  margin-top: 2px;
}
.agent-close {
  background: none;
  border: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 2px 6px;
}
.agent-close:hover { color: var(--rp-white); }
.agent-msgs {
  height: 320px;
  max-height: 45vh;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.agent-msg {
  max-width: 85%;
  padding: 10px 13px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.55;
  white-space: pre-wrap;
}
.agent-msg--assistant {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  border-bottom-left-radius: 4px;
}
.agent-msg--assistant a { color: var(--rp-gold); font-weight: 600; }
.agent-msg--user {
  align-self: flex-end;
  background: var(--rp-coral);
  color: var(--rp-white);
  border-bottom-right-radius: 4px;
}
.agent-msg--wait { opacity: 0.55; animation: agent-pulse 1.2s ease-in-out infinite; }
@keyframes agent-pulse { 50% { opacity: 0.25; } }
.agent-form {
  display: flex;
  gap: 8px;
  padding: 12px 14px 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.agent-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--rp-radius-pill);
  color: var(--rp-fg-on-dark);
  font-family: var(--rp-font-body);
  font-size: 16px;
  padding: 9px 15px;
  outline: none;
}
.agent-input:focus { border-color: var(--rp-coral); }
.agent-input::placeholder { color: rgba(255, 255, 255, 0.45); }
.agent-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: var(--rp-coral);
  color: var(--rp-white);
  font-size: 17px;
  cursor: pointer;
}
.agent-send:disabled { opacity: 0.45; cursor: default; }
.agent-note {
  margin: 4px 16px 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}
@media (max-width: 560px) {
  .agent-panel { right: 16px; left: 16px; width: auto; bottom: 88px; }
  .agent-fab { right: 16px; bottom: 16px; }
}

/* ============ Recherche plein texte ============ */
.search-results { max-height: 52vh; overflow-y: auto; padding-right: 4px; }
.search-count {
  margin: 10px 4px 4px;
  font-family: var(--rp-font-ui);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.sr-t--page { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rp-gold); }
.search-result--fulltext .sr-d { color: rgba(255, 255, 255, 0.75); }
.search-result mark {
  background: var(--rp-gold);
  color: var(--rp-dark-blue);
  border-radius: 2px;
  padding: 0 2px;
  font-weight: 600;
}

/* CTA Calendly dans la section contact */
.contact-ctas { margin: 28px 0 18px; }

/* ============ ICÔNES & INFOGRAPHIES ============ */
.card-icon { width: 34px; height: 34px; display: block; margin-bottom: 16px; }
.card-icon--coral { color: var(--rp-coral); }
.card-icon--ocean { color: var(--rp-ocean); }
.card-icon--gold { color: var(--rp-gold); }
.card-icon--medium { color: var(--rp-medium-blue); }
.principle-icon { width: 30px; height: 30px; display: block; margin-bottom: 14px; color: var(--rp-gold); }
.infographic { margin: 52px 0 12px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.infographic svg { width: 100%; min-width: 720px; height: auto; display: block; }
.infographic text { font-family: var(--rp-font-ui); }
.infographic-caption { font-size: 13px; line-height: 1.5; color: rgba(47, 60, 85, 0.78); margin-top: 14px; }
.page-section--navy .infographic-caption { color: rgba(255, 255, 255, 0.68); }

/* Animations des infographies */
html.js .ig-data {
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
  transform: scale(0.55);
  transition: opacity 1000ms var(--rp-ease-standard) 250ms, transform 1000ms var(--rp-ease-standard) 250ms;
}
html.js [data-reveal="in"] .ig-data { opacity: 1; transform: scale(1); }
.ig-pt { transition: r 220ms var(--rp-ease-standard); }
.ig-pt:hover { r: 5.5; }
.ig-flowdash { animation: igDash 2.8s linear infinite; }
@keyframes igDash { to { stroke-dashoffset: -26; } }
@media (prefers-reduced-motion: reduce) {
  .ig-flowdash { animation: none; }
  .ig-data { transition: none; opacity: 1; transform: none; }
}

/* ============ FRISE DE LA MÉTHODE ============ */
.method-line {
  max-width: 1200px;
  margin: 34px auto 0;
  padding: 0 48px;
}
.method-line-bar {
  height: 3px;
  border-radius: 2px;
  background: var(--rp-border);
  overflow: hidden;
}
.method-line-fill {
  height: 100%;
  width: 4%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--rp-coral), var(--rp-gold));
  transition: width 300ms var(--rp-ease-standard);
}
.method-line-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}
.method-step {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 8px 4px;
  cursor: pointer;
  font-family: var(--rp-font-ui);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--rp-fg-2);
  opacity: 0.8;
  transition: opacity 250ms var(--rp-ease-standard), color 250ms var(--rp-ease-standard);
}
.method-step:hover { opacity: 1; }
.method-step.is-active { opacity: 1; color: var(--rp-fg); }
.method-step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex: 0 0 auto;
  transition: transform 250ms var(--rp-ease-standard);
}
.method-step.is-active .method-step-dot { transform: scale(1.35); }
.method-step-dot--coral { background: var(--rp-coral); }
.method-step-dot--ocean { background: var(--rp-ocean); }
.method-step-dot--gold { background: var(--rp-gold); }
.method-step-dot--medium { background: var(--rp-medium-blue); }
.method-step-dot--dark { background: var(--rp-dark-blue); }
@media (max-width: 720px) {
  .method-step-label { display: none; }
  .method-step.is-active .method-step-label { display: inline; }
}

/* ============ SYNTHÈSE DU PORTEFEUILLE ============ */
.portfolio-viz {
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 8px 0 48px;
  padding: 28px 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}
.pviz-total { display: flex; align-items: center; gap: 14px; flex: 0 0 auto; }
.pviz-num {
  font-family: var(--rp-font-display);
  font-size: 56px;
  line-height: 1;
  color: var(--rp-white);
}
.pviz-cap {
  font-family: var(--rp-font-ui);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.pviz-body { flex: 1; min-width: 0; }
.pviz-bar {
  display: flex;
  height: 12px;
  border-radius: 7px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}
.pviz-seg { height: 100%; transform-origin: left; }
.pviz-seg--coral { background: var(--rp-coral); }
.pviz-seg--ocean { background: var(--rp-ocean); }
html.js [data-reveal] .pviz-seg { transform: scaleX(0); transition: transform 900ms var(--rp-ease-standard) 250ms; }
html.js [data-reveal] .pviz-seg--ocean { transition-delay: 500ms; }
html.js [data-reveal="in"] .pviz-seg { transform: scaleX(1); }
.pviz-legend {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 12px;
  font-family: var(--rp-font-ui);
  font-weight: 600;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}
.pviz-legend span { display: flex; align-items: center; gap: 8px; }
.pviz-dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.pviz-dot--coral { background: var(--rp-coral); }
.pviz-dot--ocean { background: var(--rp-ocean); }
@media (max-width: 720px) {
  .portfolio-viz { flex-direction: column; align-items: flex-start; gap: 20px; padding: 24px; }
}

/* ============ FAQ ============ */
.faq-list { max-width: 880px; margin-top: 34px; }
.faq-item { border-bottom: 1px solid var(--rp-border); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  font-family: var(--rp-font-display);
  font-size: clamp(18px, 2vw, 22px);
  color: var(--rp-fg);
  padding: 22px 44px 22px 0;
  transition: color var(--rp-dur-base) var(--rp-ease-standard);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--rp-primary-blue); }
.faq-item summary:focus-visible,
.method-step:focus-visible,
.page-cta:focus-visible,
.persp-card:focus-visible {
  outline: 2px solid var(--rp-ocean);
  outline-offset: 3px;
  border-radius: 6px;
}
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--rp-font-ui);
  font-weight: 400;
  font-size: 26px;
  color: var(--rp-primary-blue);
  transition: transform 260ms var(--rp-ease-standard);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p {
  margin: 0 0 24px;
  max-width: 800px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--rp-fg-2);
}

/* ============ ARTICLES PERSPECTIVES ============ */
.article-page { background: var(--rp-bg-alt); }
.article-hero {
  background: var(--rp-dark-blue);
  padding: 170px 48px 70px;
}
.article-hero-inner { max-width: 820px; margin: 0 auto; }
.article-title {
  font-family: var(--rp-font-display);
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.12;
  color: var(--rp-white);
  margin: 0 0 22px;
}
.article-meta {
  font-family: var(--rp-font-ui);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
}
.article-cover-wrap { background: linear-gradient(180deg, var(--rp-dark-blue) 50%, var(--rp-bg-alt) 50%); padding: 0 48px; }
.article-cover { display: block; max-width: 980px; width: 100%; margin: 0 auto; border-radius: 14px; box-shadow: 0 24px 60px rgba(29, 37, 52, 0.35); }
.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 48px 40px;
  font-size: 17px;
  line-height: 1.85;
  color: var(--rp-fg-2);
}
.article-body h2 {
  font-family: var(--rp-font-display);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.2;
  color: var(--rp-fg);
  margin: 52px 0 18px;
}
.article-body p { margin: 0 0 22px; }
.article-body strong { color: var(--rp-fg); }
.article-body a { color: var(--rp-primary-blue); text-decoration: underline; text-underline-offset: 3px; }
.article-body ul, .article-body ol { padding-left: 24px; margin: 0 0 22px; }
.article-body li { margin-bottom: 10px; }
.article-signoff {
  max-width: 760px;
  margin: 0 auto 80px;
  padding: 26px 48px;
}
.article-signoff-inner {
  border-left: 3px solid var(--rp-coral);
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--rp-fg-2);
}
.article-back { display: inline-block; margin: 0 0 26px; font-family: var(--rp-font-ui); font-weight: 600; font-size: 13px; color: rgba(255,255,255,0.65); }
.article-back:hover { color: var(--rp-white); }
/* Listing */
.persp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; margin-top: 44px; }
.persp-card {
  display: flex;
  flex-direction: column;
  background: var(--rp-white);
  border: 1px solid var(--rp-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--rp-shadow-sm);
  transition: transform 350ms var(--rp-ease-standard), box-shadow 350ms var(--rp-ease-standard);
}
.persp-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(29, 37, 52, 0.13); }
@media (prefers-reduced-motion: reduce) { .persp-card, .persp-card:hover { transform: none; transition: none; } }
.persp-card img { display: block; width: 100%; height: auto; aspect-ratio: 1200 / 630; object-fit: cover; }
.persp-card-body { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.persp-card h2 { font-family: var(--rp-font-display); font-weight: 400; font-size: 22px; line-height: 1.25; margin: 0; color: var(--rp-fg); }
.persp-card p { margin: 0; font-size: 14.5px; line-height: 1.65; color: var(--rp-fg-2); flex: 1; }
.persp-card .perspective-link { margin-top: 6px; }
.persp-card .perspective-kicker {
  font-family: var(--rp-font-ui);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
  flex: none;
}
.persp-card .perspective-kicker--coral { color: #C4403F; } /* corail texte ≥4,5:1 sur blanc */
.persp-card .perspective-kicker--ocean { color: #2E706D; } /* océan texte ≥4,5:1 sur blanc */
.persp-card .perspective-kicker--gold { color: #8a6d1c; }
.persp-card .perspective-kicker--blue { color: var(--rp-light-blue); }
.persp-card .perspective-kicker--navy { color: var(--rp-primary-blue); }
.persp-card .perspective-kicker--slate { color: var(--rp-fg-2); }

/* Filtres par catégorie du hub Perspectives */
.hub-filtres { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 28px; }
.hub-filtre {
  font-family: var(--rp-font-ui);
  font-weight: 600;
  font-size: 14px;
  padding: 9px 18px;
  border-radius: var(--rp-radius-pill);
  border: 1px solid rgba(47, 60, 85, 0.28);
  background: var(--rp-white);
  color: var(--rp-fg-2);
  cursor: pointer;
  transition: background var(--rp-dur-base) var(--rp-ease-standard), color var(--rp-dur-base) var(--rp-ease-standard);
}
.hub-filtre:hover { border-color: var(--rp-primary-blue); color: var(--rp-fg); }
.hub-filtre.on { background: var(--rp-primary-blue); color: var(--rp-white); border-color: var(--rp-primary-blue); }
.hub-filtre:focus-visible { outline: 2px solid var(--rp-primary-blue); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { .hub-filtre { transition: none; } }
@media (max-width: 720px) {
  .article-hero { padding: 130px 24px 50px; }
  .article-cover-wrap { padding: 0 24px; }
  .article-body { padding: 48px 24px 30px; }
  .article-signoff { padding: 0 24px 10px; }
}
