/* ===== RESET & BASE ===== */
:root {
  --red: #c8102e;
  --red-dark: #9f0b22;
  --gold: #c9a84c;
  --ink: #272220;
  --muted: #6e6a67;
  --paper: #fffaf4;
  --line: #ece5dc;
  --shadow-soft: 0 14px 36px rgba(55, 32, 24, .09);
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.6;
  background: #fffdf9;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: color .2s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }

/* ===== HEADER ===== */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 253, 249, .96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 168, 76, .18);
  box-shadow: 0 1px 10px rgba(55, 32, 24, .05);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 10px 20px;
}
.nav-logo img { height: 44px; }
.nav-links { display: flex; gap: 12px; align-items: center; flex-wrap: nowrap; }
.nav-links a {
  font-size: .78rem; font-weight: 600; color: #494340;
  letter-spacing: 0; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-links .btn-cta { color: #fff; }
.nav-links .btn-cta:hover { color: #fff; }
.btn-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--red); color: #fff;
  padding: 10px 22px; border-radius: 6px;
  font-weight: 600; font-size: .84rem;
  border: 2px solid var(--red);
  cursor: pointer; transition: all .2s;
}
.btn-cta:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-outline-red {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; color: #333;
  padding: 10px 22px; border-radius: 6px;
  font-weight: 500; font-size: .88rem;
  border: none; cursor: pointer; transition: color .2s;
}
.btn-outline-red:hover { color: var(--red); }
.hamburger { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #333; }

/* ===== HERO ===== */
.hero {
  background:
    linear-gradient(110deg, rgba(112, 8, 25, .32), rgba(200, 16, 46, 0) 46%),
    var(--red);
  color: #fff;
  position: relative; overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: rgba(255,255,255,.25);
}
.hero-inner {
  display: grid; grid-template-columns: minmax(0, .95fr) minmax(420px, 1fr);
  align-items: center; gap: 56px;
  max-width: 1140px; margin: 0 auto;
  padding: 74px 28px 82px;
}
.hero-text {
  position: relative;
  z-index: 1;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: rgba(255,255,255,.76);
  margin-bottom: 18px;
}
.hero-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: 4.6rem; font-weight: 800;
  line-height: .96; margin-bottom: 26px;
  letter-spacing: 0;
  text-wrap: balance;
}
.hero p {
  font-size: 1.06rem; line-height: 1.78;
  margin-bottom: 34px; max-width: 510px;
  color: rgba(255,255,255,.9);
}
.hero p strong { font-weight: 700; color: #fff; }
.hero-buttons { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-buttons .btn-hero-primary {
  background: #fff; color: var(--red);
  padding: 13px 28px; border-radius: 999px;
  font-weight: 700; font-size: .9rem;
  border: 2px solid #fff; cursor: pointer;
  box-shadow: 0 14px 32px rgba(73, 8, 19, .22);
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}
.hero-buttons .btn-hero-primary:hover {
  background: #fff8ed;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(73, 8, 19, .28);
}
.hero-buttons .btn-hero-secondary {
  color: #fff; font-weight: 700; font-size: .9rem;
  padding: 12px 0; cursor: pointer;
  border: none; background: none;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.36);
  text-underline-offset: 6px;
}
.hero-buttons .btn-hero-secondary:hover { text-decoration-color: #fff; }
.hero-image { position: relative; z-index: 1; }
.hero-image img {
  border-radius: 8px; width: 100%;
  object-fit: cover; aspect-ratio: 5/4;
  box-shadow: 0 24px 60px rgba(65, 12, 22, .32);
  border: 1px solid rgba(255,255,255,.28);
}
/* Badge 10% doré */
.badge-10 {
  position: absolute; bottom: -16px; right: -16px;
  width: 120px; height: 120px;
  background: #fff;
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 16px 34px rgba(65, 12, 22, .22);
}
.badge-10 .badge-ring {
  position: absolute; inset: 4px;
  border: 1.5px dashed var(--gold);
  border-radius: 50%;
}
.badge-10 .badge-top {
  font-size: .42rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--gold); margin-bottom: 2px;
}
.badge-10 .badge-num {
  font-family: var(--font-serif);
  font-size: 2rem; font-weight: 800;
  color: var(--red); line-height: 1;
}
.badge-10 .badge-pct {
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 700;
  color: var(--red);
}
.badge-10 .badge-bottom {
  font-size: .38rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--gold); margin-top: 1px;
}

/* ===== HOME AMBITION ===== */
.home-ambition {
  padding: 50px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.home-ambition-inner {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 52px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
.home-ambition .section-label { margin-bottom: 10px; }
.home-ambition h2 {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 16px;
}
.home-ambition-heading p {
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.68;
}
.home-ambition-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.home-ambition-point {
  position: relative;
  padding-left: 18px;
}
.home-ambition-point::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 2px;
  background: var(--red);
}
.home-ambition-point span {
  display: block;
  color: var(--red);
  font-weight: 800;
  font-size: .92rem;
  margin-bottom: 10px;
}
.home-ambition-point p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.62;
}

/* ===== STATS ===== */
.stats { padding: 32px 0 28px; background: var(--paper); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  text-align: center;
}
.stat-card {
  padding: 28px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: transform .25s, box-shadow .25s;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.12); }
.stat-icon {
  margin: 0 auto 14px;
  color: var(--gold);
}
.stat-icon svg { width: 40px; height: 40px; stroke-width: 1.3; }
.stat-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem; font-weight: 800;
  color: var(--red); margin-bottom: 4px;
}
.stat-card p { font-size: .8rem; color: var(--muted); line-height: 1.4; }

/* ===== SECTION LABEL ===== */
.section-label {
  font-size: .65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--red); margin-bottom: 8px;
}

/* ===== MISSION ===== */
.mission {
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
.mission-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}
.mission-layout h2 {
  font-family: var(--font-serif);
  font-size: 2.15rem; font-weight: 800;
  line-height: 1.05;
}
.pillars-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pillar {
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 16px 24px;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
}
.pillar:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.12); }
.pillar-icon {
  width: 60px; height: 60px;
  margin: 0 auto 12px;
  background: #fff7e8;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.pillar-icon svg { width: 28px; height: 28px; stroke-width: 1.5; }
.pillar h4 {
  font-family: var(--font-heading);
  font-size: .85rem; font-weight: 700;
  margin-bottom: 8px; color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 3px;
}
.pillar p { font-size: .78rem; color: var(--muted); line-height: 1.55; }

/* ===== GENESE ===== */
.genese {
  padding: 32px 0;
  background: var(--paper);
}
.genese-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.genese h2 {
  font-family: var(--font-serif);
  font-size: 2.15rem; font-weight: 800;
  margin-bottom: 20px; line-height: 1.05;
}
.genese p { font-size: .94rem; color: var(--muted); line-height: 1.78; margin-bottom: 16px; }
.genese-img img {
  border-radius: 8px; width: 100%;
  object-fit: cover; aspect-ratio: 16/11;
  box-shadow: var(--shadow-soft);
}
.link-arrow {
  color: var(--red); font-weight: 700; font-size: .85rem;
  display: inline-flex; align-items: center; gap: 6px;
}
.link-arrow:hover { color: var(--red-dark); }

/* ===== SIGNATAIRES PREVIEW ===== */
.signataires-preview {
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
.sig-header {
  display: grid; grid-template-columns: auto 1fr;
  gap: 48px; align-items: end;
  margin-bottom: 40px;
}
.sig-header-text h2 {
  font-family: var(--font-serif);
  font-size: 2.15rem; font-weight: 800;
  line-height: 1.05;
}
.sig-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.sig-card { text-align: center; }
.sig-card img {
  width: 140px; height: 140px;
  border-radius: 50%; object-fit: cover;
  margin: 0 auto 10px;
  border: 3px solid #f0e8df;
  box-shadow: 0 10px 24px rgba(55, 32, 24, .08);
}
.sig-card h4 {
  font-family: var(--font-heading);
  font-size: .85rem; font-weight: 700;
  color: var(--red);
}
.sig-card .role { font-size: .75rem; color: var(--muted); display: block; margin-top: 1px; }

/* ===== ACTUALITES ===== */
.actualites {
  padding: 32px 0;
  background: var(--paper);
}
.actu-top {
  display: grid; grid-template-columns: auto 1fr;
  gap: 48px; align-items: end;
  margin-bottom: 32px;
}
.actu-top h2 {
  font-family: var(--font-serif);
  font-size: 2.15rem; font-weight: 800;
  line-height: 1.05;
}
.actu-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.actu-card {
  display: block;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform .25s, box-shadow .25s;
  color: inherit;
}
.actu-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.12); }
.actu-card img { width: 100%; height: 180px; object-fit: cover; }
.actu-card-body { padding: 16px 18px 18px; }
.actu-tag {
  display: inline-block;
  font-size: .6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 3px 8px; border-radius: 4px;
  margin-bottom: 8px;
}
.actu-tag.engagement { background: var(--red); color: #fff; }
.actu-tag.evenement { background: var(--gold); color: #fff; }
.actu-tag.inspiration { background: #3b82f6; color: #fff; }
.actu-card-body .date { font-size: .72rem; color: #9c948f; margin-bottom: 6px; }
.actu-card-body h4 { font-size: .88rem; font-weight: 600; margin-bottom: 8px; line-height: 1.35; }
.actu-card-body .link-arrow { font-size: .82rem; color: var(--red); }

/* ===== RESOURCE PAGES ===== */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 44px;
}
.resource-card,
.quote-card,
.logo-card,
.timeline article,
.press-card,
.name-grid span,
.text-callout {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}
.resource-card {
  display: block;
  padding: 22px;
  transition: transform .2s, box-shadow .2s;
}
.resource-card:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(55, 32, 24, .12); }
.resource-card span,
.quote-card .date,
.timeline article span {
  display: block;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.resource-card h3,
.quote-card h3,
.timeline article h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin: 0 0 8px;
  color: var(--ink);
}
.resource-card p,
.quote-card blockquote,
.timeline article p {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.65;
}
.interview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.quote-card { padding: 22px; }
.video-card { padding: 0; overflow: hidden; }
.video-card .date,
.video-card h3,
.video-card blockquote {
  margin-left: 22px;
  margin-right: 22px;
}
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #2d2421, #6f1020);
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-embed iframe[data-src] {
  display: none;
}
.video-consent {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 24px;
  border: 0;
  color: #fff;
  background: rgba(39, 34, 32, .28);
  text-align: center;
  cursor: pointer;
}
.video-consent strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 6px;
  background: #fff;
  color: var(--red);
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 800;
}
.video-consent span {
  max-width: 420px;
  font-size: .82rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, .92);
}
.quote-card blockquote {
  margin: 0;
  font-style: italic;
}
.video-card blockquote { margin-bottom: 22px; }
.name-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.name-grid span {
  padding: 14px 16px;
  font-size: .84rem;
  font-weight: 700;
  color: var(--ink);
}
.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.logo-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px;
  text-align: center;
}
.logo-card img {
  max-height: 72px;
  width: auto;
  object-fit: contain;
}
.logo-card span {
  font-size: .78rem;
  font-weight: 700;
  color: var(--muted);
}
.timeline {
  display: grid;
  gap: 18px;
}
.timeline article { padding: 24px; }
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 16px 0 24px;
}
.press-card {
  padding: 28px 20px;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--red);
}
.text-callout {
  padding: 22px 24px;
  margin: 24px 0;
}
.text-callout p:last-child { margin-bottom: 0; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--red);
  color: #fff;
  padding: 48px 0;
  border-radius: 8px;
  margin: 0 28px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner-wrap {
  max-width: 1140px; margin: 0 auto; padding: 0;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
  padding: 0 48px;
}
.cta-left { display: flex; align-items: center; gap: 28px; }
.cta-heart {
  width: 64px; height: 64px;
  flex-shrink: 0;
}
.cta-heart svg { width: 64px; height: 64px; }
.cta-inner h2 {
  font-family: var(--font-serif);
  font-size: 2rem; font-weight: 800;
  max-width: 460px; line-height: 1.05;
}
.cta-inner p { max-width: 440px; font-size: .88rem; opacity: .88; margin-top: 8px; line-height: 1.62; }
.btn-cta-outline {
  border: 2px solid #fff; color: #fff;
  padding: 12px 28px; border-radius: 999px;
  font-weight: 600; font-size: .88rem;
  background: transparent; cursor: pointer;
  transition: all .2s;
}
.btn-cta-outline:hover { background: #fff; color: var(--red); }

/* ===== FOOTER ===== */
footer {
  background: #fffdf9;
  color: #555;
  padding: 56px 0 20px;
  border-top: 1px solid var(--line);
  margin-top: 48px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand p { font-size: .78rem; line-height: 1.6; margin-top: 12px; color: var(--muted); }
.footer-brand img { height: 40px; }
.footer-brand .social { margin-top: 12px; }
.footer-brand .social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 6px;
  background: #333; color: #fff; font-size: .75rem;
}
.footer-col h4 {
  font-size: .78rem; font-weight: 700;
  color: var(--ink); margin-bottom: 14px;
}
.footer-col a {
  display: block; font-size: .8rem; color: var(--muted);
  margin-bottom: 8px;
}
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .72rem; color: #aaa;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: #aaa; }
.footer-bottom a:hover { color: var(--red); }

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--red);
  color: #fff;
  padding: 64px 0 56px;
  text-align: center;
}
.page-hero h1, .page-hero h2 {
  font-family: var(--font-serif);
  font-size: 2.8rem; font-weight: 800;
  line-height: 1.05; margin: 0;
}
.page-hero p { max-width: 520px; margin: 12px auto 0; font-size: .92rem; opacity: .88; }

/* ===== SIGNATAIRES FULL ===== */
.signataires-full { padding: 56px 0; }
.sig-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.sig-full-card {
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 14px 18px;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
}
.sig-full-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.12); }
.sig-full-card img {
  width: 100px; height: 100px;
  border-radius: 50%; object-fit: cover;
  margin: 0 auto 10px;
  border: 3px solid #eee;
  transition: border-color .2s;
}
.sig-full-card:hover img { border-color: var(--red); }
.sig-full-card h4 { font-size: .8rem; font-weight: 700; color: #333; margin-bottom: 6px; }
.sig-bio {
  font-size: .72rem; color: #888; line-height: 1.5;
  max-height: 60px; overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
}

/* ===== PAGE CONTENT ===== */
.page-content { padding: 56px 28px; }
.page-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 800;
  color: var(--red); margin: 36px 0 14px;
}
.page-content h2:first-child { margin-top: 0; }
.page-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 700;
  margin: 24px 0 10px;
}
.page-content p { margin-bottom: 14px; font-size: .88rem; line-height: 1.7; color: #555; }
.page-content ul { margin: 0 0 14px 20px; list-style: disc; }
.page-content ul li { margin-bottom: 8px; font-size: .88rem; color: #555; line-height: 1.6; }

/* Gouvernance */
.gouv-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 24px; margin-top: 28px;
}
.gouv-card { text-align: center; padding: 16px 8px; }
.gouv-card img {
  width: 100px; height: 100px;
  border-radius: 50%; object-fit: cover;
  margin: 0 auto 8px; border: 3px solid #eee;
}
.gouv-card h4 { font-size: .82rem; font-weight: 700; color: var(--red); }
.gouv-card .role { font-size: .72rem; color: #999; display: block; margin-top: 2px; }

/* Contact form */
.contact-form { max-width: 520px; margin: 0 auto; }
.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: .8rem; font-weight: 600;
  margin-bottom: 5px; color: #333;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid #ddd; border-radius: 8px;
  font-size: .88rem; font-family: inherit;
  transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--red);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-privacy-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.45;
}
.form-privacy-note a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-status {
  display: none;
  margin-top: 14px;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: .86rem;
  line-height: 1.45;
}
.form-status.is-visible { display: block; }
.form-status-success {
  background: #eef9f1;
  border: 1px solid #b9e4c3;
  color: #1f6b35;
}
.form-status-error {
  background: #fff1f1;
  border: 1px solid #f0b9b9;
  color: #8a1f1f;
}
.contact-form button[disabled] {
  cursor: wait;
  opacity: .7;
}

/* FAQ */
.faq { margin-top: 48px; }
.faq-item { border-bottom: 1px solid #eee; }
.faq-question {
  width: 100%; background: none; border: none;
  padding: 16px 0; text-align: left;
  font-size: .88rem; font-weight: 600; font-family: inherit;
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; color: #333; gap: 12px;
}
.faq-question:hover { color: var(--red); }
.faq-question::after {
  content: '+'; font-size: 1.2rem; color: var(--red);
  flex-shrink: 0;
}
.faq-item.open .faq-question::after { content: '\2212'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-answer { max-height: 2000px; }
.faq-answer-inner { padding: 0 0 16px; font-size: .84rem; color: #666; line-height: 1.7; }

/* Membre page */
.membre-page { max-width: 800px; margin: 0 auto; }

.membre-engagement-banner {
  background: linear-gradient(135deg, #fef2f2 0%, #fff5f5 50%, #fefce8 100%);
  border: 2px solid var(--red);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 48px;
}
.membre-engagement-inner {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}
.membre-engagement-badge {
  flex-shrink: 0;
  width: 80px; height: 80px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 2rem; font-weight: 900;
  line-height: 1;
  box-shadow: 0 4px 16px rgba(200, 16, 46, .25);
}
.membre-engagement-badge span { font-size: 1.1rem; }
.membre-engagement-text h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem; font-weight: 800;
  color: var(--red);
  margin: 0 0 8px;
}
.membre-engagement-text p {
  font-size: .95rem; color: #444;
  line-height: 1.7; margin: 0 0 20px;
}
.membre-engagement-detail {
  display: flex; gap: 20px; flex-wrap: wrap;
}
.membre-engagement-stat {
  background: #fff;
  border-radius: 10px;
  padding: 12px 16px;
  flex: 1; min-width: 120px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.membre-engagement-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem; font-weight: 800;
  color: var(--red);
  margin-bottom: 2px;
}
.membre-engagement-stat span {
  font-size: .78rem; color: #666;
  line-height: 1.3;
}
@media (max-width: 600px) {
  .membre-engagement-inner { flex-direction: column; align-items: center; text-align: center; }
  .membre-engagement-badge { width: 64px; height: 64px; font-size: 1.6rem; }
  .membre-engagement-detail { flex-direction: column; }
}
.membre-section-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 800;
  color: var(--red); margin: 0 0 8px;
}
.membre-avantages-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
  margin: 24px 0 48px;
}
.membre-avantage {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid #f0f0f0;
  border-radius: 10px; padding: 14px 16px;
  font-size: .85rem; color: #444; line-height: 1.5;
  transition: box-shadow .2s, border-color .2s;
}
.membre-avantage:hover { border-color: #ddd; box-shadow: 0 4px 14px rgba(0,0,0,.06); }
.membre-avantage-icon { font-size: 1.3rem; flex-shrink: 0; }

.membre-visibilite-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  margin-bottom: 48px;
}
.membre-visibilite-card {
  text-align: center; padding: 32px 24px;
  background: #fff; border: 2px solid #f0f0f0;
  border-radius: 12px;
  transition: border-color .2s, box-shadow .2s;
}
.membre-visibilite-card:hover { border-color: var(--red); box-shadow: 0 6px 20px rgba(0,0,0,.08); }
.membre-visibilite-icon { font-size: 2rem; margin-bottom: 12px; }
.membre-visibilite-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 800; color: #333;
  margin: 0 0 8px;
}
.membre-visibilite-card p { font-size: .82rem; color: #777; line-height: 1.6; margin: 0; }

.membre-form-wrapper {
  background: #faf9f8; border-radius: 16px;
  padding: 40px 32px; margin-bottom: 48px;
}
.membre-form-wrapper .contact-form { max-width: 100%; }
.membre-form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}

@media (max-width: 600px) {
  .membre-avantages-grid { grid-template-columns: 1fr; }
  .membre-visibilite-grid { grid-template-columns: 1fr; }
  .membre-form-row { grid-template-columns: 1fr; }
  .membre-form-wrapper { padding: 28px 20px; }
}

/* Fiscalite - Navigation */
.fiscal-nav { background: #fff; border-radius: 16px; padding: 32px; margin: -40px auto 40px; box-shadow: 0 4px 24px rgba(0,0,0,.08); position: relative; z-index: 2; }
.fiscal-nav-title { text-align: center; color: var(--dark); margin: 0 0 20px; font-size: 1.1rem; }
.fiscal-nav-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.fiscal-nav-item { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 16px 8px; border-radius: 12px; background: #faf7f5; text-decoration: none; color: var(--dark); transition: all .2s; border: 2px solid transparent; }
.fiscal-nav-item:hover { background: #fef2f0; border-color: var(--red); transform: translateY(-2px); }
.fiscal-nav-icon { width: 36px; height: 36px; color: var(--red); }
.fiscal-nav-icon svg { width: 100%; height: 100%; }
.fiscal-nav-label { font-size: .78rem; font-weight: 600; text-align: center; line-height: 1.3; }

/* Fiscalite - Cards */
.fiscal-card { background: #fff; border-radius: 16px; padding: 36px; margin-bottom: 24px; box-shadow: 0 2px 16px rgba(0,0,0,.06); border: 1px solid #eee; }
.fiscal-card-header { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid #f0f0f0; }
.fiscal-card-number { min-width: 48px; height: 48px; background: var(--red); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 700; font-family: var(--font-heading); }
.fiscal-card-header h3 { color: var(--dark); margin: 0; font-size: 1.35rem; }
.fiscal-card-subtitle { color: #888; margin: 4px 0 0; font-size: .9rem; }
.fiscal-card p { line-height: 1.7; color: #444; }
.fiscal-card ul { margin: 12px 0; padding-left: 24px; }
.fiscal-card li { margin-bottom: 8px; line-height: 1.6; color: #444; }

/* Fiscalite - Highlights (percentage boxes) */
.fiscal-highlights { display: flex; gap: 16px; margin: 20px 0; flex-wrap: wrap; }
.fiscal-highlight { flex: 1; min-width: 200px; display: flex; align-items: flex-start; gap: 16px; background: #faf7f5; border-radius: 12px; padding: 20px; }
.fiscal-highlight-single { max-width: 100%; flex: unset; width: 100%; }
.fiscal-highlight-pct { min-width: 64px; height: 64px; background: var(--red); color: #fff; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; font-family: var(--font-heading); flex-shrink: 0; }
.fiscal-highlight p { margin: 0; font-size: .9rem; line-height: 1.5; color: #555; }

/* Fiscalite - Alert */
.fiscal-alert { background: #fff8e1; border-left: 4px solid #e6b800; border-radius: 8px; padding: 16px 20px; margin: 20px 0; line-height: 1.6; color: #555; }

/* Fiscalite - Example */
.fiscal-example { background: #f8f9fc; border-radius: 12px; padding: 24px; margin: 20px 0; }
.fiscal-example-title { font-weight: 700; color: var(--dark); margin-bottom: 12px; font-size: 1rem; }
.fiscal-example-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.fiscal-example-box { padding: 16px; border-radius: 10px; font-size: .9rem; line-height: 1.6; }
.fiscal-example-good { background: #e8f5e9; border: 1px solid #a5d6a7; }
.fiscal-example-bad { background: #fef2f2; border: 1px solid #f5c6c6; }
.fiscal-example-result { display: inline-block; margin-top: 8px; font-weight: 700; color: var(--dark); }

/* Fiscalite - Link */
.fiscal-link { margin-top: 12px; }
.fiscal-link a { color: var(--red); font-weight: 600; text-decoration: none; }
.fiscal-link a:hover { text-decoration: underline; }

/* Facts */
.facts-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin: 24px 0;
}
.fact-card {
  display: block;
  background: #fff; border-radius: 8px;
  padding: 28px 20px; text-align: center;
  border: 1px solid #f0f0f0;
  color: inherit;
  transition: transform .2s, box-shadow .2s;
}
.press-links .fact-card:hover,
a.fact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(55, 32, 24, .12);
}
.fact-card .number {
  font-family: var(--font-heading);
  font-size: 2rem; font-weight: 800;
  color: var(--red);
}
.fact-card .label { font-size: .78rem; color: #888; margin-top: 4px; }

/* Facts - comparaison */
.facts-comparison { margin: 24px 0; }
.facts-flags {
  background: #fff; border: 1px solid var(--line); border-radius: 8px;
  padding: 28px 32px;
}
.flag-row {
  font-size: .95rem; line-height: 1.8; color: var(--ink);
}
.flag-row strong { color: var(--red); }
.flag-highlight { font-weight: 700; font-size: 1.05rem; }
.flag-emoji { margin-right: 8px; }
.facts-source {
  font-size: .75rem; color: var(--muted); margin-top: 12px; font-style: italic;
}
.facts-ranking ul {
  list-style: disc; padding-left: 24px; margin-top: 12px;
}
.facts-ranking li {
  margin-bottom: 8px; font-size: .92rem; line-height: 1.6;
}
.facts-ranking h3 {
  font-family: var(--font-heading); font-size: 1.05rem;
  color: var(--ink); margin-bottom: 8px;
}

.study-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0 36px;
}
.study-card {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}
.study-card span {
  display: block;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.study-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.35;
  margin: 0 0 10px;
}
.study-card p {
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.65;
  margin-bottom: 18px;
}
.study-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: auto;
}
.study-links a {
  color: var(--red);
  font-size: .82rem;
  font-weight: 700;
}
.study-links a:hover { text-decoration: underline; }

/* Associations */
.assoc-section-title {
  margin-top: 36px; margin-bottom: 16px;
}
.assoc-tag {
  display: inline-block;
  font-size: .68rem; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--red); background: rgba(200, 16, 46, .07);
  padding: 6px 16px; border-radius: 20px;
}
.name-grid a.assoc-link {
  color: var(--ink); transition: color .2s, transform .2s;
}
.name-grid a.assoc-link:hover {
  color: var(--red); transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200, 16, 46, .1);
}
.assoc-intro { margin-bottom: 12px; }

/* Associations grid with logos */
.assoc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.assoc-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: transform .2s, box-shadow .2s;
}
a.assoc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(55, 32, 24, .12);
}
.assoc-card img {
  max-height: 72px;
  width: auto;
  object-fit: contain;
}
.assoc-card span {
  font-size: .78rem;
  font-weight: 700;
  color: var(--muted);
}
a.assoc-card:hover span { color: var(--red); }

/* ===== BIO MODAL ===== */
.bio-modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.bio-modal-overlay.active { opacity: 1; visibility: visible; }
.bio-modal {
  background: #fff; border-radius: 8px;
  max-width: 520px; width: 90%;
  max-height: 80vh; overflow-y: auto;
  padding: 36px 32px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  position: relative;
  transform: translateY(20px) scale(.97);
  transition: transform .3s;
}
.bio-modal-overlay.active .bio-modal { transform: translateY(0) scale(1); }
.bio-modal-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; font-size: 1.5rem;
  color: #999; cursor: pointer; line-height: 1;
  transition: color .2s;
}
.bio-modal-close:hover { color: var(--red); }
.bio-modal-photo {
  width: 110px; height: 110px;
  border-radius: 50%; object-fit: cover;
  margin: 0 auto 16px; display: block;
  border: 3px solid var(--red);
}
.bio-modal h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem; font-weight: 700;
  color: #222; text-align: center; margin-bottom: 16px;
}
.bio-modal-text {
  font-size: .88rem; color: #555; line-height: 1.75;
}
.bio-modal-text p {
  margin-bottom: 12px;
}
.bio-modal-text p:last-child { margin-bottom: 0; }
.bio-modal-signature {
  margin-top: 20px !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .9rem;
  color: var(--red);
  text-align: right;
  font-style: italic;
  border-top: 1px solid #eee;
  padding-top: 16px;
}

/* Footer LinkedIn */
.footer-linkedin {
  display: inline-flex;
  align-items: center;
  color: #0a66c2;
  margin-top: 12px;
  transition: color .2s;
}
.footer-linkedin:hover { color: #004182; }

/* Actualités LinkedIn banner */
.actu-linkedin-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f0f7ff;
  border: 1px solid #d0e3f7;
  border-radius: 12px;
  padding: 16px 24px;
  margin-bottom: 32px;
  color: #0a66c2;
}
.actu-linkedin-banner div {
  flex: 1;
}
.actu-linkedin-banner strong {
  display: block;
  font-size: 1rem;
  color: #0a66c2;
}
.actu-linkedin-banner span {
  font-size: .85rem;
  color: #555;
}
.actu-linkedin-btn {
  display: inline-block;
  background: #0a66c2;
  color: #fff !important;
  padding: 8px 24px;
  border-radius: 24px;
  font-weight: 600;
  font-size: .9rem;
  white-space: nowrap;
  transition: background .2s;
}
.actu-linkedin-btn:hover { background: #004182; }
@media (max-width: 600px) {
  .actu-linkedin-banner { flex-direction: column; text-align: center; }
}

/* ===== ANIMATIONS ===== */
.stat-card, .pillar, .sig-card, .actu-card {
  transition: transform .25s, box-shadow .25s;
}
.stat-card:hover, .pillar:hover { transform: translateY(-2px); }
.sig-card:hover img { border-color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 42px; }
  .hero-image { max-width: 440px; margin: 0 auto; }
  .hero p { margin: 0 auto 28px; }
  .hero-buttons { justify-content: center; }
  .hero-kicker { justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .home-ambition-inner { grid-template-columns: 1fr; gap: 30px; }
  .home-ambition-points { grid-template-columns: 1fr; }
  .mission-layout { grid-template-columns: 1fr; }
  .pillars-row { grid-template-columns: repeat(2, 1fr); }
  .genese-inner { grid-template-columns: 1fr; }
  .sig-header { grid-template-columns: 1fr; }
  .sig-grid { grid-template-columns: repeat(2, 1fr); }
  .actu-top { grid-template-columns: 1fr; }
  .actu-grid { grid-template-columns: 1fr 1fr; }
  .resource-grid, .interview-grid, .logo-grid, .name-grid, .assoc-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .facts-grid, .study-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { margin: 0 16px; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 70px; left: 0; right: 0;
    background: #fff; padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .hero-kicker { margin-bottom: 12px; }
  .hero h1 { font-size: 2.45rem; margin-bottom: 18px; }
  .hero-inner { gap: 26px; padding: 34px 20px 36px; }
  .hero p { font-size: .92rem; line-height: 1.62; margin-bottom: 22px; }
  .hero-buttons { align-items: stretch; flex-direction: column; gap: 10px; }
  .hero-buttons .btn-hero-primary { padding: 12px 24px; }
  .hero-buttons .btn-hero-secondary { padding: 8px 0; }
  .hero-buttons .btn-hero-primary,
  .hero-buttons .btn-hero-secondary { width: 100%; justify-content: center; text-align: center; }
  .hero-image { max-width: 300px; }
  .hero-image img { aspect-ratio: 2/1; }
  .badge-10 { width: 88px; height: 88px; right: -8px; bottom: -10px; }
  .badge-10 .badge-top { font-size: .34rem; letter-spacing: 1.6px; }
  .badge-10 .badge-num { font-size: 1.45rem; }
  .badge-10 .badge-pct { font-size: .78rem; }
  .badge-10 .badge-bottom { font-size: .3rem; letter-spacing: 1px; }
  .home-ambition { padding: 36px 0; }
  .home-ambition h2 { font-size: 1.85rem; }
  .home-ambition-heading p,
  .home-ambition-point p { font-size: .92rem; line-height: 1.62; }
  .home-ambition-point { padding-left: 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .pillars-row { grid-template-columns: 1fr; }
  .sig-grid { grid-template-columns: 1fr; }
  .actu-grid, .page-content .actu-grid { grid-template-columns: 1fr !important; }
  .resource-grid, .interview-grid, .logo-grid, .name-grid, .press-grid, .assoc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-inner { text-align: center; justify-content: center; flex-direction: column; padding: 0 24px; }
  .cta-left { flex-direction: column; text-align: center; }
  .facts-grid, .study-grid { grid-template-columns: 1fr; }
  .page-hero h1, .page-hero h2 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .nav-wrap { padding: 10px 20px; }
  .hero h1 { font-size: 2.3rem; }
  .hero-kicker { font-size: .62rem; letter-spacing: 1.6px; }
  .stats-grid { grid-template-columns: 1fr; }
  .fiscal-nav-grid { grid-template-columns: repeat(3, 1fr); }
  .fiscal-highlights { flex-direction: column; }
  .fiscal-example-compare { grid-template-columns: 1fr; }
  .fiscal-card { padding: 24px; }
  .fiscal-card-header h3 { font-size: 1.15rem; }
  .mission-layout h2,
  .genese h2,
  .sig-header-text h2,
  .actu-top h2,
  .cta-inner h2 { font-size: 1.8rem; }
}
