:root {
  --red: #b10f18;
  --red-2: #8f0911;
  --red-dark: #5f070c;
  --gold: #f5b900;
  --gold-2: #ffd33d;
  --ink: #16171a;
  --muted: #6c6c70;
  --paper: #ffffff;
  --soft: #f7f7f8;
  --line: #e7e7e9;
  --shadow: 0 18px 50px rgba(32, 22, 22, .12);
  --shadow-soft: 0 10px 30px rgba(32, 22, 22, .08);
  --radius-lg: 26px;
  --radius-md: 18px;
  --max: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 116px; }
section[id] { scroll-margin-top: 116px; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.58;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 1000;
  background: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.skip-link:focus { top: 12px; }

.container { width: min(var(--max), calc(100% - 44px)); margin-inline: auto; }
.section { padding: 88px 0; }
.section-soft { background: var(--soft); }
.section-dark { background: linear-gradient(135deg, #170d0f, #251114 60%, #12090b); color: #fff; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #ececef;
}
.topbar {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand { display: inline-flex; align-items: center; gap: 13px; }
.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  border: 2px solid var(--gold);
  padding: 2px;
}
.brand-copy { display: grid; line-height: 1.08; }
.brand-copy strong { color: var(--red); font-size: 1.28rem; letter-spacing: .03em; }
.brand-copy span { font-size: .82rem; font-weight: 800; margin-top: 1px; }
.brand-copy small { color: var(--red); font-size: .62rem; font-weight: 800; margin-top: 3px; }
.header-tools { display: flex; align-items: center; gap: 10px; }
.social-button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e5e5e8;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #173b76;
  background: #fff;
  box-shadow: 0 5px 16px rgba(0,0,0,.05);
  transition: .2s ease;
}
.social-button:hover { transform: translateY(-2px); border-color: var(--gold); }
.social-button.play { color: var(--red); font-size: .8rem; }
.language-chip {
  margin-left: 8px;
  height: 36px;
  min-width: 92px;
  border: 1px solid #e5e5e8;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(0,0,0,.05);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .9rem;
}
.language-chip .chevron { color: #777; }

.nav-shell { border-top: 1px solid #efeff1; }
.main-nav {
  min-height: 44px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 8px;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.main-nav a {
  min-width: 96px;
  display: grid;
  place-items: center;
  padding: 0 11px;
  position: relative;
  transition: .2s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  height: 3px;
  width: 0;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  border-radius: 10px;
  background: var(--gold);
  transition: .2s ease;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--red);
  color: #fff;
  border-radius: 10px 10px 0 0;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 32px; }

.menu-button { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.menu-button span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 5px 0; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: #8d080f;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 35%, rgba(255,255,255,.09), transparent 20%),
    radial-gradient(circle at 45% 100%, rgba(245,185,0,.10), transparent 28%),
    linear-gradient(120deg, rgba(91,0,7,.65), rgba(184,17,26,.92));
  pointer-events: none;
}
.hero-grid {
  min-height: 420px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  position: relative;
  z-index: 1;
}
.hero-copy {
  padding: 46px 48px 42px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
.eyebrow, .kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  font-weight: 950;
  color: var(--gold-2);
}
.eyebrow::before, .kicker::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--gold);
}
.hero h1 {
  margin: 20px 0 18px;
  font-size: clamp(2.85rem, 4.65vw, 4.9rem);
  line-height: .98;
  letter-spacing: -.04em;
  max-width: 690px;
}
.hero-copy > p {
  margin: 0;
  max-width: 660px;
  color: rgba(255,255,255,.9);
  font-size: 1.08rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 30px; }
.button {
  border: 0;
  border-radius: 9px;
  padding: 15px 26px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-gold { background: linear-gradient(180deg, #ffd72d, #f3b800); color: #181000; box-shadow: 0 12px 30px rgba(245,185,0,.25); }
.button-outline-light { color: #fff; border: 1.5px solid rgba(255,255,255,.8); background: rgba(255,255,255,.03); }
.button-dark { background: #191719; color: #fff; }
.full { width: 100%; }
.hero-dots { display: flex; gap: 10px; margin-top: 36px; }
.hero-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.45); }
.hero-dots .active { background: var(--gold); }

.hero-visual {
  min-height: 420px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(13% 0,100% 0,100% 100%,13% 100%,0 50%);
  border-left: 4px solid var(--gold);
  background: #d8d8d8;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(120,0,9,.12), transparent 35%);
  pointer-events: none;
}
.visual-note {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  background: rgba(0,0,0,.62);
  color: rgba(255,255,255,.92);
  font-size: .7rem;
  padding: 7px 10px;
  border-radius: 8px;
}

/* Cards under hero */
.quick-section { background: #fff; padding: 0 0 24px; }
.quick-grid {
  transform: translateY(-12px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 1.48fr;
  gap: 14px;
  position: relative;
  z-index: 10;
}
.quick-card {
  min-height: 116px;
  border: 1px solid #e8e8eb;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
}
.quick-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  font-weight: 900;
}
.quick-icon.gold { background: var(--gold); color: #fff; }
.quick-card h2 { margin: 0 0 4px; font-size: .92rem; }
.quick-card p { margin: 0; color: var(--muted); font-size: .82rem; }

.president-card {
  min-height: 142px;
  border-radius: 17px;
  background: linear-gradient(135deg, #930811, #d1121e);
  color: #fff;
  box-shadow: 0 18px 42px rgba(145,8,17,.24);
  padding: 18px 24px;
  display: grid;
  grid-template-columns: 122px 1fr;
  gap: 20px;
  align-items: center;
}

.president-media {
  width: 112px;
  min-width: 112px;
  display: grid;
  place-items: center;
}
.president-photo {
  width: 108px;
  height: 118px;
  border-radius: 14px;
  object-fit: cover;
  object-position: center top;
  border: 3px solid rgba(255,255,255,.96);
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.president-photo[hidden], .president-avatar[hidden] { display: none !important; }

.president-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,.95);
  background: linear-gradient(135deg, #f2e8e8, #fff);
  color: var(--red);
  display: grid;
  place-items: center;
  font-weight: 950;
  font-size: 1.65rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.president-copy span { color: var(--gold-2); text-transform: uppercase; font-size: .72rem; font-weight: 900; }
.president-copy h2 { margin: 4px 0 4px; font-size: 1.35rem; line-height: 1.05; }
.president-copy p { margin: 0; font-size: .75rem; color: rgba(255,255,255,.8); }

/* V4 compact header + more visible hero photo */
@media (min-width: 981px) {
  .topbar.container { width: min(var(--max), calc(100% - 36px)); }
  .main-nav.container { width: min(var(--max), calc(100% - 36px)); }
  .hero-grid.container { width: min(1440px, 100%); max-width: none; }
}

/* Generic sections */
.section-heading { max-width: 740px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading.centered .kicker { justify-content: center; }
.section-heading h2 { font-size: clamp(2.15rem, 4vw, 3.55rem); line-height: 1.03; margin: 12px 0 16px; letter-spacing: -.035em; }
.section-heading p { color: var(--muted); font-size: 1.02rem; }
.section-heading.light p { color: rgba(255,255,255,.68); }
.section-heading.light .kicker { color: var(--gold-2); }
.compact-heading h2 { font-size: clamp(2rem, 3.6vw, 3rem); }

/* Domains / programme */
.domains-section { padding-top: 58px; }
.program-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 16px;
  margin-top: 38px;
}
.program-card {
  min-height: 222px;
  border: 1px solid #e7e7e9;
  border-radius: 14px;
  padding: 22px 18px;
  background: #fff;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0,0,0,.05);
  position: relative;
  overflow: hidden;
  transition: .22s ease;
}
.program-card:hover { transform: translateY(-5px); box-shadow: 0 18px 38px rgba(0,0,0,.09); }
.program-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  font-size: 1.25rem;
  font-weight: 900;
}
.program-card:nth-child(even) .program-icon { background: var(--gold); }
.program-card span { color: var(--red); font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .07em; }
.program-card h3 { margin: 8px 0 9px; font-size: .96rem; }
.program-card p { color: var(--muted); margin: 0; font-size: .82rem; }
.program-card a { display: inline-flex; margin-top: 14px; color: var(--red); font-size: .78rem; font-weight: 900; }

.membership-banner { padding: 0 0 44px; }
.membership-inner {
  background: linear-gradient(110deg, #82070e, #b20f18 62%, #8b080f);
  color: #fff;
  border-radius: 16px;
  min-height: 96px;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 28px;
  box-shadow: 0 18px 42px rgba(138,7,15,.2);
}
.membership-icon { width: 48px; height: 48px; border-radius: 11px; background: var(--gold); color: #fff; display: grid; place-items: center; font-size: 1.4rem; }
.membership-inner h2 { margin: 0 0 4px; font-size: 1.35rem; }
.membership-inner p { margin: 0; color: rgba(255,255,255,.8); font-size: .9rem; }
.membership-button { min-width: 190px; }

.split-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: start; }
.feature-stack { display: grid; gap: 14px; }
.feature-card { border: 1px solid var(--line); border-radius: var(--radius-md); padding: 22px; display: grid; grid-template-columns: auto 1fr; gap: 18px; background: #fff; }
.feature-number { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: #fff4db; color: var(--red); font-weight: 900; }
.feature-card h3 { margin: 0 0 6px; }
.feature-card p { margin: 0; color: var(--muted); }

.leaders-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin-top: 42px; }
.leader-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 16px 40px rgba(42,28,21,.06);
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  min-height: 170px;
}
.leader-media {
  width: 118px;
  height: 138px;
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #f7e9ea;
  box-shadow: 0 0 0 2px var(--gold);
}
.leader-photo, .leader-initials {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  border-radius: 18px;
}
.leader-photo { object-fit: cover; object-position: center top; background: #f4f4f4; }
.leader-photo[hidden],
.leader-initials[hidden],
.auto-photo-fallback[hidden],
.president-avatar[hidden] { display: none !important; }
.leader-initials { display: grid; place-items: center; background: #f7e9ea; color: var(--red); font-weight: 900; font-size: 1.65rem; }
.leader-copy { min-width: 0; }
.leader-card h3 { margin: 0 0 8px; font-size: 1.18rem; line-height: 1.2; overflow-wrap: anywhere; }
.leader-card p { margin: 0; color: var(--red); font-weight: 800; overflow-wrap: anywhere; }
.leader-card small { display: block; color: var(--muted); margin-top: 12px; line-height: 1.55; overflow-wrap: anywhere; }

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.news-card { overflow: hidden; border-radius: 22px; background: #fff; color: var(--ink); }
.news-media { height: 220px; background: linear-gradient(135deg, #740810, #b10f18); display: grid; place-items: center; overflow: hidden; }
.news-media img, .news-media video { width: 100%; height: 100%; object-fit: cover; }
.news-media span { color: var(--gold-2); font-size: 2.2rem; font-weight: 900; }
.news-body { padding: 22px; }
.news-body small { color: var(--red); text-transform: uppercase; font-weight: 900; letter-spacing: .08em; }
.news-body h3 { margin: 8px 0 10px; font-size: 1.2rem; }
.news-body p { color: var(--muted); margin: 0; }

.event-list { display: grid; gap: 14px; margin-top: 38px; }
.event-row { display: grid; grid-template-columns: 100px 1fr auto; gap: 22px; align-items: center; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 18px 20px; }
.event-date { text-align: center; padding-right: 16px; border-right: 1px solid var(--line); }
.event-date strong { display: block; color: var(--red); font-size: 1.45rem; }
.event-date span { font-size: .78rem; color: var(--muted); }
.event-row h3 { margin: 0 0 4px; }
.event-row p { margin: 0; color: var(--muted); }
.event-tag { padding: 7px 12px; border-radius: 999px; background: #fff5d8; color: #6f5200; font-size: .75rem; font-weight: 900; }

.join-section { background: linear-gradient(135deg, #79070e, #b4101a); color: #fff; }
.join-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 62px; align-items: start; }
.form-card, .contact-card { background: #fff; color: var(--ink); border-radius: 24px; padding: 28px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: grid; gap: 7px; margin-bottom: 15px; font-size: .84rem; font-weight: 800; }
input, textarea { width: 100%; border: 1px solid #dddddf; border-radius: 11px; padding: 13px 14px; background: #fff; color: var(--ink); outline: none; }
input:focus, textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(177,15,24,.08); }
textarea { resize: vertical; }
.form-status { margin: 12px 0 0; font-size: .79rem; color: var(--muted); }
.form-status.error { color: #a10000; }
.form-status.success { color: #16733a; }

.media-section { scroll-margin-top: 150px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.gallery-item { margin: 0; min-height: 250px; border-radius: 18px; overflow: hidden; position: relative; background: linear-gradient(135deg, #f0e5e6, #fff); border: 1px solid var(--line); }
.gallery-item img, .gallery-item video { width: 100%; height: 100%; object-fit: cover; min-height: 250px; }
.gallery-placeholder { min-height: 250px; display: grid; place-items: center; font-size: 1.5rem; color: var(--red); font-weight: 900; }
.gallery-caption { position: absolute; left: 12px; right: 12px; bottom: 12px; border-radius: 10px; background: rgba(0,0,0,.62); color: #fff; padding: 8px 10px; font-size: .8rem; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.video-card { min-height: 235px; border-radius: 18px; border: 1px solid var(--line); background: #fff; overflow: hidden; position: relative; }
.video-card .gallery-placeholder { min-height: 235px; background: linear-gradient(135deg, #8f0911, #c21822); color: var(--gold-2); }
.video-card video { width: 100%; height: 235px; object-fit: cover; background: #000; }
.video-title { padding: 14px 16px; font-weight: 850; }

.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: start; }
.contact-details { display: grid; gap: 10px; margin-top: 28px; }
.contact-detail { display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); padding: 13px 0; }
.contact-detail strong { color: var(--red); }
.contact-detail span { text-align: right; color: var(--muted); }

.site-footer { background: #121214; color: rgba(255,255,255,.76); padding: 28px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr auto; gap: 30px; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 44px; height: 44px; object-fit: contain; border-radius: 50%; background: #fff; }
.footer-brand div { display: grid; }
.footer-brand strong { color: #fff; }
.footer-brand span { font-size: .78rem; }
.footer-grid p { margin: 0; font-size: .82rem; text-align: center; }
.footer-grid a { color: var(--gold-2); font-weight: 800; font-size: .82rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  .header-tools { display: none; }
  .menu-button { display: block; margin-left: auto; }
  .nav-shell { border-top: 0; }
  .main-nav {
    position: fixed;
    top: 90px;
    left: 20px;
    right: 20px;
    max-height: calc(100vh - 115px);
    overflow-y: auto;
    background: #fff;
    border: 1px solid #e8e8ea;
    box-shadow: var(--shadow);
    border-radius: 16px;
    padding: 10px;
    display: none;
    min-height: 0;
  }
  .main-nav.open { display: grid; grid-template-columns: repeat(2, 1fr); }
  .main-nav a { min-height: 48px; min-width: 0; border-radius: 9px; }
  .main-nav a::after { display: none; }
  .program-grid { grid-template-columns: repeat(3, 1fr); }
  .quick-grid { grid-template-columns: repeat(3, 1fr); }
  .president-card { grid-column: 1 / -1; }
}

@media (max-width: 920px) {
  .container { width: min(var(--max), calc(100% - 30px)); }
  .section { padding: 70px 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 56px 8px 36px; }
  .hero h1 { font-size: clamp(3rem, 10vw, 5rem); }
  .hero-visual { min-height: 390px; clip-path: none; border-left: 0; border-top: 4px solid var(--gold); }
  .quick-grid { transform: none; padding-top: 18px; grid-template-columns: 1fr 1fr; }
  .president-card { grid-column: 1 / -1; }
  .split-layout, .join-grid, .contact-layout { grid-template-columns: 1fr; gap: 38px; }
  .leaders-grid, .news-grid, .gallery-grid, .video-grid { grid-template-columns: repeat(2, 1fr); }
  .program-grid { grid-template-columns: repeat(2, 1fr); }
  .membership-inner { grid-template-columns: 52px 1fr; }
  .membership-button { grid-column: 2; justify-self: start; }
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
  .footer-grid p { text-align: left; }
}

@media (max-width: 620px) {
  .topbar { min-height: 72px; }
  .brand img { width: 46px; height: 46px; }
  .brand-copy strong { font-size: 1.25rem; }
  .brand-copy span { font-size: .78rem; }
  .brand-copy small { display: none; }
  .main-nav { top: 72px; left: 12px; right: 12px; }
  .main-nav.open { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 44px; }
  .hero h1 { font-size: clamp(2.55rem, 12vw, 4rem); }
  .hero-copy > p { font-size: .98rem; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 270px; }
  .visual-note { font-size: .62rem; }
  .quick-grid { grid-template-columns: 1fr; }
  .president-card { grid-template-columns: 92px 1fr; padding: 16px; }
  .president-media { width: 84px; min-width: 84px; }
  .president-photo { width: 82px; height: 92px; border-radius: 12px; }
  .president-avatar { width: 76px; height: 76px; }
  .program-grid, .leaders-grid, .news-grid, .gallery-grid, .video-grid { grid-template-columns: 1fr; }
  .membership-inner { grid-template-columns: 1fr; }
  .membership-icon { display: none; }
  .membership-button { grid-column: 1; width: 100%; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .event-row { grid-template-columns: 72px 1fr; }
  .event-tag { grid-column: 2; justify-self: start; }
  .contact-detail { flex-direction: column; gap: 4px; }
  .contact-detail span { text-align: left; }
}


/* V6 — Publications dynamiques, galerie et vidéos */
.news-meta { display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:10px; }
.news-meta span { display:inline-flex; padding:6px 10px; border-radius:999px; background:#fff0f1; color:var(--red); font-size:.72rem; font-weight:900; text-transform:uppercase; letter-spacing:.05em; }
.section-dark .news-meta span { background:rgba(255,255,255,.12); color:var(--gold-2); }
.news-meta small { margin:0 !important; }
.news-link { margin-top:auto; border:0; background:transparent; color:var(--red); font:inherit; font-weight:900; cursor:pointer; padding:12px 0 0; display:flex; align-items:center; gap:8px; }
.section-dark .news-link { color:var(--gold-2); }
.news-link:hover span { transform:translateX(4px); }
.news-link span { transition:transform .2s ease; }
.news-body { display:flex; flex-direction:column; min-height:230px; }
.news-media iframe, .video-media iframe { width:100%; height:100%; border:0; }

.event-row { position:relative; }
.event-thumb { width:96px; height:78px; object-fit:cover; border-radius:14px; }
.event-copy small { display:block; color:var(--muted); margin-top:6px; line-height:1.5; }
.event-button { border:0; cursor:pointer; font:inherit; }

.gallery-item { border:0; padding:0; text-align:left; cursor:pointer; width:100%; font:inherit; background:#fff; }
.gallery-item:focus-visible, .news-link:focus-visible, .event-button:focus-visible, .video-open:focus-visible { outline:3px solid var(--gold); outline-offset:3px; }
.gallery-item img { transition:transform .35s ease; }
.gallery-item:hover img { transform:scale(1.035); }
.video-media { height:240px; overflow:hidden; background:#141414; }
.video-media video, .video-media iframe { width:100%; height:100%; object-fit:cover; }
.video-card-footer { display:flex; align-items:center; justify-content:space-between; gap:14px; padding:16px 18px; }
.video-title { padding:0 !important; }
.video-open { border:0; border-radius:999px; padding:8px 13px; background:var(--red); color:#fff; font-weight:800; cursor:pointer; }

body.modal-open { overflow:hidden; }
.content-modal[hidden] { display:none; }
.content-modal { position:fixed; inset:0; z-index:9999; display:grid; place-items:center; padding:22px; }
.content-modal-backdrop { position:absolute; inset:0; background:rgba(14,8,8,.78); backdrop-filter:blur(4px); }
.content-modal-dialog { position:relative; z-index:1; width:min(880px, 100%); max-height:min(86vh, 850px); overflow:auto; background:#fff; border-radius:24px; box-shadow:0 26px 80px rgba(0,0,0,.34); }
.content-modal-close { position:absolute; z-index:3; right:14px; top:14px; width:42px; height:42px; border-radius:50%; border:0; background:rgba(0,0,0,.72); color:#fff; font-size:1.8rem; cursor:pointer; }
.content-modal-media { min-height:220px; max-height:470px; background:linear-gradient(135deg,#760912,#b5111c); overflow:hidden; display:grid; place-items:center; }
.content-modal-media img, .content-modal-media video, .content-modal-media iframe { width:100%; max-height:470px; min-height:260px; object-fit:cover; border:0; }
.modal-placeholder { color:var(--gold-2); font-weight:1000; font-size:4rem; padding:70px 20px; }
.content-modal-body { padding:28px 30px 34px; }
.content-modal-meta { display:block; color:var(--red); font-weight:900; font-size:.78rem; text-transform:uppercase; letter-spacing:.06em; margin-bottom:9px; }
.content-modal-body h2 { margin:0 0 14px; font-size:clamp(1.7rem,4vw,2.6rem); }
.content-modal-text { white-space:pre-line; line-height:1.8; color:#454545; }

@media (max-width: 760px) {
  .event-thumb { display:none; }
  .video-media { height:210px; }
  .content-modal { padding:10px; }
  .content-modal-dialog { border-radius:18px; max-height:92vh; }
  .content-modal-body { padding:22px 20px 28px; }
  .content-modal-media img, .content-modal-media video, .content-modal-media iframe { min-height:210px; }
}


/* Supabase live states */
.empty-state {
  width: 100%;
  padding: 24px;
  border: 1px dashed rgba(140, 17, 23, 0.25);
  border-radius: 18px;
  background: rgba(255,255,255,0.75);
  color: #555;
  text-align: center;
}
.section-dark .empty-state {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.2);
}
button:disabled { opacity: .65; cursor: wait; }


/* V10 — Actualités plus compactes et rafraîchissement visuel stable */
#actualites .news-grid {
  grid-template-columns: repeat(auto-fit, minmax(270px, 340px));
  justify-content: start;
  align-items: start;
  gap: 24px;
  margin-top: 32px;
}
#actualites .news-card {
  width: 100%;
  max-width: 340px;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,.13);
}
#actualites .news-media {
  height: 168px;
}
#actualites .news-body {
  padding: 18px 20px 19px;
  min-height: 205px;
}
#actualites .news-body h3 {
  margin: 9px 0 9px;
  font-size: 1.12rem;
  line-height: 1.3;
}
#actualites .news-body p {
  font-size: .94rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#actualites .news-meta {
  justify-content: flex-start;
  gap: 9px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
#actualites .news-meta .news-category {
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #3c3131;
  font-size: .76rem;
  letter-spacing: 0;
}
#actualites .news-meta-separator {
  color: var(--red);
  font-weight: 900;
  line-height: 1;
}
#actualites .news-meta small {
  color: var(--red);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
#actualites .news-link {
  padding-top: 10px;
}

@media (max-width: 760px) {
  #actualites .news-grid { grid-template-columns: 1fr; }
  #actualites .news-card { max-width: none; }
  #actualites .news-media { height: 190px; }
}


/* V10.1 — Correctif Lire la suite / modal */
.content-modal[aria-hidden="false"] { display:grid; }
.content-modal-dialog { width:min(760px, 100%); }
.content-modal-media { min-height:180px; max-height:380px; }
.content-modal-media img, .content-modal-media video, .content-modal-media iframe { min-height:220px; max-height:380px; }
#actualites .news-link {
  appearance:none;
  -webkit-appearance:none;
  border:0;
  background:transparent;
  color:var(--gold-2);
  font:inherit;
  font-weight:900;
  cursor:pointer;
  padding:10px 0 0;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
#actualites .news-link:hover { text-decoration:underline; }
@media (max-width:760px) {
  .content-modal-dialog { width:100%; }
  .content-modal-media { min-height:160px; }
  .content-modal-media img, .content-modal-media video, .content-modal-media iframe { min-height:190px; }
}

/* V10.2 — "Lire la suite" se déploie directement dans la carte, sans fenêtre superposée */
#actualites .news-inline-details[hidden] { display: none; }
#actualites .news-inline-details {
  margin-top: 2px;
  padding-top: 14px;
  border-top: 1px solid rgba(140, 17, 23, .12);
  animation: cfcNewsExpand .22s ease-out;
}
#actualites .news-full-text {
  white-space: pre-line;
  color: #4a4242;
  font-size: .96rem;
  line-height: 1.72;
}
#actualites .news-card.is-expanded {
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
}
#actualites .news-card.is-expanded .news-body {
  min-height: 0;
}
#actualites .news-link[aria-expanded="true"] {
  color: var(--red);
}
#actualites .news-link-arrow {
  display: inline-block;
  min-width: 1em;
  text-align: center;
  transition: transform .2s ease;
}
@keyframes cfcNewsExpand {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  #actualites .news-inline-details { animation: none; }
}

/* V10.3 — Lecture d'actualité type grands médias internationaux */
body.article-mode {
  background: #ffffff;
}
body.article-mode #main {
  display: none;
}
.article-reader[hidden] { display: none !important; }
.article-reader {
  display: block;
  background: #fff;
  color: var(--ink);
  min-height: 70vh;
  padding: 34px 0 72px;
}
.article-reader-shell {
  max-width: 1180px;
}
.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #716868;
  font-size: .9rem;
  margin: 4px 0 42px;
  border-bottom: 1px solid #ece8e5;
  padding-bottom: 16px;
}
.article-back-link {
  border: 0;
  background: transparent;
  color: var(--red);
  font: inherit;
  font-weight: 800;
  padding: 0;
  cursor: pointer;
}
.article-back-link:hover { text-decoration: underline; }
.article-page-content {
  max-width: 1040px;
  margin: 0 auto;
}
.article-header {
  max-width: 860px;
  margin: 0 auto 32px;
}
.article-kicker {
  display: inline-block;
  color: var(--red);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.article-header h1 {
  margin: 0;
  max-width: 900px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -.035em;
  color: #171515;
}
.article-summary {
  max-width: 790px;
  margin: 22px 0 0;
  color: #5b5353;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.6;
}
.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  color: #746c6c;
  font-size: .88rem;
  font-weight: 700;
}
.article-meta-dot { color: var(--red); }
.article-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #ece8e5;
}
.article-action {
  border: 1px solid #d9d2cf;
  background: #fff;
  color: #302b2b;
  border-radius: 999px;
  padding: 10px 16px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.article-action:hover {
  border-color: var(--red);
  color: var(--red);
}
.article-action-status {
  color: #6a6161;
  font-size: .84rem;
}
.article-hero-media {
  max-width: 1040px;
  margin: 0 auto 38px;
  overflow: hidden;
  border-radius: 2px;
  background: #f2efec;
}
.article-hero-media img,
.article-hero-media video,
.article-hero-media iframe {
  width: 100%;
  display: block;
  max-height: 620px;
  object-fit: cover;
  border: 0;
}
.article-hero-media iframe { min-height: 520px; }
.article-hero-media:empty { display: none; }
.article-reading-grid {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}
.article-side-rail {
  position: sticky;
  top: 150px;
  padding-top: 4px;
  color: #7a7070;
  font-size: .72rem;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.article-side-rail span {
  display: block;
  color: var(--red);
  font-weight: 900;
  margin-bottom: 6px;
}
.article-side-rail strong {
  display: block;
  color: #4a4242;
  font-size: .72rem;
}
.article-body {
  min-width: 0;
  font-family: Georgia, 'Times New Roman', serif;
  color: #242020;
  font-size: 1.13rem;
  line-height: 1.88;
}
.article-body p {
  margin: 0 0 1.4em;
}
.article-body p:first-child::first-letter {
  float: left;
  color: var(--red);
  font-size: 3.35rem;
  font-weight: 800;
  line-height: .83;
  padding: .1em .1em 0 0;
}
.article-related {
  max-width: 1040px;
  margin: 64px auto 0;
  padding-top: 30px;
  border-top: 3px solid var(--red);
}
.article-related-heading span {
  color: var(--red);
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.article-related-heading h2 {
  margin: 6px 0 22px;
  font-size: 1.8rem;
}
.article-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}
.article-related-card {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.article-related-card .related-media {
  height: 150px;
  background: #f1edeb;
  overflow: hidden;
  margin-bottom: 12px;
}
.article-related-card .related-media img,
.article-related-card .related-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-related-card .related-media span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background: var(--red);
  color: #ffd23f;
  font-size: 1.5rem;
  font-weight: 900;
}
.article-related-card small {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}
.article-related-card h3 {
  margin: 7px 0 0;
  font-size: 1.06rem;
  line-height: 1.35;
}
.article-related-card:hover h3 { text-decoration: underline; }

/* Sur la liste, le lien ressemble à un vrai lien éditorial et ouvre la page article */
#actualites .news-inline-details { display: none !important; }
#actualites .news-link-arrow { transform: none !important; }

@media (max-width: 820px) {
  .article-reader { padding-top: 24px; }
  .article-breadcrumb { margin-bottom: 28px; }
  .article-header h1 { font-size: clamp(2.15rem, 10vw, 3.25rem); }
  .article-hero-media { margin-left: -18px; margin-right: -18px; border-radius: 0; }
  .article-hero-media iframe { min-height: 260px; }
  .article-reading-grid { grid-template-columns: 1fr; gap: 0; }
  .article-side-rail { display: none; }
  .article-body { font-size: 1.06rem; line-height: 1.8; }
  .article-related-grid { grid-template-columns: 1fr; }
  .article-related-card { display: grid; grid-template-columns: 118px 1fr; gap: 14px; }
  .article-related-card .related-media { height: 88px; margin: 0; }
}

/* V11 — événements et galerie comme de vraies pages éditoriales */
.event-row {
  grid-template-columns: 92px 116px minmax(0, 1fr) auto;
  padding: 16px 18px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  background: #fff;
}
.event-row:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(40,20,20,.07); border-color: #e2d2d2; }
.event-thumb { width: 116px; height: 84px; object-fit: cover; border-radius: 12px; background: #f4efed; }
.event-copy small { display:block; margin-top:7px; color:#746c6c; line-height:1.45; max-width:720px; }
.event-button { border:0; cursor:pointer; white-space:nowrap; font-family:inherit; }
.event-button:hover { background:#ffe9a1; }

.gallery-item { cursor: pointer; padding: 0; text-align: left; }
.gallery-caption { display:flex; align-items:center; justify-content:space-between; gap:10px; }
.gallery-caption b { color:#ffd23f; font-size:.74rem; }
.media-card-button { border:0; padding:0; width:100%; cursor:pointer; background:#000; display:block; }
.video-card-footer { display:flex; align-items:center; justify-content:space-between; gap:14px; padding:14px 16px; }
.video-title { padding:0; }
.video-open { border:0; background:transparent; color:var(--red); font-weight:900; cursor:pointer; white-space:nowrap; }
.video-open:hover { text-decoration:underline; }
.media-detail-hero { background:#111; }
.media-detail-hero img { object-fit: contain; max-height: 72vh; background:#111; }
.media-detail-hero video { max-height:72vh; background:#000; }
.media-reading-grid .article-body p:first-child::first-letter { float:none; font-size:inherit; padding:0; color:inherit; }

@media (max-width: 920px) {
  .event-row { grid-template-columns: 74px 96px minmax(0,1fr); }
  .event-button { grid-column: 2 / -1; justify-self:start; }
  .event-thumb { width:96px; height:72px; }
}
@media (max-width: 620px) {
  .event-row { grid-template-columns: 62px minmax(0,1fr); gap:14px; padding:14px; }
  .event-thumb { grid-column:2; width:100%; height:160px; }
  .event-copy { grid-column:2; }
  .event-button { grid-column:2; }
  .event-date { grid-row:1 / span 3; align-self:stretch; }
  .video-card-footer { align-items:flex-start; }
}

/* ==========================================================
   V12 — HEADER DESKTOP CONSERVÉ SUR MOBILE + FOOTER PREMIUM
   ========================================================== */

/* Le menu hamburger reste désactivé : la navigation complète est toujours visible. */
.menu-button {
  display: none !important;
}

/* Footer premium, compact et mieux structuré. */
.site-footer {
  background: #101012;
  color: rgba(255,255,255,.78);
  padding: 24px 0;
  border-top: 3px solid var(--red);
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  align-items: center;
  gap: 30px;
}

.site-footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.site-footer .footer-brand img {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--gold);
  padding: 2px;
}

.site-footer .footer-brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.site-footer .footer-brand-copy strong {
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.05;
}

.site-footer .footer-brand-copy span {
  color: rgba(255,255,255,.68);
  font-size: .78rem;
  line-height: 1.35;
}

.site-footer .footer-credit {
  display: grid;
  gap: 5px;
  justify-items: start;
  font-size: .82rem;
  line-height: 1.35;
}

.site-footer .footer-credit > span {
  white-space: nowrap;
}

.site-footer .footer-credit strong {
  color: var(--gold-2);
  font-weight: 900;
}

.site-footer .footer-phone {
  color: #fff;
  font-size: .88rem;
  font-weight: 900;
  letter-spacing: .01em;
}

.site-footer .footer-top-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-self: end;
  color: var(--gold-2);
  font-weight: 900;
  font-size: .82rem;
  white-space: nowrap;
}

.site-footer .footer-top-link:hover,
.site-footer .footer-phone:hover {
  text-decoration: underline;
}

/* Tablette et téléphone : même structure de header que sur ordinateur.
   La barre de navigation reste visible et défile horizontalement si nécessaire. */
@media (max-width: 1180px) {
  .site-header {
    overflow: visible;
  }

  .topbar {
    min-height: 62px;
    gap: 12px;
  }

  .header-tools {
    display: flex !important;
    margin-left: auto;
    gap: 7px;
  }

  .nav-shell {
    display: block;
    border-top: 1px solid #efeff1;
    overflow: hidden;
  }

  .main-nav,
  .main-nav.open {
    position: static !important;
    inset: auto !important;
    width: min(var(--max), calc(100% - 30px));
    max-height: none !important;
    min-height: 42px;
    margin-inline: auto;
    padding: 0;
    display: flex !important;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    flex: 0 0 auto;
    min-width: auto;
    min-height: 42px;
    padding: 0 13px;
    border-radius: 0;
    display: grid;
    place-items: center;
    scroll-snap-align: start;
  }

  .main-nav a::after {
    display: block;
  }

  .main-nav a:hover,
  .main-nav a.active {
    border-radius: 9px 9px 0 0;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--max), calc(100% - 24px));
  }

  .topbar.container {
    width: calc(100% - 24px);
  }

  .topbar {
    min-height: 58px;
  }

  .brand {
    gap: 8px;
    min-width: 0;
  }

  .brand img {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-copy strong {
    font-size: 1.05rem;
  }

  .brand-copy span {
    max-width: 165px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: .68rem;
  }

  .brand-copy small {
    display: block;
    font-size: .52rem;
    white-space: nowrap;
  }

  .header-tools {
    gap: 5px;
  }

  .social-button {
    width: 30px;
    height: 30px;
    font-size: .72rem;
  }

  .language-chip {
    margin-left: 0;
    min-width: 48px;
    height: 30px;
    padding: 0 7px;
    gap: 4px;
    font-size: .7rem;
  }

  .language-chip > span:first-child,
  .language-chip .chevron {
    display: none;
  }

  .main-nav,
  .main-nav.open {
    width: 100%;
    min-height: 40px;
    padding-inline: 8px;
  }

  .main-nav a {
    min-height: 40px;
    padding-inline: 12px;
    font-size: .65rem;
  }

  .site-footer {
    padding: 21px 0 22px;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    justify-items: center;
    text-align: center;
  }

  .site-footer .footer-brand {
    justify-content: center;
  }

  .site-footer .footer-brand img {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .site-footer .footer-brand-copy {
    text-align: left;
  }

  .site-footer .footer-credit {
    justify-items: center;
    gap: 4px;
  }

  .site-footer .footer-credit > span {
    white-space: normal;
  }

  .site-footer .footer-top-link {
    justify-self: center;
    margin-top: 1px;
  }
}

@media (max-width: 430px) {
  .topbar.container {
    width: calc(100% - 18px);
  }

  .brand-copy span {
    max-width: 135px;
  }

  /* Sur très petit écran, on conserve le même header tout en réduisant
     uniquement les outils secondaires pour éviter un chevauchement. */
  .header-tools .social-button:first-child {
    display: none;
  }

  .social-button {
    width: 28px;
    height: 28px;
  }

  .language-chip {
    min-width: 42px;
    height: 28px;
  }
}


/* V13 — portraits des dirigeants : cadrage propre, aucun doublon image/avatar */
@media (max-width: 700px) {
  .leaders-grid { grid-template-columns: 1fr; gap: 16px; }
  .leader-card { grid-template-columns: 92px minmax(0, 1fr); gap: 16px; padding: 16px; min-height: 130px; }
  .leader-media { width: 92px; height: 110px; border-radius: 15px; }
  .leader-photo, .leader-initials { border-radius: 15px; }
  .leader-card h3 { font-size: 1.05rem; }
  .leader-card small { margin-top: 8px; font-size: .82rem; }
}


/* V14 — Paramètres CFC synchronisés */
.footer-cfc-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 220px;
}
.footer-cfc-contact a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.4;
}
.footer-cfc-contact a:hover { color: #f5c542; }
@media (max-width: 760px) {
  .footer-cfc-contact { width: 100%; min-width: 0; }
}


/* ==========================================================================
   V17 — Leadership international
   Design validé : portrait intégré, rubans CFC, cartes sobres et premium.
   ========================================================================== */

.quick-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  transform: translateY(-12px);
}

#dirigeants {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(245,185,0,.055), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
}

#dirigeants .section-heading {
  max-width: 860px;
}

#dirigeants .section-heading .kicker {
  color: #d39300;
}

#dirigeants .section-heading h2 {
  margin-bottom: 12px;
  font-weight: 900;
  letter-spacing: -.045em;
}

.leadership-hero {
  position: relative;
  min-height: 500px;
  margin-top: 42px;
  overflow: hidden;
  isolation: isolate;
  border-radius: 30px;
  background:
    linear-gradient(115deg, rgba(94,0,8,.96) 0%, rgba(160,8,18,.99) 42%, rgba(205,14,29,.98) 100%);
  box-shadow: 0 30px 70px rgba(128, 8, 16, .22);
}

.leadership-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -5;
  background:
    linear-gradient(132deg, transparent 0 58%, rgba(91,0,8,.34) 58% 67%, transparent 67%),
    linear-gradient(132deg, transparent 0 70%, rgba(111,0,9,.26) 70% 81%, transparent 81%),
    radial-gradient(circle at 72% 18%, rgba(255,255,255,.08), transparent 24%),
    radial-gradient(circle at 15% 85%, rgba(245,185,0,.09), transparent 30%);
}

.leadership-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(61,0,6,.28) 0%, rgba(61,0,6,.05) 46%, transparent 64%);
}

.leadership-hero-copy {
  position: relative;
  z-index: 8;
  width: 55%;
  max-width: 670px;
  padding: 58px 42px 82px 58px;
  color: #fff;
}

.leadership-role {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-2);
  font-size: .86rem;
  font-weight: 950;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.leadership-role::after {
  content: "";
  width: 30px;
  height: 2px;
  border-radius: 10px;
  background: var(--gold);
}

.leadership-hero-copy h3 {
  max-width: 650px;
  margin: 18px 0 20px;
  color: #fff;
  font-size: clamp(2.55rem, 4.3vw, 4.6rem);
  line-height: .94;
  letter-spacing: -.052em;
  text-wrap: balance;
}

.leadership-hero-copy p {
  max-width: 610px;
  margin: 0;
  color: rgba(255,255,255,.91);
  font-size: 1.02rem;
  line-height: 1.7;
}

.leadership-hero-portrait {
  position: absolute;
  z-index: 6;
  right: -1.5%;
  bottom: -1px;
  width: 55%;
  height: 102%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
}

.president-feature-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(-20px 14px 28px rgba(42,0,4,.26));
  transform: translateY(1.5%);
}

.president-feature-photo[hidden],
.president-feature-fallback[hidden] {
  display: none !important;
}

.president-feature-fallback {
  width: 190px;
  height: 190px;
  margin: auto 18% 14% auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #a30913, #dc1522);
  color: #fff;
  font-size: 3.4rem;
  font-weight: 950;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,.25), 0 20px 50px rgba(0,0,0,.25);
}

.leadership-hero-accent {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: .58;
}

.leadership-accent-one {
  width: 410px;
  height: 410px;
  right: 6%;
  top: -210px;
  border-radius: 50%;
  border: 80px solid rgba(255,255,255,.035);
}

.leadership-accent-two {
  width: 680px;
  height: 210px;
  left: 40%;
  bottom: -145px;
  border-radius: 50%;
  border: 52px solid rgba(92,0,7,.24);
  transform: rotate(-7deg);
}

.leadership-ribbon {
  position: absolute;
  left: 34%;
  right: -8%;
  border-radius: 50%;
  transform: rotate(-11deg);
  transform-origin: center;
  pointer-events: none;
}

.leadership-ribbon-red {
  z-index: 9;
  bottom: -112px;
  height: 185px;
  border: 38px solid #8b0710;
  border-top-color: #8b0710;
  box-shadow: 0 -8px 26px rgba(75,0,6,.16);
}

.leadership-ribbon-gold {
  z-index: 10;
  bottom: -96px;
  height: 170px;
  border: 12px solid #f5bf16;
  box-shadow: 0 -4px 18px rgba(245,185,0,.16);
}

.leaders-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.leader-card {
  min-height: 200px;
  padding: 20px;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 22px;
  border: 1px solid #ececef;
  border-radius: 24px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 14px 38px rgba(25,18,18,.065);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.leader-card:hover {
  transform: translateY(-3px);
  border-color: rgba(177,15,24,.16);
  box-shadow: 0 22px 48px rgba(25,18,18,.10);
}

.leader-media {
  width: 132px;
  height: 158px;
  border-radius: 20px;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.leader-media.has-photo {
  overflow: hidden;
  background: #f3f3f4;
  box-shadow: 0 10px 28px rgba(22,16,16,.13);
}

.leader-photo,
.leader-initials {
  border-radius: 20px;
}

.leader-photo {
  object-fit: cover;
  object-position: center 15%;
  background: #f4f4f4;
}

.leader-media.initials-only {
  width: 116px;
  height: 116px;
  margin-left: 8px;
  align-self: center;
  position: relative;
}

.leader-media.initials-only::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -8px -6px -10px -8px;
  border-radius: 50%;
  border: 4px solid transparent;
  border-bottom-color: var(--gold);
  border-left-color: var(--gold);
  transform: rotate(-25deg);
}

.leader-media.initials-only .leader-initials {
  z-index: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, #930811, #c81520 58%, #a50c15);
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 12px 26px rgba(159,9,18,.18);
}

.leader-media.has-photo .leader-initials {
  background: linear-gradient(145deg, #930811, #c81520);
  color: #fff;
}

.leader-card h3 {
  margin-bottom: 5px;
  font-size: 1.19rem;
  font-weight: 900;
  letter-spacing: -.015em;
}

.leader-card p {
  color: var(--red);
  font-weight: 900;
  line-height: 1.3;
}

.leader-card small {
  margin-top: 9px;
  color: #5f6064;
  font-size: .85rem;
  line-height: 1.58;
}

.authority-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(255,252,250,1));
}

#programme {
  border-top: 1px solid #f0f0f1;
}

@media (max-width: 980px) {
  .leadership-hero {
    min-height: 470px;
  }

  .leadership-hero-copy {
    width: 58%;
    padding: 46px 28px 76px 38px;
  }

  .leadership-hero-copy h3 {
    font-size: clamp(2.2rem, 6vw, 3.6rem);
  }

  .leadership-hero-copy p {
    font-size: .92rem;
  }

  .leadership-hero-portrait {
    width: 58%;
    right: -8%;
  }

  .leader-card {
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 188px;
  }

  .leader-media {
    width: 112px;
    height: 140px;
  }

  .leader-media.initials-only {
    width: 96px;
    height: 96px;
  }
}

@media (max-width: 720px) {
  .quick-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #dirigeants.section {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  #dirigeants .section-heading h2 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .leadership-hero {
    min-height: 660px;
    margin-top: 28px;
    border-radius: 24px;
  }

  .leadership-hero-copy {
    width: 100%;
    max-width: none;
    padding: 30px 24px 300px;
  }

  .leadership-role {
    font-size: .74rem;
  }

  .leadership-hero-copy h3 {
    max-width: 94%;
    margin: 14px 0 15px;
    font-size: clamp(2.15rem, 10vw, 3rem);
    line-height: .96;
  }

  .leadership-hero-copy p {
    max-width: 100%;
    font-size: .86rem;
    line-height: 1.58;
  }

  .leadership-hero-portrait {
    right: -8%;
    bottom: -2%;
    width: 88%;
    height: 53%;
  }

  .leadership-ribbon {
    left: 4%;
    right: -30%;
  }

  .leadership-ribbon-red {
    bottom: -116px;
  }

  .leadership-ribbon-gold {
    bottom: -102px;
  }

  .leaders-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
  }

  .leader-card {
    grid-template-columns: 96px minmax(0, 1fr);
    min-height: 156px;
    gap: 16px;
    padding: 16px;
    border-radius: 20px;
  }

  .leader-media,
  .leader-media.has-photo {
    width: 96px;
    height: 120px;
    border-radius: 16px;
  }

  .leader-photo,
  .leader-initials {
    border-radius: 16px;
  }

  .leader-media.initials-only {
    width: 78px;
    height: 78px;
    margin-left: 7px;
  }

  .leader-media.initials-only .leader-initials {
    font-size: 1.45rem;
  }

  .leader-card h3 {
    font-size: 1rem;
  }

  .leader-card p {
    font-size: .82rem;
  }

  .leader-card small {
    font-size: .78rem;
    line-height: 1.5;
  }
}

@media (max-width: 430px) {
  .leadership-hero {
    min-height: 690px;
  }

  .leadership-hero-copy {
    padding: 28px 20px 290px;
  }

  .leadership-hero-copy h3 {
    font-size: 2.05rem;
  }

  .leadership-hero-copy p {
    font-size: .81rem;
  }

  .leadership-hero-portrait {
    width: 98%;
    right: -16%;
    height: 48%;
  }

  .leader-card {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 13px;
    padding: 14px;
  }

  .leader-media,
  .leader-media.has-photo {
    width: 82px;
    height: 106px;
  }

  .leader-media.initials-only {
    width: 70px;
    height: 70px;
    margin-left: 4px;
  }

  .leader-card small {
    font-size: .75rem;
  }
}


/* ==========================================================================
   V18 — Mobile leadership parity + portrait Autorité morale
   Objectif : conserver la composition premium desktop sur smartphone,
   sans empilement vertical ni grande zone vide.
   ========================================================================== */

@media (max-width: 720px) {
  #dirigeants.section {
    padding-top: 48px;
  }

  /* Même logique visuelle que le desktop : texte à gauche, portrait à droite. */
  .leadership-hero {
    min-height: 430px;
    margin-top: 24px;
    border-radius: 22px;
  }

  .leadership-hero-copy {
    width: 58%;
    max-width: 58%;
    padding: 28px 8px 56px 24px;
  }

  .leadership-role {
    gap: 8px;
    font-size: .66rem;
    letter-spacing: .035em;
  }

  .leadership-role::after {
    width: 24px;
  }

  .leadership-hero-copy h3 {
    max-width: 100%;
    margin: 12px 0 14px;
    font-size: clamp(1.55rem, 7vw, 2.15rem);
    line-height: .96;
    letter-spacing: -.045em;
  }

  .leadership-hero-copy p {
    max-width: 100%;
    font-size: clamp(.61rem, 2.35vw, .76rem);
    line-height: 1.48;
  }

  .leadership-hero-portrait {
    right: -3%;
    bottom: -1px;
    width: 57%;
    height: 98%;
    align-items: flex-end;
  }

  .president-feature-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
    transform: none;
    filter: drop-shadow(-10px 12px 22px rgba(42,0,4,.23));
  }

  .leadership-ribbon {
    left: 34%;
    right: -14%;
    transform: rotate(-11deg);
  }

  .leadership-ribbon-red {
    bottom: -103px;
    height: 164px;
    border-width: 33px;
  }

  .leadership-ribbon-gold {
    bottom: -88px;
    height: 150px;
    border-width: 10px;
  }

  /* Cartes : portrait net et aligné, sans cadre jaune autour de la photo. */
  .leader-card {
    align-items: center;
  }

  .leader-media.has-photo {
    width: 104px;
    height: 132px;
    border-radius: 18px;
    overflow: hidden;
    background: #f4f4f5;
    box-shadow: 0 12px 30px rgba(22,16,16,.12);
  }

  .leader-media.has-photo .leader-photo {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    object-fit: cover;
    object-position: center 12%;
  }
}

@media (max-width: 430px) {
  .leadership-hero {
    min-height: 410px;
  }

  .leadership-hero-copy {
    width: 59%;
    max-width: 59%;
    padding: 24px 4px 50px 18px;
  }

  .leadership-role {
    font-size: .59rem;
  }

  .leadership-hero-copy h3 {
    margin-top: 10px;
    font-size: clamp(1.38rem, 7.1vw, 1.8rem);
  }

  .leadership-hero-copy p {
    font-size: clamp(.56rem, 2.38vw, .67rem);
    line-height: 1.43;
  }

  .leadership-hero-portrait {
    width: 58%;
    height: 96%;
    right: -4%;
  }

  .leadership-ribbon {
    left: 31%;
    right: -20%;
  }

  .leadership-ribbon-red {
    bottom: -100px;
  }

  .leadership-ribbon-gold {
    bottom: -87px;
  }

  .leader-card {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    padding: 15px;
  }

  .leader-media.has-photo {
    width: 92px;
    height: 118px;
  }

  .leader-media.has-photo .leader-photo {
    border-radius: 16px;
  }
}

/* ==========================================================================\n   V19 — Portrait officiel James KENDA ODU\n   ========================================================================== */
.james-kenda-card .leader-photo {
  object-position: center 18%;
}

@media (max-width: 720px) {
  .james-kenda-card .leader-media.has-photo {
    width: 108px;
    height: 136px;
  }

  .james-kenda-card .leader-photo {
    object-position: center 16%;
  }
}

@media (max-width: 430px) {
  .james-kenda-card .leader-media.has-photo {
    width: 96px;
    height: 124px;
  }
}

/* V21 — Galerie institutionnelle premium */
.gallery-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 5%, rgba(240,188,0,.12), transparent 22%),
    linear-gradient(180deg, #fff 0%, #fbf7f4 100%);
}
.gallery-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(177,15,24,.07);
  right: -180px;
  top: 80px;
  box-shadow: 0 0 0 70px rgba(177,15,24,.025), 0 0 0 140px rgba(177,15,24,.018);
  pointer-events: none;
}
.gallery-heading-row {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  z-index: 1;
}
.gallery-heading-row .section-heading { margin-bottom: 0; max-width: 760px; }
.gallery-seal {
  flex: 0 0 128px;
  height: 128px;
  border-radius: 50%;
  border: 1px solid rgba(177,15,24,.15);
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 45px rgba(70,20,20,.08), inset 0 0 0 8px rgba(240,188,0,.08);
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  backdrop-filter: blur(10px);
}
.gallery-seal span { color: var(--red); font-size: 2rem; line-height: 1; font-weight: 950; letter-spacing: -.04em; }
.gallery-seal small { color: #8c6a00; font-size: .57rem; font-weight: 900; letter-spacing: .12em; margin-top: 7px; }
.gallery-grid-premium {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(12, minmax(0,1fr));
  grid-auto-rows: 170px;
  gap: 16px;
  margin-top: 40px;
}
.gallery-item-premium {
  grid-column: span 4;
  grid-row: span 2;
  min-height: 0;
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #1a1111;
  box-shadow: 0 16px 40px rgba(64,26,26,.10);
  isolation: isolate;
  transform: translateZ(0);
}
.gallery-item-premium.gallery-featured {
  grid-column: span 8;
  grid-row: span 3;
}
.gallery-item-premium:nth-child(4n+4),
.gallery-item-premium:nth-child(4n+5) { grid-column: span 6; }
.gallery-item-premium img,
.gallery-item-premium video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2,.7,.2,1), filter .45s ease;
}
.gallery-item-premium:hover img { transform: scale(1.045); filter: saturate(1.04) contrast(1.02); }
.gallery-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8,4,4,.03) 25%, rgba(8,4,4,.16) 52%, rgba(8,4,4,.88) 100%);
  pointer-events: none;
}
.gallery-item-premium::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, #8e0810, #d21923 58%, var(--gold));
  transform: scaleX(.18);
  transform-origin: left;
  transition: transform .35s ease;
}
.gallery-item-premium:hover::after { transform: scaleX(1); }
.gallery-index {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
  background: rgba(20,7,7,.34);
  color: rgba(255,255,255,.92);
  display: grid;
  place-items: center;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  backdrop-filter: blur(8px);
}
.gallery-caption-premium {
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 0;
  background: transparent;
  padding: 22px 22px 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}
.gallery-caption-premium > span { display: grid; gap: 5px; min-width: 0; }
.gallery-caption-premium small {
  display: block;
  color: #ffd84c;
  font-size: .61rem;
  font-weight: 900;
  letter-spacing: .11em;
}
.gallery-caption-premium strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(0,0,0,.24);
}
.gallery-featured .gallery-caption-premium strong { font-size: 1.35rem; max-width: 650px; }
.gallery-caption-premium b {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--red);
  font-size: 1rem;
  box-shadow: 0 8px 22px rgba(0,0,0,.16);
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.gallery-item-premium:hover .gallery-caption-premium b { transform: translate(2px,-2px); background: var(--gold-2); color: #6f090e; }
.gallery-note {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  color: #756b6b;
  font-size: .78rem;
  text-align: right;
}

@media (max-width: 920px) {
  .gallery-grid-premium { grid-template-columns: repeat(2, minmax(0,1fr)); grid-auto-rows: 230px; }
  .gallery-item-premium,
  .gallery-item-premium.gallery-featured,
  .gallery-item-premium:nth-child(4n+4),
  .gallery-item-premium:nth-child(4n+5) { grid-column: span 1; grid-row: span 1; }
  .gallery-item-premium.gallery-featured { grid-column: 1 / -1; grid-row: span 2; }
}

@media (max-width: 620px) {
  .gallery-heading-row { align-items: flex-start; }
  .gallery-seal { display: none; }
  .gallery-grid-premium { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 14px; margin-top: 28px; }
  .gallery-item-premium,
  .gallery-item-premium.gallery-featured,
  .gallery-item-premium:nth-child(4n+4),
  .gallery-item-premium:nth-child(4n+5) {
    grid-column: 1;
    grid-row: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    border-radius: 18px;
  }
  .gallery-item-premium.gallery-featured { aspect-ratio: 4 / 3; }
  .gallery-caption-premium { padding: 18px 16px 16px; gap: 10px; }
  .gallery-caption-premium strong,
  .gallery-featured .gallery-caption-premium strong { font-size: .95rem; }
  .gallery-caption-premium small { font-size: .55rem; }
  .gallery-caption-premium b { width: 34px; height: 34px; flex-basis: 34px; }
  .gallery-index { top: 12px; right: 12px; height: 36px; min-width: 36px; font-size: .61rem; }
  .gallery-note { text-align: left; margin-top: 14px; line-height: 1.45; }
}

/* =========================================================
   V22 — PROGRAMME INSTITUTIONNEL / FEUILLE DE ROUTE CFC
   ========================================================= */
#programme.domains-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 92px 0 88px;
  border-top: 0;
  background:
    radial-gradient(circle at 92% 7%, rgba(196, 15, 27, .08), transparent 28%),
    radial-gradient(circle at 5% 92%, rgba(239, 181, 0, .10), transparent 25%),
    linear-gradient(180deg, #fff 0%, #fbf9f7 100%);
}
#programme.domains-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .34;
  background-image: linear-gradient(rgba(105, 0, 7, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(105, 0, 7, .035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent 0, #000 18%, #000 82%, transparent 100%);
}

.program-heading-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, .74fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: end;
  margin-bottom: 42px;
}
#programme .section-heading { max-width: 790px; }
#programme .section-heading h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 4.4vw, 4.65rem);
  letter-spacing: -.052em;
  line-height: .98;
}
#programme .section-heading p {
  max-width: 720px;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.75;
}
#programme .kicker { color: var(--red); }
#programme .kicker::before { background: var(--gold); }

.program-manifesto {
  position: relative;
  overflow: hidden;
  min-height: 224px;
  padding: 31px 32px 28px;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(113, 2, 9, .98), rgba(184, 11, 23, .98) 70%, rgba(207, 18, 30, .98));
  color: #fff;
  box-shadow: 0 26px 60px rgba(111, 5, 13, .20);
}
.program-manifesto::before,
.program-manifesto::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.11);
}
.program-manifesto::before { width: 260px; height: 260px; right: -130px; top: -130px; }
.program-manifesto::after { width: 180px; height: 180px; right: -90px; top: -90px; }
.program-manifesto-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffd44c;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.program-manifesto-label::after { content: ""; width: 38px; height: 2px; background: #f5bf16; }
.program-manifesto > p {
  position: relative;
  z-index: 1;
  margin: 17px 0 24px;
  max-width: 470px;
  color: rgba(255,255,255,.94);
  font-size: 1.16rem;
  line-height: 1.58;
  font-weight: 750;
}
.program-manifesto-signature {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.program-manifesto-signature span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f4bd16;
  color: #970812;
  font-weight: 1000;
}
.program-manifesto-signature small { color: rgba(255,255,255,.72); font-weight: 800; letter-spacing: .025em; }

#programme .program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 0;
}
#programme .program-card {
  min-height: 315px;
  display: flex;
  flex-direction: column;
  padding: 0;
  border: 1px solid rgba(100, 11, 17, .10);
  border-radius: 25px;
  background: rgba(255,255,255,.96);
  text-align: left;
  box-shadow: 0 18px 46px rgba(32, 8, 10, .07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
#programme .program-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #8e0710 0%, #d11926 56%, #f2bf1c 100%);
}
#programme .program-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -82px;
  top: -86px;
  border-radius: 50%;
  border: 1px solid rgba(178, 13, 24, .075);
  box-shadow: 0 0 0 24px rgba(178, 13, 24, .025), 0 0 0 48px rgba(178, 13, 24, .016);
  pointer-events: none;
}
#programme .program-card:hover {
  transform: translateY(-6px);
  border-color: rgba(178,13,24,.20);
  box-shadow: 0 28px 64px rgba(75, 7, 12, .12);
}
.program-card-topline {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  min-height: 76px;
  padding: 18px 24px 15px 28px;
  border-bottom: 1px solid rgba(91, 16, 21, .08);
}
.program-number {
  color: var(--red);
  font-size: 1.55rem;
  font-weight: 1000;
  letter-spacing: -.04em;
}
.program-eyebrow {
  color: #6a6061 !important;
  font-size: .69rem !important;
  font-weight: 900 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase;
}
.program-mark {
  color: rgba(151, 8, 18, .10) !important;
  font-size: 1.65rem !important;
  font-weight: 1000 !important;
  letter-spacing: -.05em !important;
}
.program-card-body {
  flex: 1;
  padding: 26px 34px 18px 28px;
}
#programme .program-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 15px;
  max-width: 470px;
  color: #171214;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.12;
  letter-spacing: -.035em;
}
#programme .program-card p {
  position: relative;
  z-index: 1;
  max-width: 570px;
  margin: 0;
  color: #665f61;
  font-size: .97rem;
  line-height: 1.72;
}
.program-card-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 28px 23px;
}
.program-card-footer span { flex: 1; height: 2px; background: linear-gradient(90deg, #efbc16, rgba(239,188,22,0)); }
.program-card-footer b { color: rgba(151, 8, 18, .42); font-size: .7rem; letter-spacing: .13em; }

.program-principles {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 13px 20px;
  margin-top: 34px;
  padding: 20px 24px;
  border-top: 1px solid rgba(121, 17, 24, .10);
  border-bottom: 1px solid rgba(121, 17, 24, .10);
  color: #4e4547;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .085em;
  text-transform: uppercase;
}
.program-principles i { width: 5px; height: 5px; border-radius: 50%; background: #e2ae0f; }

@media (max-width: 980px) {
  .program-heading-layout { grid-template-columns: 1fr; gap: 28px; }
  .program-manifesto { max-width: 720px; }
  #programme .program-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  #programme.domains-section { padding: 66px 0 62px; }
  #programme .container { width: min(var(--max), calc(100% - 28px)); }
  #programme .section-heading h2 { font-size: clamp(2.35rem, 11vw, 3.25rem); line-height: 1.01; }
  #programme .section-heading p { font-size: .98rem; line-height: 1.7; }
  .program-heading-layout { margin-bottom: 28px; }
  .program-manifesto { min-height: 0; padding: 26px 24px 24px; border-radius: 22px; }
  .program-manifesto > p { font-size: 1.04rem; }
  .program-manifesto-signature { align-items: flex-start; }
  .program-manifesto-signature small { max-width: 240px; line-height: 1.45; }
  #programme .program-grid { grid-template-columns: 1fr; gap: 16px; }
  #programme .program-card { min-height: 0; border-radius: 22px; }
  .program-card-topline { min-height: 68px; padding: 15px 19px 13px 22px; gap: 11px; }
  .program-number { font-size: 1.35rem; }
  .program-mark { font-size: 1.34rem !important; }
  .program-card-body { padding: 22px 24px 16px 22px; }
  #programme .program-card h3 { font-size: 1.55rem; }
  #programme .program-card p { font-size: .94rem; line-height: 1.67; }
  .program-card-footer { padding: 0 22px 19px; }
  .program-principles { justify-content: flex-start; gap: 10px 12px; margin-top: 26px; padding: 17px 3px; font-size: .67rem; line-height: 1.4; }
}


/* =========================================================
   V23 — CENTRE DOCUMENTAIRE OFFICIEL
   ========================================================= */
.documents-section{
  position:relative;
  padding:76px 0 84px;
  background:
    radial-gradient(circle at 92% 10%, rgba(190,13,30,.07), transparent 30%),
    linear-gradient(180deg,#fff 0%,#fffaf9 52%,#fff 100%);
  overflow:hidden;
}
.documents-section::before{
  content:""; position:absolute; inset:0; pointer-events:none; opacity:.36;
  background-image:linear-gradient(rgba(145,0,15,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(145,0,15,.035) 1px,transparent 1px);
  background-size:42px 42px;
}
.documents-shell{position:relative;z-index:1}
.documents-hero{
  position:relative; min-height:385px; display:grid; grid-template-columns:minmax(0,1.28fr) minmax(340px,.72fr); align-items:center;
  border-radius:32px; overflow:hidden; padding:58px 66px;
  background:
    linear-gradient(118deg,rgba(91,0,10,.99) 0%,rgba(159,4,22,.98) 50%,rgba(207,12,34,.97) 100%);
  box-shadow:0 28px 68px rgba(116,5,17,.20);
  color:#fff;
}
.documents-hero::before{
  content:""; position:absolute; inset:0;
  background:linear-gradient(135deg,transparent 52%,rgba(255,255,255,.055) 52%,rgba(255,255,255,.055) 61%,transparent 61%),
             linear-gradient(135deg,transparent 69%,rgba(255,255,255,.04) 69%,rgba(255,255,255,.04) 76%,transparent 76%);
  pointer-events:none;
}
.documents-hero::after{
  content:"";position:absolute;left:-8%;right:-8%;bottom:-74px;height:130px;border-top:8px solid #f4bd12;
  background:#7f0011;transform:rotate(-2.2deg);border-radius:50% 50% 0 0 / 25% 25% 0 0;opacity:.98;
}
.documents-hero-copy{position:relative;z-index:2;max-width:790px}
.documents-kicker{display:inline-flex;align-items:center;gap:13px;font-weight:900;letter-spacing:.16em;font-size:.78rem;color:#ffd33f;text-transform:uppercase}
.documents-kicker::after{content:"";width:58px;height:3px;border-radius:99px;background:#ffd33f}
.documents-hero h2{font-size:clamp(2.25rem,4.3vw,4.4rem);line-height:.98;letter-spacing:-.045em;margin:20px 0 23px;max-width:830px;color:#fff}
.documents-hero-copy>p{font-size:1.08rem;line-height:1.8;color:rgba(255,255,255,.82);max-width:710px;margin:0}
.documents-trust-row{display:flex;flex-wrap:wrap;gap:10px;margin-top:34px}
.documents-trust-row span{display:inline-flex;align-items:center;gap:9px;padding:10px 14px;border:1px solid rgba(255,255,255,.18);border-radius:999px;background:rgba(255,255,255,.08);font-size:.78rem;font-weight:800;color:#fff}
.documents-trust-row span::before{content:"✓";display:grid;place-items:center;width:18px;height:18px;border-radius:50%;background:#f4bd12;color:#7c0010;font-size:.7rem;font-weight:950}
.documents-hero-art{position:relative;z-index:2;min-height:285px;display:grid;place-items:center}
.documents-seal{position:absolute;right:2%;top:-2%;width:112px;height:112px;border-radius:50%;border:2px solid rgba(255,211,63,.9);display:flex;flex-direction:column;align-items:center;justify-content:center;background:rgba(98,0,10,.52);box-shadow:0 0 0 8px rgba(255,255,255,.05);z-index:4}
.documents-seal strong{font-size:1.65rem;color:#fff;letter-spacing:.05em}.documents-seal small{font-size:.54rem;color:#ffd33f;font-weight:900;letter-spacing:.14em}
.documents-paper{position:absolute;width:230px;height:288px;border-radius:17px;background:#fff;box-shadow:0 30px 56px rgba(46,0,4,.25);padding:34px 28px;color:#7b0714}
.documents-paper-back{transform:rotate(-9deg) translate(-26px,4px);opacity:.74;background:#f7e8e8}
.documents-paper-front{transform:rotate(5deg) translate(32px,5px);display:flex;flex-direction:column;gap:18px}
.documents-paper b{font-size:.72rem;letter-spacing:.12em}.documents-paper i{display:block;height:8px;border-radius:99px;background:#ead5d6}.documents-paper i:nth-of-type(1){width:84%}.documents-paper i:nth-of-type(2){width:100%}.documents-paper i:nth-of-type(3){width:66%}
.documents-paper span{margin-top:auto;width:58px;height:58px;border-radius:50%;display:grid;place-items:center;background:#b80c20;color:#fff;border:4px solid #f4bd12;font-weight:950}
.documents-heading-row{display:flex;align-items:end;justify-content:space-between;gap:32px;margin:58px 0 22px}
.documents-heading-row>div:first-child{max-width:760px}.documents-heading-row h3{font-size:clamp(1.8rem,3vw,2.7rem);letter-spacing:-.035em;margin:8px 0 8px}.documents-heading-row p{margin:0;color:#727272;line-height:1.7}
.documents-status{flex:0 0 auto;display:flex;align-items:center;gap:10px;border:1px solid #efd8d9;background:#fff;padding:13px 16px;border-radius:14px;font-weight:800;color:#7f2630;font-size:.8rem;box-shadow:0 8px 24px rgba(45,0,5,.05)}
.documents-status span{width:9px;height:9px;border-radius:50%;background:#21a45b;box-shadow:0 0 0 5px rgba(33,164,91,.12)}
.document-filters{display:flex;gap:9px;flex-wrap:wrap;margin:0 0 25px}
.document-filter{appearance:none;border:1px solid #e8d9da;background:#fff;color:#4b3e40;border-radius:999px;padding:10px 16px;font-weight:850;font-size:.78rem;cursor:pointer;transition:.2s ease}
.document-filter:hover,.document-filter.active{background:#ad071b;color:#fff;border-color:#ad071b;box-shadow:0 9px 22px rgba(173,7,27,.16)}
.documents-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
.document-card{position:relative;display:grid;grid-template-columns:98px minmax(0,1fr) auto;align-items:center;gap:20px;min-height:208px;padding:25px 25px 25px 22px;border:1px solid #eadcdd;border-radius:24px;background:rgba(255,255,255,.95);box-shadow:0 15px 38px rgba(63,6,13,.06);overflow:hidden;transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease}
.document-card::before{content:"";position:absolute;inset:0 auto 0 0;width:5px;background:linear-gradient(#a60018,#df142e,#f2b915)}
.document-card:hover{transform:translateY(-3px);box-shadow:0 22px 48px rgba(95,7,19,.10);border-color:#e8c9cc}
.document-card-icon{position:relative;width:82px;height:104px;border-radius:17px;background:linear-gradient(160deg,#9f0015,#d51029);display:flex;align-items:center;justify-content:center;color:#fff;box-shadow:0 14px 28px rgba(159,0,21,.20)}
.document-card-icon::before{content:"";position:absolute;right:0;top:0;border-style:solid;border-width:0 0 22px 22px;border-color:transparent transparent rgba(255,255,255,.28) transparent}
.document-card-icon span{font-size:1.45rem;font-weight:950}.document-card-icon i{position:absolute;left:19px;right:19px;bottom:20px;height:3px;border-radius:20px;background:#f5c324;box-shadow:0 -9px 0 rgba(255,255,255,.34)}
.document-card-copy{min-width:0}.document-card-copy small{font-weight:950;letter-spacing:.09em;color:#b10920;font-size:.67rem}.document-card-copy h4{font-size:1.17rem;line-height:1.2;margin:7px 0 8px;color:#161616}.document-card-copy p{font-size:.86rem;line-height:1.57;color:#6d6667;margin:0}
.document-card-meta{display:flex;justify-content:space-between;align-items:center;gap:15px;margin-top:16px;padding-top:13px;border-top:1px solid #f1e8e8;color:#9b8588;font-size:.69rem;font-weight:750}.document-card-meta b{letter-spacing:.12em;color:#bd9a1b}
.document-card-head{display:flex;justify-content:space-between;gap:12px;align-items:center}.document-card-head em{font-style:normal;font-size:.62rem;font-weight:950;letter-spacing:.08em;border-radius:7px;padding:5px 7px;background:#f7e8ea;color:#9d0c20}
.document-open{align-self:stretch;width:96px;border-radius:17px;background:#f8f4f4;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:13px;color:#9f071b;text-decoration:none;font-size:.72rem;font-weight:900;border:1px solid #eee1e2;transition:.2s ease}.document-open b{width:34px;height:34px;border-radius:50%;display:grid;place-items:center;background:#ad071b;color:#fff;font-size:1rem}.document-open:hover{background:#ad071b;color:#fff}.document-open:hover b{background:#f4bd12;color:#6d0010}
.document-open-disabled{opacity:.55;cursor:default}
.documents-filter-empty{grid-column:1/-1;padding:34px;border:1px dashed #ddc9cb;border-radius:22px;text-align:center;color:#8b7174;background:#fff}
.documents-note{margin-top:25px;display:flex;align-items:center;gap:15px;padding:18px 20px;border-radius:18px;background:#fff;border:1px solid #eadcdd}.documents-note-icon{flex:0 0 38px;width:38px;height:38px;border-radius:50%;display:grid;place-items:center;background:#f4bd12;color:#7c0010;font-weight:950}.documents-note strong{display:block;color:#2b2223;margin-bottom:3px}.documents-note p{margin:0;color:#7b7071;font-size:.82rem;line-height:1.5}

@media (max-width: 980px){
  .documents-hero{grid-template-columns:1fr .55fr;padding:48px 42px}.documents-paper{width:185px;height:240px}.documents-seal{width:90px;height:90px}.documents-grid{grid-template-columns:1fr}.documents-heading-row{align-items:flex-start;flex-direction:column}.documents-status{align-self:flex-start}
}
@media (max-width: 720px){
  .documents-section{padding:46px 0 58px}.documents-hero{display:block;min-height:auto;padding:38px 28px 170px;border-radius:25px}.documents-hero h2{font-size:2.45rem;line-height:1.02}.documents-hero-copy>p{font-size:.95rem;line-height:1.68}.documents-trust-row{gap:7px;margin-top:25px}.documents-trust-row span{font-size:.66rem;padding:8px 10px}.documents-hero-art{position:absolute;right:18px;bottom:20px;width:170px;min-height:140px}.documents-paper{width:112px;height:140px;padding:17px 13px;border-radius:10px}.documents-paper-front{transform:rotate(4deg) translate(15px,13px)}.documents-paper-back{transform:rotate(-8deg) translate(-13px,9px)}.documents-paper b{font-size:.45rem}.documents-paper i{height:5px}.documents-paper span{width:35px;height:35px;border-width:2px;font-size:.65rem}.documents-seal{width:61px;height:61px;right:0;top:3px}.documents-seal strong{font-size:.95rem}.documents-seal small{font-size:.34rem}.documents-heading-row{margin-top:38px}.documents-heading-row h3{font-size:1.9rem}.document-filters{flex-wrap:nowrap;overflow-x:auto;padding-bottom:5px;margin-right:-20px}.document-filter{flex:0 0 auto}.document-card{grid-template-columns:77px minmax(0,1fr);padding:20px 18px;gap:15px;min-height:0;border-radius:20px}.document-card-icon{width:67px;height:88px}.document-open{grid-column:1/-1;width:100%;height:48px;flex-direction:row;border-radius:13px}.document-open b{width:27px;height:27px}.document-card-copy h4{font-size:1.05rem}.document-card-copy p{font-size:.8rem}.documents-note{align-items:flex-start}
}
@media (max-width: 420px){
  .documents-hero{padding:32px 22px 160px}.documents-hero h2{font-size:2.12rem}.documents-kicker{font-size:.63rem}.documents-kicker::after{width:34px}.documents-heading-row h3{font-size:1.68rem}.document-card{grid-template-columns:64px minmax(0,1fr);gap:13px}.document-card-icon{width:58px;height:78px;border-radius:14px}.document-card-icon span{font-size:1.18rem}.document-card-meta{font-size:.62rem}
}


/* =========================================================
   V24 — CONTACT & ADHÉSION INSTITUTIONNELS
   ========================================================= */
.membership-pro{
  position:relative;overflow:hidden;padding:86px 0;
  background:radial-gradient(circle at 92% 12%,rgba(255,211,61,.13),transparent 28%),linear-gradient(135deg,#65040b 0%,#9f0914 48%,#c30e1b 100%);color:#fff;
}
.membership-pro::before{content:"";position:absolute;inset:0;background:linear-gradient(118deg,transparent 0 56%,rgba(255,255,255,.035) 56% 67%,transparent 67% 100%);pointer-events:none}
.membership-shell{position:relative;display:grid;grid-template-columns:minmax(0,.92fr) minmax(500px,1.08fr);gap:74px;align-items:center}
.membership-story{padding:20px 0}
.membership-kicker,.contact-pro-kicker{display:inline-flex;align-items:center;gap:14px;color:var(--gold-2);font-size:.75rem;font-weight:950;letter-spacing:.16em;text-transform:uppercase}
.membership-kicker::after,.contact-pro-kicker::after{content:"";width:48px;height:2px;background:var(--gold)}
.membership-story h2{max-width:650px;margin:18px 0 20px;font-size:clamp(2.5rem,4.2vw,4.65rem);line-height:.98;letter-spacing:-.055em;color:#fff}
.membership-story>p{max-width:620px;margin:0;color:rgba(255,255,255,.82);font-size:1.04rem;line-height:1.8}
.membership-values{display:grid;gap:11px;margin:35px 0 30px}
.membership-values span{display:grid;grid-template-columns:48px 1fr;gap:14px;align-items:center;max-width:520px;border-bottom:1px solid rgba(255,255,255,.15);padding:0 0 11px}
.membership-values b{color:var(--gold-2);font-size:.82rem;letter-spacing:.08em}.membership-values i{font-style:normal;font-weight:850;color:#fff}
.membership-process{max-width:560px;padding:18px 20px;border:1px solid rgba(255,211,61,.32);border-radius:17px;background:rgba(59,0,5,.26);backdrop-filter:blur(8px)}
.membership-process strong{display:block;color:var(--gold-2);font-size:.83rem;text-transform:uppercase;letter-spacing:.08em}.membership-process p{margin:5px 0 0;color:rgba(255,255,255,.78);font-size:.84rem;line-height:1.6}
.membership-form,.contact-form-pro{position:relative;background:#fff;color:var(--ink);border-radius:30px;padding:36px;box-shadow:0 28px 70px rgba(49,0,5,.28);border:1px solid rgba(255,255,255,.55)}
.form-card-heading{margin-bottom:24px}.form-card-heading span{display:block;color:var(--red);font-size:.7rem;font-weight:950;letter-spacing:.14em;text-transform:uppercase;margin-bottom:8px}.form-card-heading h3{margin:0 0 8px;font-size:1.75rem;line-height:1.15;letter-spacing:-.025em}.form-card-heading p{margin:0;color:var(--muted);font-size:.84rem;line-height:1.55}.form-card-heading.compact{margin-bottom:21px}
.membership-form label,.contact-form-pro label{display:grid;gap:7px;margin:0 0 15px;color:#27272b;font-weight:800;font-size:.79rem}
.membership-form label>span,.contact-form-pro label>span{padding-left:2px}
.membership-form input,.membership-form textarea,.contact-form-pro input,.contact-form-pro textarea{width:100%;border:1px solid #e5dfe0;border-radius:14px;background:#fbf9f9;padding:13px 14px;outline:0;color:var(--ink);font-weight:550;transition:border-color .2s,box-shadow .2s,background .2s}
.membership-form input:focus,.membership-form textarea:focus,.contact-form-pro input:focus,.contact-form-pro textarea:focus{border-color:#d89ca1;background:#fff;box-shadow:0 0 0 4px rgba(177,15,24,.08)}
.membership-form textarea,.contact-form-pro textarea{resize:vertical;min-height:112px}
.membership-submit,.contact-submit{width:100%;border:0;border-radius:15px;min-height:54px;padding:0 18px;display:flex;align-items:center;justify-content:space-between;gap:15px;background:linear-gradient(135deg,#f0b600,#ffd43d);color:#5f070c;font-weight:950;cursor:pointer;box-shadow:0 12px 27px rgba(245,185,0,.22);transition:transform .2s,box-shadow .2s}
.membership-submit:hover,.contact-submit:hover{transform:translateY(-2px);box-shadow:0 16px 34px rgba(245,185,0,.3)}
.membership-submit b,.contact-submit b{display:grid;place-items:center;width:32px;height:32px;border-radius:50%;background:rgba(95,7,12,.09);font-size:1.05rem}
.membership-submit:disabled,.contact-submit:disabled{opacity:.65;cursor:wait;transform:none}
.form-assurance{display:flex;align-items:center;gap:9px;margin-top:12px;color:#707075;font-size:.72rem}.form-assurance>span{display:grid;place-items:center;width:20px;height:20px;border-radius:50%;background:#eaf6ed;color:#15803d;font-weight:950}.form-assurance p{margin:0}
.membership-form .form-status,.contact-form-pro .form-status{padding:10px 12px;border-radius:10px;background:#f7f4f4;margin-top:11px}.membership-form .form-status.success,.contact-form-pro .form-status.success{background:#edf8f0}.membership-form .form-status.error,.contact-form-pro .form-status.error{background:#fff0f1}

.contact-pro{position:relative;padding:92px 0 78px;background:linear-gradient(180deg,#fff 0,#fffafa 100%)}
.contact-pro-shell{position:relative}
.contact-pro-heading{display:grid;grid-template-columns:minmax(0,1fr) minmax(360px,.72fr);column-gap:70px;align-items:end;margin-bottom:36px}
.contact-pro-heading .contact-pro-kicker{grid-column:1/-1;margin-bottom:13px;color:var(--red)}
.contact-pro-heading h2{margin:0;font-size:clamp(2.5rem,4vw,4.3rem);line-height:1;letter-spacing:-.05em}.contact-pro-heading>p{margin:0;color:var(--muted);font-size:.97rem;line-height:1.72}
.contact-pro-grid{display:grid;grid-template-columns:.92fr 1.08fr;gap:26px;align-items:stretch}
.contact-info-panel{position:relative;overflow:hidden;border-radius:28px;padding:31px;background:linear-gradient(145deg,#6d050c,#a40914 66%,#c5101d);color:#fff;box-shadow:0 20px 50px rgba(89,6,14,.18)}
.contact-info-panel::after{content:"";position:absolute;width:270px;height:270px;border:48px solid rgba(255,211,61,.08);border-radius:50%;right:-105px;bottom:-115px}
.contact-info-top{position:relative;z-index:1;display:flex;gap:15px;align-items:center;padding-bottom:23px;border-bottom:1px solid rgba(255,255,255,.15)}
.contact-info-top>span{display:grid;place-items:center;width:64px;height:64px;border-radius:19px;background:#fff;color:var(--red);font-size:1.16rem;font-weight:950;box-shadow:0 8px 25px rgba(0,0,0,.15)}
.contact-info-top div{display:grid;line-height:1.25}.contact-info-top small{color:rgba(255,255,255,.72);font-size:.7rem}.contact-info-top strong{font-size:1.2rem}
.contact-details-pro{position:relative;z-index:1;display:grid;gap:0;margin-top:14px}
.contact-detail-pro-item{display:grid;grid-template-columns:45px minmax(0,1fr);align-items:center;gap:13px;padding:15px 2px;border-bottom:1px solid rgba(255,255,255,.13)}
.contact-detail-pro-item:last-child{border-bottom:0}.contact-detail-icon{display:grid;place-items:center;width:42px;height:42px;border-radius:13px;background:rgba(255,255,255,.11);border:1px solid rgba(255,211,61,.22);color:var(--gold-2);font-weight:950}.contact-detail-pro-item>div{display:grid;gap:2px}.contact-detail-pro-item strong{color:#fff;font-size:.72rem;text-transform:uppercase;letter-spacing:.08em}.contact-detail-pro-item span:not(.contact-detail-icon){color:rgba(255,255,255,.79);font-size:.9rem;text-align:left;word-break:break-word}
.contact-info-note{position:relative;z-index:1;display:flex;gap:10px;align-items:flex-start;margin-top:22px;padding:14px 15px;border-radius:14px;background:rgba(49,0,5,.2);border:1px solid rgba(255,255,255,.11)}.contact-info-note>span{flex:0 0 auto;display:grid;place-items:center;width:22px;height:22px;border-radius:50%;background:var(--gold);color:#62070c;font-weight:950}.contact-info-note p{margin:0;color:rgba(255,255,255,.72);font-size:.73rem;line-height:1.55}
.contact-form-pro{box-shadow:0 18px 52px rgba(57,24,24,.09);border:1px solid #eee3e4}.contact-submit{background:linear-gradient(135deg,#850711,#bd101b);color:#fff;box-shadow:0 12px 27px rgba(153,10,19,.18)}.contact-submit b{background:rgba(255,255,255,.12)}.contact-submit:hover{box-shadow:0 16px 34px rgba(153,10,19,.25)}
.contact-bottom-band{margin-top:25px;border-radius:18px;border:1px solid #eadcdd;background:#fff;padding:18px 20px;display:flex;align-items:center;justify-content:space-between;gap:20px;box-shadow:0 10px 28px rgba(49,20,20,.05)}.contact-bottom-band div{display:grid;gap:2px}.contact-bottom-band div span{color:var(--red);font-size:.64rem;font-weight:950;letter-spacing:.13em}.contact-bottom-band div strong{font-size:1rem}.contact-bottom-band a{display:inline-flex;align-items:center;gap:10px;color:var(--red);font-weight:900;font-size:.82rem}.contact-bottom-band a b{display:grid;place-items:center;width:28px;height:28px;border-radius:50%;background:#fff0f1}

@media (max-width: 980px){
  .membership-shell{grid-template-columns:1fr;gap:42px}.membership-story{max-width:760px}.membership-form{max-width:760px;width:100%;margin:auto}.contact-pro-heading{grid-template-columns:1fr;gap:14px}.contact-pro-grid{grid-template-columns:1fr}.contact-info-panel,.contact-form-pro{max-width:800px;width:100%;margin-inline:auto}
}
@media (max-width: 640px){
  .membership-pro{padding:58px 0}.membership-shell{gap:28px}.membership-story{padding:0}.membership-story h2{font-size:2.45rem;line-height:1.02}.membership-story>p{font-size:.9rem;line-height:1.68}.membership-values{margin:25px 0 22px}.membership-values span{grid-template-columns:40px 1fr}.membership-process{padding:15px 16px}.membership-form,.contact-form-pro{padding:23px 18px;border-radius:22px}.form-card-heading h3{font-size:1.42rem}.membership-form .form-grid,.contact-form-pro .form-grid{grid-template-columns:1fr;gap:0}.contact-pro{padding:61px 0 52px}.contact-pro-heading{margin-bottom:25px}.contact-pro-heading h2{font-size:2.55rem}.contact-pro-heading>p{font-size:.88rem}.contact-info-panel{padding:22px 18px;border-radius:22px}.contact-info-top>span{width:55px;height:55px;border-radius:16px}.contact-info-top strong{font-size:1.04rem}.contact-bottom-band{align-items:flex-start;flex-direction:column;padding:16px}.contact-bottom-band a{width:100%;justify-content:space-between;border-top:1px solid #eee4e5;padding-top:13px}.contact-detail-pro-item{grid-template-columns:40px minmax(0,1fr);gap:11px}.contact-detail-icon{width:38px;height:38px}
}


/* V26 — ajustements QA finaux */
#contact, #adhesion { scroll-margin-top: 132px; }
@media (max-width: 760px) {
  #contact, #adhesion { scroll-margin-top: 126px; }
}

/* V30 — Vidéothèque : afficher les vidéos intégralement sans recadrage */
#videos.media-section {
  scroll-margin-top: 215px;
  padding-top: 72px;
}
#videos .video-media {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #080808;
}
#videos .video-media video,
#videos .video-media iframe {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #080808;
}
#videos .video-card {
  min-height: 0;
}
@media (max-width: 720px) {
  #videos.media-section {
    scroll-margin-top: 205px;
    padding-top: 64px;
  }
  #videos .video-media {
    aspect-ratio: 16 / 9;
    height: auto;
  }
}

/* V31 — Accueil : grande photo de l'Autorité Morale + drapeau CFC */
.hero-authority-visual {
  background: #5f050b;
}
.hero-authority-visual > img {
  object-fit: cover;
  object-position: center 24%;
  filter: saturate(1.02) contrast(1.02);
}
.hero-authority-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(105,0,8,.24), transparent 32%),
    linear-gradient(0deg, rgba(33,0,3,.48), transparent 30%);
  pointer-events: none;
}
.hero-authority-visual::after {
  z-index: 2;
}
.hero-authority-caption {
  position: absolute;
  left: 9%;
  bottom: 26px;
  z-index: 4;
  display: grid;
  gap: 3px;
  padding: 12px 17px 13px;
  border-left: 4px solid var(--gold);
  background: linear-gradient(90deg, rgba(83,0,7,.92), rgba(83,0,7,.52));
  color: #fff;
  box-shadow: 0 12px 34px rgba(0,0,0,.24);
  backdrop-filter: blur(5px);
}
.hero-authority-caption span {
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 950;
  font-size: .66rem;
}
.hero-authority-caption strong {
  font-size: 1.03rem;
  letter-spacing: .02em;
}
.hero-cfc-flag {
  position: absolute;
  top: 24px;
  right: 26px;
  z-index: 5;
  width: 138px;
  height: 98px;
  filter: drop-shadow(0 12px 16px rgba(0,0,0,.32));
}
.hero-cfc-flag-pole {
  position: absolute;
  top: -8px;
  left: 0;
  width: 4px;
  height: 122px;
  border-radius: 4px;
  background: linear-gradient(90deg,#8b6600,#ffe07a,#8f6700);
}
.hero-cfc-flag-pole::before {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  background: #f6bf16;
  box-shadow: 0 0 0 2px rgba(255,255,255,.28);
}
.hero-cfc-flag-cloth {
  position: absolute;
  left: 4px;
  top: 4px;
  width: 126px;
  height: 78px;
  overflow: hidden;
  border: 2px solid #f5bc00;
  border-left: 0;
  border-radius: 0 12px 12px 0;
  background: linear-gradient(135deg,#fff 0%,#fff8dc 55%,#f4d25f 100%);
  box-shadow: inset -14px 0 20px rgba(120,0,9,.12), inset 0 -10px 14px rgba(245,185,0,.14);
  transform: skewY(-2deg);
}
.hero-cfc-flag-cloth::after {
  content: "CFC";
  position: absolute;
  right: 8px;
  bottom: 6px;
  color: #a00810;
  font-weight: 1000;
  font-size: .68rem;
  letter-spacing: .08em;
}
.hero-cfc-flag-cloth img {
  width: 68px !important;
  height: 68px !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 50%;
  position: absolute;
  left: 24px;
  top: 5px;
  mix-blend-mode: multiply;
}
@media (max-width: 920px) {
  .hero-authority-visual > img { object-position: center 20%; }
  .hero-cfc-flag { top: 18px; right: 18px; transform: scale(.88); transform-origin: top right; }
  .hero-authority-caption { left: 18px; bottom: 20px; }
}
@media (max-width: 620px) {
  .hero-authority-visual { min-height: 410px; }
  .hero-authority-visual > img { object-position: center 18%; }
  .hero-cfc-flag { top: 14px; right: 12px; transform: scale(.72); }
  .hero-authority-caption { left: 12px; right: 12px; bottom: 14px; padding: 10px 13px 11px; }
  .hero-authority-caption strong { font-size: .94rem; }
}

/* V32 — Même composition horizontale sur ordinateur ET téléphone */
.hero {
  min-height: 0;
}
.hero-grid {
  width: min(100%, 1600px) !important;
  min-height: clamp(400px, calc(100svh - 112px), 565px);
  height: clamp(400px, calc(100svh - 112px), 565px);
  grid-template-columns: 43% 57%;
  gap: 0;
}
.hero-copy {
  min-width: 0;
  padding: clamp(28px, 4.2vw, 56px) clamp(24px, 4vw, 56px);
  padding-left: max(clamp(24px, 4vw, 62px), calc((100vw - 1500px) / 2 + 28px));
  justify-content: center;
}
.hero h1 {
  margin: 16px 0 16px;
  font-size: clamp(2.65rem, 4.4vw, 4.75rem);
  line-height: .98;
}
.hero-copy > p {
  max-width: 500px;
  font-size: clamp(.96rem, 1.25vw, 1.12rem);
}
.hero-actions { margin-top: 25px; }
.hero-visual {
  min-height: 0;
  height: 100%;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
  border-left: 4px solid var(--gold);
  border-top: 0;
  background: #5b0a0d;
}
.hero-authority-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-authority-visual::before {
  background: linear-gradient(90deg, rgba(86,0,7,.12), transparent 26%);
}
.hero-authority-caption {
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  min-width: min(330px, 70%);
  text-align: center;
  border-left: 0;
  border-top: 3px solid var(--gold);
  border-radius: 10px 10px 2px 2px;
  padding: 9px 15px 10px;
  background: linear-gradient(180deg, rgba(120,8,16,.95), rgba(76,2,8,.88));
}
.hero-authority-caption span { font-size: .64rem; }
.hero-authority-caption strong { font-size: 1rem; }

@media (max-width: 920px) {
  .hero-grid {
    width: 100% !important;
    min-height: clamp(330px, calc(100svh - 74px), 470px);
    height: clamp(330px, calc(100svh - 74px), 470px);
    grid-template-columns: 44% 56%;
  }
  .hero-copy {
    padding: 22px 14px 22px 18px;
  }
  .hero h1 {
    margin: 11px 0 12px;
    font-size: clamp(1.78rem, 6.5vw, 3rem);
    line-height: 1;
  }
  .hero-copy > p {
    font-size: clamp(.72rem, 2.5vw, .95rem);
    line-height: 1.4;
  }
  .eyebrow {
    gap: 7px;
    font-size: clamp(.54rem, 1.8vw, .7rem);
  }
  .eyebrow::before { width: 25px; }
  .hero-actions { margin-top: 16px; }
  .hero-actions .button {
    width: auto;
    padding: 10px 13px;
    border-radius: 999px;
    font-size: clamp(.62rem, 2vw, .78rem);
    white-space: nowrap;
  }
  .hero-visual {
    min-height: 0;
    height: 100%;
    clip-path: polygon(14% 0,100% 0,100% 100%,0 100%);
    border-left: 3px solid var(--gold);
    border-top: 0;
  }
  .hero-authority-visual > img {
    object-position: 53% center;
  }
  .hero-authority-caption {
    left: 50%;
    right: auto;
    bottom: 10px;
    min-width: 72%;
    padding: 6px 8px 7px;
  }
  .hero-authority-caption span { font-size: clamp(.42rem, 1.5vw, .58rem); }
  .hero-authority-caption strong { font-size: clamp(.58rem, 2vw, .8rem); }
}

@media (max-width: 620px) {
  .hero-grid {
    min-height: 330px;
    height: min(62svh, 400px);
    grid-template-columns: 45% 55%;
  }
  .hero-copy { padding: 18px 9px 18px 13px; }
  .hero h1 {
    font-size: clamp(1.48rem, 7.4vw, 2.25rem);
    letter-spacing: -.045em;
  }
  .hero-copy > p {
    font-size: clamp(.64rem, 2.7vw, .82rem);
    line-height: 1.35;
  }
  .hero-actions .button {
    padding: 8px 10px;
    gap: 6px;
    font-size: clamp(.55rem, 2.4vw, .7rem);
  }
  .hero-authority-visual { min-height: 0; }
  .hero-authority-visual > img { object-position: 52% center; }
  .hero-authority-caption { bottom: 7px; min-width: 80%; }
}

@media (max-width: 430px) {
  .container.hero-grid { width: 100% !important; }
  .hero-grid {
    min-height: 310px;
    height: min(58svh, 360px);
    grid-template-columns: 46% 54%;
  }
  .hero-copy { padding: 14px 7px 14px 10px; }
  .hero h1 { font-size: clamp(1.34rem, 7.7vw, 1.85rem); margin: 9px 0 10px; }
  .hero-copy > p { font-size: .62rem; }
  .eyebrow { font-size: .5rem; letter-spacing: .07em; }
  .eyebrow::before { width: 18px; }
  .hero-actions { margin-top: 12px; }
  .hero-actions .button { padding: 7px 9px; font-size: .54rem; }
  .hero-authority-caption { min-width: 88%; padding: 5px 5px 6px; }
  .hero-authority-caption span { font-size: .4rem; }
  .hero-authority-caption strong { font-size: .56rem; }
}


/* ========================================================================== 
   V33 — Leadership national : Gilbert KALOMBO MUSONGELA
   Même langage visuel que l'Autorité Morale : composition horizontale,
   drapeau RDC + drapeau CFC derrière le Président, desktop et mobile.
   ========================================================================== */

#dirigeants .leadership-hero {
  min-height: 500px;
  background: linear-gradient(120deg, #660008 0%, #93010c 46%, #a70712 100%);
  box-shadow: 0 28px 64px rgba(102,0,8,.20);
}

#dirigeants .leadership-hero::before {
  background:
    radial-gradient(circle at 16% 82%, rgba(245,185,0,.08), transparent 30%),
    linear-gradient(132deg, transparent 0 60%, rgba(84,0,6,.22) 60% 71%, transparent 71%);
}

#dirigeants .leadership-hero::after {
  background: linear-gradient(90deg, rgba(61,0,6,.22) 0%, rgba(61,0,6,.05) 46%, transparent 55%);
}

#dirigeants .leadership-hero-copy {
  width: 50%;
  max-width: 720px;
  padding: 58px 34px 58px 58px;
}

#dirigeants .leadership-hero-copy h3 {
  max-width: 680px;
  font-size: clamp(2.65rem, 4.35vw, 4.75rem);
}

#dirigeants .leadership-hero-copy p {
  max-width: 620px;
  font-size: 1rem;
  line-height: 1.68;
}

#dirigeants .leadership-hero-portrait {
  right: 0;
  bottom: 0;
  width: 53%;
  height: 100%;
  overflow: hidden;
  align-items: stretch;
  justify-content: stretch;
  clip-path: polygon(13% 0,100% 0,100% 100%,0 100%);
  border-left: 4px solid #f5bf16;
  background: #5a1e0b;
}

#dirigeants .president-scene-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  filter: none;
  transform: none;
}

/* Les anciens rubans sont retirés : la séparation diagonale dorée reprend
   maintenant exactement le principe visuel de la bannière Autorité Morale. */
#dirigeants .leadership-ribbon,
#dirigeants .leadership-hero-accent {
  display: none;
}

@media (max-width: 980px) {
  #dirigeants .leadership-hero { min-height: 450px; }
  #dirigeants .leadership-hero-copy {
    width: 49%;
    max-width: 49%;
    padding: 42px 18px 42px 34px;
  }
  #dirigeants .leadership-hero-copy h3 {
    font-size: clamp(2.15rem, 5.5vw, 3.45rem);
  }
  #dirigeants .leadership-hero-copy p {
    font-size: .88rem;
    line-height: 1.55;
  }
  #dirigeants .leadership-hero-portrait {
    width: 54%;
    right: 0;
    height: 100%;
  }
}

@media (max-width: 720px) {
  #dirigeants.section {
    padding-top: 48px;
    padding-bottom: 58px;
  }
  #dirigeants .leadership-hero {
    min-height: 390px;
    height: 390px;
    margin-top: 22px;
    border-radius: 20px;
  }
  #dirigeants .leadership-hero-copy {
    width: 47%;
    max-width: 47%;
    padding: 25px 4px 24px 18px;
  }
  #dirigeants .leadership-role {
    gap: 6px;
    font-size: .58rem;
  }
  #dirigeants .leadership-role::after { width: 18px; }
  #dirigeants .leadership-hero-copy h3 {
    margin: 10px 0 12px;
    font-size: clamp(1.4rem, 6.8vw, 2rem);
    line-height: .96;
  }
  #dirigeants .leadership-hero-copy p {
    font-size: clamp(.54rem, 2.08vw, .69rem);
    line-height: 1.43;
  }
  #dirigeants .leadership-hero-portrait {
    width: 56%;
    height: 100%;
    right: 0;
    bottom: 0;
    clip-path: polygon(14% 0,100% 0,100% 100%,0 100%);
    border-left-width: 3px;
  }
  #dirigeants .president-scene-photo {
    object-position: 50% center;
  }
}

@media (max-width: 430px) {
  #dirigeants .leadership-hero {
    min-height: 360px;
    height: 360px;
    border-radius: 18px;
  }
  #dirigeants .leadership-hero-copy {
    width: 46%;
    max-width: 46%;
    padding: 20px 3px 18px 13px;
  }
  #dirigeants .leadership-role {
    font-size: .49rem;
    letter-spacing: .025em;
  }
  #dirigeants .leadership-hero-copy h3 {
    margin: 8px 0 10px;
    font-size: clamp(1.18rem, 6.45vw, 1.58rem);
  }
  #dirigeants .leadership-hero-copy p {
    font-size: clamp(.47rem, 2.05vw, .58rem);
    line-height: 1.4;
  }
  #dirigeants .leadership-hero-portrait {
    width: 57%;
  }
}

/* V34 — source originale des actualités semi-automatiques.
   Ajout isolé : aucun changement du design V33. */
.article-content-column { min-width: 0; }
.article-source {
  margin-top: 2rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(177, 13, 24, .14);
  border-left: 4px solid var(--red, #b20d18);
  border-radius: 14px;
  background: linear-gradient(135deg, #fffaf0, #ffffff);
  box-shadow: 0 12px 30px rgba(70, 20, 20, .06);
}
.article-source span {
  display: block;
  margin-bottom: .3rem;
  color: #8a6a33;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.article-source strong {
  display: block;
  color: #701018;
  font-size: 1rem;
}
.article-source a {
  display: inline-flex;
  gap: .6rem;
  align-items: center;
  margin-top: .8rem;
  color: #a10c17;
  font-weight: 800;
  text-decoration: none;
}
.article-source a:hover { text-decoration: underline; }

/* V35 — Actualités : seulement 3 sur la page d'accueil + archive complète */
.news-archive-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}
.news-archive-action .btn,
.archive-back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.news-archive-action .btn {
  background: var(--gold);
  color: #2b2000;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.news-archive-action .btn:hover,
.archive-back-button:hover { transform: translateY(-2px); }

.archive-news-section { min-height: 70vh; padding-top: 64px; }
.archive-news-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 18px;
}
.archive-news-heading h1 {
  margin: 8px 0 8px;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: .98;
}
.archive-news-heading p { margin: 0; color: rgba(255,255,255,.72); }
.archive-back-button {
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.26);
  color: #fff;
  background: rgba(255,255,255,.08);
}
.archive-news-grid { margin-top: 34px; }
.archive-news-card .news-teaser {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.archive-news-card .news-link { display: inline-flex; margin-top: 18px; }

@media (max-width: 760px) {
  .archive-news-heading { align-items: flex-start; flex-direction: column; }
  .archive-back-button { width: 100%; }
  .news-archive-action .btn { width: 100%; }
}
