/*
Theme Name: OIDT Theme
Theme URI: https://oidt-observatoire.com
Description: Observatoire International de la Diplomatie Territoriale
Author: OIDT
Version: 3.2
Text Domain: oidt
*/

/* ═══════════════════════════════════════
   DESIGN SYSTEM v3.2 — OIDT (charte PDF)
   Charte graphique officielle : Indigo #1a1464 + Or #e8a020 + Dégradé marque
═══════════════════════════════════════ */
:root {
  /* Palette officielle OIDT (charte PDF) */
  --navy-deep:    #10094a;   /* indigo profond — fond héro et navbar */
  --navy:         #1a1464;   /* marine-indigo principal — identité marque */
  --navy-mid:     #2d2db5;   /* indigo moyen — accents */
  --navy-light:   #eae8f5;   /* fond clair indigo */
  --gold:         #e8a020;   /* or ambré officiel */
  --gold-dark:    #c87820;
  --gold-light:   #fdf6dc;
  --orange:       #e85d04;   /* orange OIDT — labels Impact */
  --orange-mid:   #c84c03;
  --orange-light: #fff4e6;
  --rose:         #be185d;   /* rose/magenta du globe OIDT */
  --white:        #ffffff;
  --off-white:    #f8faff;
  --gray-bg:      #f0f4ff;
  --gray-mid:     #dde2f0;
  --gray:         #6b7280;
  --text:         #0d1420;
  --text-light:   #4b5563;

  /* Tokens */
  --radius:     10px;
  --radius-lg:  18px;
  --radius-xl:  28px;
  --shadow:     0 4px 24px rgba(26,20,100,.08);
  --shadow-md:  0 8px 40px rgba(26,20,100,.13);
  --shadow-lg:  0 16px 64px rgba(26,20,100,.18);
  --transition: all .25s cubic-bezier(.4,0,.2,1);

  /* Gradients */
  --grad-navy:   linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  --grad-gold:   linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 60%, #f5c842 100%);
  --grad-hero:   linear-gradient(135deg, #10094a 0%, #1a1464 45%, #2d2db5 100%);
  /* Dégradé signature marque : or → orange → magenta (bordures cartes PDF) */
  --grad-brand:  linear-gradient(135deg, #e8a020 0%, #e85d04 45%, #9b2d85 80%, #5a1abd 100%);
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Montserrat', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }

/* ═══════════════════════════════════════
   TYPOGRAPHIE
═══════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', system-ui, sans-serif;
  color: var(--navy);
  line-height: 1.15;
  font-weight: 800;
}
h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); letter-spacing: -.01em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p  { color: var(--text-light); margin-bottom: 1rem; line-height: 1.8; }

/* ═══════════════════════════════════════
   LAYOUT
═══════════════════════════════════════ */
.container    { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-sm { max-width: 840px;  margin: 0 auto; padding: 0 2rem; }
.section      { padding: 100px 0; }
.section-sm   { padding: 60px 0; }

.section-navy       { background: var(--navy); }
.section-deep       { background: var(--navy-deep); }
.section-light      { background: var(--off-white); }
.section-gray       { background: var(--gray-bg); }
.section-gold       { background: var(--gold-light); }

/* Grids */
.grid   { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2-gap     { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4rem; align-items: center; }
.grid-2-gap-top { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4rem; align-items: start; }
.prog-row       { margin-bottom: 5rem; }

/* Helpers */
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }

/* ═══════════════════════════════════════
   SECTION HEADING
═══════════════════════════════════════ */
.section-heading {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
}
.section-heading .eyebrow::before,
.section-heading .eyebrow::after {
  content: '';
  display: block;
  width: 28px; height: 1.5px;
  background: var(--gold);
  opacity: .6;
}
.section-heading h2 {
  color: var(--navy);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -.02em;
  margin-bottom: .8rem;
}
.section-heading .sub {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-navy .section-heading h2   { color: var(--white); }
.section-navy .section-heading .sub { color: rgba(255,255,255,.65); }
.section-navy .section-heading .eyebrow { color: var(--gold); }
.section-deep .section-heading h2   { color: var(--white); }
.section-deep .section-heading .sub { color: rgba(255,255,255,.6); }
.section-deep .section-heading .eyebrow { color: var(--gold); }

/* ═══════════════════════════════════════
   BOUTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 2rem;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-gold {
  background: var(--grad-gold);
  color: var(--navy-deep);
  border-color: transparent;
}
.btn-gold:hover {
  filter: brightness(1.08);
  color: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,160,32,.35);
}
.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-orange:hover {
  background: var(--orange-mid);
  color: var(--white);
  border-color: var(--orange-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-dark {
  background: var(--navy-deep);
  color: var(--white);
  border-color: var(--navy-deep);
}
.btn-dark:hover {
  background: var(--navy);
  color: var(--white);
}

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
  padding: 0;
}
#site-header.solid {
  background: var(--navy-deep);
  box-shadow: 0 2px 30px rgba(16,9,74,.4);
}
/* Si pas de hero (pages internes) → toujours solid */
body:not(.home) #site-header {
  background: var(--navy-deep);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  flex-shrink: 0;
  background: rgba(255,255,255,.96);
  border-radius: 8px;
  padding: 5px 12px;
  transition: opacity .25s ease;
}
.brand-logo-img {
  height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
}
.navbar-brand:hover { opacity: .88; }

.navbar-nav {
  display: flex;
  align-items: center;
  gap: .15rem;
}
.navbar-nav > li > a {
  color: rgba(255,255,255,.85);
  font-size: .76rem;
  font-weight: 600;
  padding: .45rem .7rem;
  border-radius: 6px;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: var(--transition);
  font-family: 'Montserrat', sans-serif;
}
.navbar-nav > li > a:hover,
.navbar-nav > li > a.active {
  color: var(--gold);
  background: rgba(232,160,32,.1);
}
.navbar-nav .dropdown { position: relative; }
.navbar-nav .dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: var(--navy-deep);
  border: 1px solid rgba(232,160,32,.2);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
  min-width: 240px;
  padding: .5rem;
  display: none;
  z-index: 100;
  box-shadow: var(--shadow-md);
}
.navbar-nav .dropdown:hover .dropdown-menu { display: block; }
.navbar-nav .dropdown-menu a {
  display: block;
  padding: .55rem .9rem;
  font-size: .76rem;
  color: rgba(255,255,255,.75);
  border-radius: 6px;
  text-transform: none;
  letter-spacing: 0;
  font-family: 'Inter', sans-serif;
}
.navbar-nav .dropdown-menu a:hover {
  background: rgba(232,160,32,.12);
  color: var(--gold);
}

.navbar-actions { display: flex; align-items: center; gap: .8rem; }

/* Language switcher */
.lang-switcher  { display: flex; align-items: center; gap: .2rem; }
.lang-switcher a {
  font-size: .72rem; font-weight: 700;
  padding: .22rem .5rem;
  border-radius: 4px;
  color: rgba(255,255,255,.6);
  letter-spacing: .07em;
  transition: var(--transition);
  border: 1.5px solid transparent;
  font-family: 'Montserrat', sans-serif;
}
.lang-switcher a:hover,
.lang-switcher a.current {
  border-color: var(--gold);
  color: var(--gold);
}
.lang-sep { color: rgba(255,255,255,.2); font-size: .8rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-size: 1.5rem;
  padding: .3rem;
}

/* ═══════════════════════════════════════
   HERO — Split layout premium
═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

/* Grid background pattern */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,160,32,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,160,32,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}
/* Glow accent */
.hero::after {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 60%; height: 120%;
  background: radial-gradient(ellipse at center, rgba(232,160,32,.07) 0%, transparent 65%);
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-content { }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(232,160,32,.12);
  border: 1px solid rgba(232,160,32,.3);
  border-radius: 100px;
  padding: .35rem .9rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-badge i { font-size: .8rem; }
.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -.03em;
  margin-bottom: 1.2rem;
  line-height: 1.1;
}
.hero h1 .accent { color: var(--gold); }
.hero .tagline {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 2.2rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 3.5rem; }
.hero-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,.1);
  margin-bottom: 2rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.hero-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: block;
}
.hero-stat-num em { font-style: normal; color: var(--gold); }
.hero-stat-label {
  font-size: .68rem;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .1em;
  display: block;
  margin-top: .35rem;
}

/* Hero deco — côté droit */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-globe-wrap {
  position: relative;
  width: 380px; height: 380px;
}
.hero-globe-circle {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 35% 40%, rgba(190,24,93,.15) 0%, rgba(26,20,100,.5) 60%, rgba(16,9,74,.8) 100%);
  border: 1px solid rgba(232,160,32,.2);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-globe-inner {
  font-size: 7rem;
  color: rgba(232,160,32,.25);
  animation: globe-spin 30s linear infinite;
}
@keyframes globe-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
/* Anneaux orbitaux */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232,160,32,.15);
  animation: ring-pulse 4s ease-in-out infinite;
}
.hero-ring-1 { width: 420px; height: 420px; top: -20px; left: -20px; }
.hero-ring-2 { width: 500px; height: 500px; top: -60px; left: -60px; animation-delay: -1.5s; }
.hero-ring-3 { width: 580px; height: 580px; top: -100px; left: -100px; animation-delay: -3s; }
@keyframes ring-pulse {
  0%, 100% { opacity: .4; transform: scale(1); }
  50%       { opacity: .1; transform: scale(1.02); }
}
/* Points géographiques flottants */
.hero-dot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(232,160,32,.6);
  animation: dot-pulse 2s ease-in-out infinite;
}
.hero-dot:nth-child(1) { top: 25%; left: 20%; animation-delay: 0s; }
.hero-dot:nth-child(2) { top: 50%; left: 60%; animation-delay: -.7s; background: var(--rose); box-shadow: 0 0 10px rgba(190,24,93,.6); }
.hero-dot:nth-child(3) { top: 70%; left: 35%; animation-delay: -1.4s; }
.hero-dot:nth-child(4) { top: 30%; left: 70%; animation-delay: -2.1s; background: var(--rose); box-shadow: 0 0 10px rgba(190,24,93,.6); }
@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.7); }
}

/* Ancien motif chevrons (conservé pour compatibilité) */
.hero-arrows { display: none; }

/* ═══════════════════════════════════════
   BANDEAU VALEURS
═══════════════════════════════════════ */
.values-strip {
  background: var(--navy-deep);
  border-top: 1px solid rgba(232,160,32,.15);
  border-bottom: 1px solid rgba(232,160,32,.15);
}
.values-strip-inner {
  display: flex;
  border-top: none;
}
.value-item {
  flex: 1;
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
  transition: var(--transition);
  position: relative;
}
.value-item:last-child { border-right: none; }
.value-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .3s ease;
}
.value-item:hover::after { width: 60%; }
.value-item:hover { background: rgba(232,160,32,.04); }
.value-item i {
  font-size: 1.6rem;
  color: var(--gold);
  display: block;
  margin-bottom: .7rem;
}
.value-item .vi-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
  display: block;
}
.value-item .vi-sub {
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  display: block;
  margin-top: .3rem;
}

/* ═══════════════════════════════════════
   PAGE HERO (pages internes)
═══════════════════════════════════════ */
.page-hero {
  background: var(--grad-hero);
  padding: 130px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,160,32,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,160,32,.035) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 50px;
  background: var(--white);
  clip-path: polygon(0 80%, 100% 0, 100% 100%, 0 100%);
}
body:not(.home) .page-hero::after { background: var(--white); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
  font-family: 'Montserrat', sans-serif;
}
.page-hero-eyebrow::before {
  content: '';
  display: block;
  width: 22px; height: 1.5px;
  background: var(--gold);
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -.02em;
  margin-bottom: .6rem;
}
.page-hero .page-desc {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  margin: 0;
  max-width: 560px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1.2rem;
  font-size: .76rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.45); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,.2); font-size: .7rem; }
.breadcrumb .current { color: rgba(255,255,255,.85); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }

/* ═══════════════════════════════════════
   CARTES — 3 variantes
═══════════════════════════════════════ */

/* Carte standard */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-mid);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--grad-brand);
  border-radius: 2px 0 0 2px;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card h3, .card h4 { color: var(--navy); margin-bottom: .5rem; }
.card p { font-size: .9rem; margin: 0; }
.card .impact {
  margin-top: 1rem;
  font-weight: 700;
  font-size: .78rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Carte axe */
.card-axe {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-mid);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card-axe::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.card-axe:hover::after { transform: scaleX(1); }
.card-axe:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232,160,32,.3);
}
.card-axe .axe-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--navy-light);
  line-height: 1;
  margin-bottom: .5rem;
}
.card-axe h3 {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .7rem;
  text-transform: none;
  letter-spacing: 0;
}
.card-axe p { font-size: .88rem; margin: 0; }

/* Carte méthodologie (gradient border) */
.card-method {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.card-method::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: var(--grad-brand);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.card-method:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card-method .num {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: .7rem;
}
.card-method h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: .5rem; }
.card-method p  { font-size: .88rem; margin: 0; }

/* ═══════════════════════════════════════
   MISSION BLOCK
═══════════════════════════════════════ */
.mission-block {
  background: var(--gold-light);
  border-left: 5px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 2rem 2.2rem;
}
.mission-block h3 {
  color: var(--navy);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .8rem;
}
.mission-block p  { color: var(--text); margin: 0; font-size: .95rem; }
.mission-block ul { margin-top: .8rem; }
.mission-block ul li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy);
  padding: .35rem 0;
  font-family: 'Inter', sans-serif;
}
.mission-block ul li::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   STATS
═══════════════════════════════════════ */
.stats-row {
  display: flex;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 2rem 1.2rem;
  border-right: 1px solid var(--gray-mid);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  display: block;
}
.stat-num em { font-style: normal; color: var(--gold); font-size: 1.4rem; }
.stat-label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray);
  display: block;
  margin-top: .4rem;
}

/* Stats section full-width */
.impact-strip {
  background: var(--navy-deep);
  border-top: 2px solid rgba(232,160,32,.2);
  border-bottom: 2px solid rgba(232,160,32,.2);
  padding: 60px 0;
}
.impact-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.impact-item {
  text-align: center;
  padding: 1.5rem 2rem;
  border-right: 1px solid rgba(232,160,32,.12);
}
.impact-item:last-child { border-right: none; }
.impact-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.impact-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: .5rem;
  display: block;
}

/* ═══════════════════════════════════════
   TIMELINE (méthodologie)
═══════════════════════════════════════ */
.timeline {
  position: relative;
  padding-left: 3rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 1rem; bottom: 1rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--rose), var(--navy));
}
.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -3.3rem;
  top: .35rem;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-num {
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .3rem;
}
.timeline-item h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.timeline-item p  { font-size: .9rem; margin: 0; }

/* ═══════════════════════════════════════
   NEWS / BLOG
═══════════════════════════════════════ */
.post-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-mid);
  transition: var(--transition);
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.post-card:hover .post-thumb img { transform: scale(1.05); }
.post-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--navy-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: var(--navy);
}
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.post-body { padding: 1.5rem; }
.post-meta { font-size: .72rem; color: var(--gray); text-transform: uppercase; letter-spacing: .07em; margin-bottom: .5rem; }
.post-body h3 { font-size: .98rem; margin-bottom: .5rem; text-transform: none; letter-spacing: 0; color: var(--navy); }
.post-body p  { font-size: .85rem; margin-bottom: .8rem; }
.post-read { font-size: .76rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .06em; }
.post-read:hover { color: var(--gold-dark); }

/* ═══════════════════════════════════════
   TEAM
═══════════════════════════════════════ */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-mid);
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 100%; aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--navy-light), #c8d0ef);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; color: var(--navy);
  overflow: hidden;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-info {
  padding: 1.4rem;
  border-top: 3px solid var(--gold);
}
.team-info h4 { font-size: .98rem; color: var(--navy); margin-bottom: .2rem; text-transform: none; letter-spacing: 0; }
.team-role { font-size: .76rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .06em; margin: 0; }

/* ═══════════════════════════════════════
   PARTNERS
═══════════════════════════════════════ */
.partners-grid { display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center; justify-content: center; }
.partner-item {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 1.4rem 2rem;
  display: flex; align-items: center; justify-content: center;
  min-width: 150px;
  transition: var(--transition);
  opacity: .6; filter: grayscale(40%);
}
.partner-item:hover { opacity: 1; filter: none; box-shadow: var(--shadow); border-color: var(--gold); }
.partner-placeholder { font-weight: 700; font-size: .85rem; color: var(--navy); text-align: center; }

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact-info-item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.5rem;
}
.ci-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--gold-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--gold);
  border: 1px solid rgba(232,160,32,.25);
}
.ci-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gray); margin-bottom: .2rem; }
.ci-value { font-size: .95rem; font-weight: 600; color: var(--text); }

/* ═══════════════════════════════════════
   FLUENT FORM
═══════════════════════════════════════ */
.fluentform input,
.fluentform textarea,
.fluentform select {
  border: 1.5px solid var(--gray-mid) !important;
  border-radius: var(--radius) !important;
  padding: .75rem 1rem !important;
  font-family: 'Inter', sans-serif !important;
  font-size: .9rem !important;
  transition: var(--transition) !important;
  width: 100% !important;
  background: var(--white) !important;
}
.fluentform input:focus,
.fluentform textarea:focus,
.fluentform select:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(232,160,32,.12) !important;
  outline: none !important;
}
.fluentform .ff-btn {
  background: var(--grad-gold) !important;
  border-color: transparent !important;
  border-radius: 6px !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 700 !important;
  font-size: .82rem !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  padding: .8rem 2rem !important;
  color: var(--navy-deep) !important;
  transition: var(--transition) !important;
}
.fluentform .ff-btn:hover {
  filter: brightness(1.08) !important;
}

/* ═══════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════ */
.cta-section {
  background: var(--grad-navy);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(232,160,32,.1) 0%, transparent 60%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); max-width: 620px; margin: 0 auto 1rem; letter-spacing: -.02em; }
.cta-section p  { color: rgba(255,255,255,.65); max-width: 540px; margin: 0 auto 2.2rem; }

/* ═══════════════════════════════════════
   RESULT BANNER
═══════════════════════════════════════ */
.result-banner {
  background: var(--grad-navy);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: 3rem;
  border: 1px solid rgba(232,160,32,.2);
}
.result-banner h3 { color: var(--white); font-size: 1.2rem; margin-bottom: .5rem; }
.result-banner p  { color: rgba(255,255,255,.65); margin: 0; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer-newsletter {
  background: var(--navy);
  padding: 48px 0;
  border-top: 2px solid rgba(232,160,32,.2);
}
.footer-newsletter .container {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.footer-nl-text { flex: 1; }
.footer-nl-text h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: .3rem;
  letter-spacing: -.01em;
}
.footer-nl-text p { color: rgba(255,255,255,.55); margin: 0; font-size: .88rem; }
.footer-nl-form {
  flex: 1;
  display: flex;
  gap: .6rem;
}
.footer-nl-form input {
  flex: 1;
  padding: .75rem 1.2rem;
  border-radius: 6px;
  border: 1px solid rgba(232,160,32,.25);
  background: rgba(255,255,255,.07);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  outline: none;
  transition: var(--transition);
}
.footer-nl-form input::placeholder { color: rgba(255,255,255,.35); }
.footer-nl-form input:focus { border-color: var(--gold); background: rgba(255,255,255,.1); }

#site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.55);
  padding: 64px 0 0;
  border-top: 1px solid rgba(232,160,32,.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand-logo {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
  opacity: .9;
}
.footer-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: -.01em;
}
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.7; margin: .8rem 0 1.4rem; }
.footer-social { display: flex; gap: .5rem; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45);
  font-size: .9rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,.06);
}
.footer-social a:hover { background: var(--gold); color: var(--navy-deep); transform: translateY(-2px); border-color: var(--gold); }
.footer-col h4 {
  color: var(--white);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.footer-links li { margin-bottom: .6rem; }
.footer-links a {
  color: rgba(255,255,255,.45);
  font-size: .84rem;
  transition: var(--transition);
  display: flex; align-items: center; gap: .4rem;
}
.footer-links a:hover { color: var(--gold); transform: translateX(4px); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: .7rem;
  margin-bottom: .8rem; font-size: .83rem;
  color: rgba(255,255,255,.45);
}
.footer-contact-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  padding: 1.4rem 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .8rem;
}
.footer-bottom p { font-size: .75rem; margin: 0; color: rgba(255,255,255,.25); }
.footer-bottom a { color: rgba(255,255,255,.3); font-size: .75rem; }
.footer-bottom a:hover { color: var(--gold); }

/* ═══════════════════════════════════════
   POST CONTENT
═══════════════════════════════════════ */
.post-content { max-width: 780px; margin: 0 auto; padding: 64px 1.5rem; }
.post-content h2, .post-content h3 { color: var(--navy); margin: 2rem 0 .8rem; }
.post-content p  { font-size: 1rem; line-height: 1.85; color: var(--text-light); }
.post-content img { border-radius: var(--radius-lg); margin: 1.5rem 0; }
.post-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 1.2rem 1.8rem;
  background: var(--gold-light);
  margin: 1.5rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.post-content blockquote p { color: var(--navy); font-style: italic; margin: 0; font-weight: 500; }

/* ═══════════════════════════════════════
   SCROLL TOP
═══════════════════════════════════════ */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--grad-gold);
  color: var(--navy-deep);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(232,160,32,.4);
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  z-index: 900;
  font-size: 1rem;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { filter: brightness(1.1); transform: translateY(-3px); }

/* ═══════════════════════════════════════
   FADE IN
═══════════════════════════════════════ */
[data-fade] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
[data-fade].visible { opacity: 1; transform: none; }

/* Badge / Pill */
.badge-gold {
  display: inline-block;
  background: var(--gold-light);
  color: var(--gold-dark);
  border: 1px solid rgba(232,160,32,.3);
  border-radius: 100px;
  padding: .25rem .8rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.badge-navy {
  display: inline-block;
  background: var(--navy-light);
  color: var(--navy);
  border-radius: 100px;
  padding: .25rem .8rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.badge-teal { /* compat single.php */
  display: inline-block;
  background: var(--gold-light);
  color: var(--gold-dark);
  border-radius: 100px;
  padding: .3rem .9rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════
   RESPONSIVE — 5 BREAKPOINTS
═══════════════════════════════════════ */

/* ── 1024px ── */
@media (max-width: 1024px) {
  .hero .container  { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual      { display: none; }
  .hero-content     { max-width: 100%; }
  .grid-4           { grid-template-columns: repeat(2,1fr); }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .impact-strip .container { grid-template-columns: repeat(2,1fr); }
  .footer-newsletter .container { flex-direction: column; gap: 1.5rem; }
}

/* ── 768px ── */
@media (max-width: 768px) {
  body { font-size: 15px; }
  .section    { padding: 64px 0; }
  .section-sm { padding: 40px 0; }
  .container  { padding: 0 1.2rem; }

  h2 { letter-spacing: -.01em; }

  /* Navbar */
  .navbar       { height: 68px; }
  .brand-logo-img { height: 38px; }
  .navbar-nav   { display: none; }
  .nav-toggle   { display: block; }

  .navbar-nav.open {
    display: flex; flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0; bottom: 0;
    background: var(--navy-deep);
    border-top: 2px solid var(--gold);
    padding: 1.2rem;
    overflow-y: auto;
    z-index: 999;
    box-shadow: var(--shadow-lg);
    gap: .2rem;
  }
  .navbar-nav.open > li > a {
    display: block; width: 100%;
    padding: .9rem 1rem;
    font-size: .85rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
    border-radius: 0;
    color: rgba(255,255,255,.8);
  }
  .navbar-nav.open > li:last-child > a { border-bottom: none; }
  .navbar-nav .dropdown-menu {
    position: static; box-shadow: none; display: none;
    background: rgba(255,255,255,.05);
    margin: .3rem 0;
    border-top: none; border-radius: 8px; padding: .4rem;
    border-color: rgba(232,160,32,.2);
  }
  .navbar-nav .dropdown.open .dropdown-menu { display: block; }
  .navbar-nav .dropdown-menu a { color: rgba(255,255,255,.7); font-size: .82rem; }

  /* Hero */
  .hero { min-height: auto; padding: 100px 0 60px; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero h1 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .hero-stats { grid-template-columns: repeat(3,1fr); gap: .8rem; }
  .hero-stat-num { font-size: 1.6rem; }
  .hero-stat-label { font-size: .62rem; }

  /* Page hero */
  .page-hero { padding: 105px 0 55px; }
  .page-hero::after { height: 35px; }
  .page-hero h1 { font-size: 1.8rem; }

  /* Values */
  .values-strip-inner { flex-wrap: wrap; }
  .value-item { flex: 1 1 48%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.05); }

  /* Section heading */
  .section-heading { margin-bottom: 2.2rem; }
  .section-heading h2 { font-size: 1.4rem; }
  .section-heading .sub { font-size: .9rem; }

  /* Grids */
  .grid-2, .grid-3  { grid-template-columns: 1fr; gap: 1.2rem; }
  .grid-2-gap, .grid-2-gap-top { grid-template-columns: 1fr; gap: 2rem; }
  .grid-4           { grid-template-columns: repeat(2,1fr); gap: 1rem; }
  .prog-row         { margin-bottom: 2.5rem; }

  /* Stats */
  .stats-row { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--gray-mid); padding: 1.4rem; }
  .stat-item:last-child { border-bottom: none; }
  .stat-num { font-size: 2rem; }

  /* Impact strip */
  .impact-strip .container { grid-template-columns: repeat(2,1fr); }
  .impact-num { font-size: 2.2rem; }

  /* Footer */
  #site-footer { padding: 48px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-nl-form { flex-direction: column; }

  /* CTA */
  .cta-section { padding: 56px 0; }

  /* Cards */
  .card { padding: 1.5rem; }
  .card-axe { padding: 1.5rem; }
  .card-method { padding: 2rem 1.4rem; }
  .card-method .num { font-size: 2.8rem; }

  /* Scroll top */
  .scroll-top { bottom: 1.2rem; right: 1.2rem; width: 40px; height: 40px; }
}

/* ── 600px ── */
@media (max-width: 600px) {
  .value-item { flex: 1 1 48%; }
  .hero-stats { grid-template-columns: repeat(3,1fr); gap: .6rem; }
  .hero-stat-num { font-size: 1.4rem; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .impact-strip .container { grid-template-columns: repeat(2,1fr); }
  .breadcrumb { flex-wrap: wrap; }
}

/* ── 480px ── */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .navbar { height: 62px; }
  .navbar-nav.open { top: 62px; }
  .brand-logo-img { height: 32px; }
  .hero { padding: 84px 0 50px; }
  .hero h1 { font-size: 1.65rem; }
  .hero-stats { grid-template-columns: repeat(2,1fr); gap: .6rem; }
  .value-item { flex: 1 1 100%; }
  .grid-4 { grid-template-columns: 1fr; }
  .page-hero { padding: 90px 0 45px; }
  .page-hero h1 { font-size: 1.5rem; }
  .section-heading h2 { font-size: 1.2rem; }
  .cta-section div[style] { flex-direction: column !important; }
  .cta-section .btn { width: 100%; justify-content: center; }
  .impact-strip .container { grid-template-columns: 1fr 1fr; }
  .impact-num { font-size: 1.8rem; }
  .footer-bottom div { flex-direction: column; gap: .4rem; }
}

/* ── 360px ── */
@media (max-width: 360px) {
  body { font-size: 14px; }
  .navbar { height: 58px; }
  .navbar-nav.open { top: 58px; }
  .hero { padding: 76px 0 44px; }
  .hero h1 { font-size: 1.4rem; }
  .section { padding: 50px 0; }
  .container { padding: 0 .9rem; }
}
