:root {
  /* Couleurs principales */
  --bg: #f5f4f0;
  --bg-blue: #eaf1f9;
  --bg-alt: #ebeae5;
  --bg-deep: #e3e1da;
  --ink: #0f0f0f;
  --ink-soft: #4a4a4a;
  --ink-mute: #8a8a85;
  --line: #d8d6cf;
  --line-blue: #c9d8e8;
  --line-soft: #e3e1da;
  --line-dark: rgba(255,255,255,0.12);
  --accent: #185FA5;
  --accent-hover: #0d3f73;
  --accent-soft: #b5d4f4;
  --paper: #ffffff;

  /* Couleurs domaines */
  --domain-num: #185FA5;
  --domain-energy: #c2410c;
  --domain-gov: #166534;

  /* Typographie */
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
  --mono: 'JetBrains Mono', monospace;

  /* Layout */
  --container: 1280px;
  --gutter: 48px;
  --section-py: 120px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ============ HEADER ============ */
.topbar {
  border-bottom: 0.5px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 244, 240, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 60px;
}
.nav { justify-content: flex-end; }
.brand { display: flex; align-items: baseline; gap: 12px; }
.brand-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.brand-mark {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 500;
}

.nav { display: flex; gap: 36px; justify-content: center; align-items: center; }
.nav-item { position: relative; }
.nav-item > a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.25s var(--ease);
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-item > a:hover { color: var(--ink); }
.nav-item > a.active { color: var(--ink); }
.nav-item > a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1.5px;
  background: var(--accent);
}
.nav-item .chevron { width: 10px; height: 10px; transition: transform 0.25s var(--ease); }
.nav-item:hover .chevron { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: -20px;
  background: var(--paper);
  border: 0.5px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  min-width: 300px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.3s var(--ease);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  transition: background 0.15s;
}
.nav-dropdown a:hover { background: var(--bg-alt); }
.nav-dropdown a .desc {
  display: block;
  font-size: 11px;
  color: var(--ink-mute);
  font-weight: 400;
  margin-top: 3px;
  letter-spacing: 0;
}
.nav-dropdown a .dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}
.dot-num { background: var(--domain-num); }
.dot-energy { background: var(--domain-energy); }
.dot-gov { background: var(--domain-gov); }

.topbar-meta { display: flex; align-items: center; gap: 20px; }
.lang-switch {
  display: flex;
  gap: 2px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
}
.lang-switch a { color: var(--ink-mute); padding: 4px 6px; transition: color 0.2s; }
.lang-switch a.active { color: var(--ink); }
.lang-switch a:hover { color: var(--ink); }
.lang-sep { color: var(--line); }

/* ============ HERO ============ */
.hero {
  position: relative;
  border-bottom: 0.5px solid var(--line);
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(245, 244, 240, 0.98) 0%,
      rgba(245, 244, 240, 0.92) 30%,
      rgba(245, 244, 240, 0.5) 55%,
      rgba(245, 244, 240, 0.1) 80%,
      rgba(245, 244, 240, 0) 100%
    );
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 96px var(--gutter);
  width: 100%;
}
.hero-content { max-width: 760px; }

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--accent); }

.hero-title {
  font-family: var(--serif);
  font-size: clamp(40px, 6.2vw, 78px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.028em;
  color: var(--ink);
  margin-bottom: 36px;
}
.hero-title em { font-style: italic; font-weight: 300; color: var(--accent); }

.hero-lede {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 600px;
  margin-bottom: 56px;
  letter-spacing: -0.005em;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

/* Boutons pill — système contextuel */
.btn-primary {
  background: var(--ink);
  color: var(--bg);
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s var(--ease);
  border: 1px solid var(--ink);
  letter-spacing: 0.005em;
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(24, 95, 165, 0.18);
}
.btn-primary svg { width: 13px; height: 13px; transition: transform 0.3s var(--ease); }
.btn-primary:hover svg { transform: translate(2px, -2px); }

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--bg);
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--accent);
  transition: all 0.3s var(--ease);
  letter-spacing: 0.005em;
}
.btn-pill:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 63, 115, 0.22);
}
.btn-pill svg { width: 12px; height: 12px; transition: transform 0.3s var(--ease); }
.btn-pill:hover svg { transform: translateX(3px); }

.btn-ghost {
  color: var(--ink);
  padding: 13px 0;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--ink);
  transition: all 0.25s var(--ease);
}
.btn-ghost:hover { color: var(--accent); border-color: var(--accent); }

.hero-stats {
  border-top: 0.5px solid var(--line);
  padding-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  max-width: 760px;
}
.hero-stat-num {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.hero-stat-num em { font-style: normal; color: var(--accent); }
.hero-stat-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
  text-transform: uppercase;
  line-height: 1.45;
  font-weight: 500;
}

/* ============ MANIFESTE — fond bleu pâle ============ */
.manifesto {
  background: var(--bg-blue);
  padding: var(--section-py) var(--gutter);
  border-bottom: 0.5px solid var(--line-blue);
}
.manifesto-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 36px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
}
.manifesto-eyebrow::before,
.manifesto-eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.manifesto-quote { margin: 0 0 40px 0; padding: 0; border: none; }
.manifesto-quote p {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.012em;
  color: var(--ink);
  font-style: normal;
  margin: 0;
}
.manifesto-quote em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.manifesto-author {
  margin-bottom: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.manifesto-author-name {
  color: var(--ink);
  font-weight: 500;
}
.manifesto-author-sep { color: var(--line-blue); }

/* ============ PUBLICATIONS — fond ivoire ============ */
.section {
  padding: var(--section-py) var(--gutter);
  border-bottom: 0.5px solid var(--line);
  background: var(--bg);
}
.section-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
  margin-bottom: 64px;
}
.section-head-title h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.024em;
  color: var(--ink);
  margin-top: 12px;
}
.section-head-title h2 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}
.section-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 500;
}
.section-head-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: color 0.25s var(--ease);
}
.section-head-link:hover { color: var(--accent); }
.section-head-link svg { width: 11px; height: 11px; transition: transform 0.25s var(--ease); }
.section-head-link:hover svg { transform: translateX(4px); }

/* Filter bar (page liste) */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
  padding: 18px 24px;
  background: var(--paper);
  border: 0.5px solid var(--line);
  border-radius: 12px;
  flex-wrap: wrap;
}
.filter-group { display: flex; align-items: center; gap: 8px; }
.filter-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-right: 4px;
  font-weight: 500;
}
.filter-chip {
  padding: 7px 16px;
  border: 0.5px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  background: var(--bg);
}
.filter-chip:hover { border-color: var(--ink); color: var(--ink); }
.filter-chip.active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

/* Pubs grid — épuré style Global Center */
.pubs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.pub-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  background: transparent;
  transition: transform 0.4s var(--ease);
}
.pub-card:hover { transform: translateY(-4px); }

.pub-card-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--bg-alt);
  border-radius: 4px;
  margin-bottom: 24px;
  position: relative;
}
.pub-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.pub-card:hover .pub-card-image img { transform: scale(1.04); }

.pub-card-image::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--card-color, var(--accent));
  box-shadow: 0 0 0 4px rgba(255,255,255,0.9);
}
.pub-card.pub-numerique { --card-color: var(--domain-num); }
.pub-card.pub-energie { --card-color: var(--domain-energy); }
.pub-card.pub-gouvernance { --card-color: var(--domain-gov); }

.pub-card-body { padding: 0; }

.pub-domain-marker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--card-color, var(--ink-mute));
  margin-bottom: 14px;
  font-weight: 500;
}

.pub-tags-row { display: none; }

.pub-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin-bottom: 14px;
  transition: color 0.25s var(--ease);
}
.pub-card:hover .pub-title { color: var(--card-color, var(--accent)); }

.pub-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.pub-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  text-transform: uppercase;
  display: flex;
  gap: 16px;
  font-weight: 500;
}

/* ============ PROJET PHARE GABONHUB — fond noir ============ */
.featured-project {
  padding: var(--section-py) var(--gutter);
  border-bottom: 0.5px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
}
.featured-inner { max-width: var(--container); margin: 0 auto; }
.featured-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent-soft);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.live-dot {
  position: relative;
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
}
.live-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #22c55e;
  opacity: 0.3;
  animation: pulse 2s infinite ease-out;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(2.5); opacity: 0; }
}
.featured-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5.6vw, 76px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.028em;
  margin-bottom: 36px;
  color: var(--bg);
}
.featured-title em { font-style: italic; color: var(--accent-soft); font-weight: 300; }

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 96px;
  align-items: center;
}
.featured-desc {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.55;
  color: rgba(245, 244, 240, 0.82);
  font-weight: 300;
  margin-bottom: 40px;
}
.featured-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 48px;
  margin-bottom: 44px;
  padding-top: 32px;
  border-top: 0.5px solid var(--line-dark);
}
.featured-stat-num {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  color: var(--bg);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.012em;
}
.featured-stat-num em { font-style: normal; color: var(--accent-soft); }
.featured-stat-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(245, 244, 240, 0.55);
  text-transform: uppercase;
  font-weight: 500;
}
.featured-cta-row { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

/* Bouton inversé pour fond noir */
.featured-project .btn-primary {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
}
.featured-project .btn-primary:hover {
  background: var(--accent-soft);
  border-color: var(--accent-soft);
  color: var(--ink);
}
.featured-project .btn-ghost {
  color: var(--bg);
  border-bottom-color: rgba(245,244,240,0.6);
}
.featured-project .btn-ghost:hover { color: var(--accent-soft); border-color: var(--accent-soft); }

/* Mock viz */
.featured-visual {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid var(--line-dark);
  border-radius: 16px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.viz-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 0.5px solid var(--line-dark);
}
.viz-title {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--bg);
}
.viz-time {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(245,244,240,0.5);
  letter-spacing: 0.1em;
  font-weight: 500;
}
.viz-bars {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  gap: 3px;
  align-items: end;
  height: 160px;
  margin-bottom: 28px;
}
.viz-bar {
  background: rgba(181, 212, 244, 0.4);
  border-radius: 2px 2px 0 0;
  transition: background 0.3s;
}
.viz-bar.peak { background: var(--accent-soft); }
.viz-axis {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 9px;
  color: rgba(245,244,240,0.4);
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}
.viz-legend {
  display: flex;
  gap: 24px;
  padding-top: 24px;
  border-top: 0.5px solid var(--line-dark);
}
.viz-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(245,244,240,0.65);
  letter-spacing: 0.06em;
}
.viz-legend-swatch { width: 10px; height: 10px; border-radius: 2px; }

/* ============ FOOTER — version ivoire ============ */
.footer {
  background: var(--bg);
  color: var(--ink);
  padding: 96px var(--gutter) 48px;
  border-top: 0.5px solid var(--line);
}
.footer-inner { max-width: var(--container); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 0.5px solid var(--line);
  margin-bottom: 40px;
}
.footer-brand-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 18px;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.footer-brand-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 22px;
  max-width: 340px;
}
.footer-brand-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-weight: 500;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 13px;
  color: var(--ink-soft);
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-weight: 500;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  :root { --section-py: 80px; --gutter: 32px; }
  .topbar-inner { grid-template-columns: auto 1fr; }
  .nav { display: none; }
  .hero { min-height: 60vh; }
  .hero-bg img { object-position: center; }
  .hero-bg::after { background: linear-gradient(180deg, rgba(245,244,240,0.95) 0%, rgba(245,244,240,0.92) 100%); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .pubs-grid { grid-template-columns: 1fr; gap: 48px; }
  .featured-grid { grid-template-columns: 1fr; gap: 56px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  .section-head { grid-template-columns: 1fr; gap: 16px; align-items: start; }
}
@media (max-width: 640px) {
  :root { --gutter: 24px; --section-py: 64px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stat-num { font-size: 30px; }
  .featured-stats { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .filter-bar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .manifesto-author { flex-direction: column; gap: 4px; }
  .manifesto-author-sep { display: none; }
}

/* ============ ANIMATIONS ============ */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeIn 0.9s var(--ease) forwards;
}
@keyframes fadeIn { to { opacity: 1; transform: translateY(0); } }
.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.22s; }
.fade-in:nth-child(3) { animation-delay: 0.34s; }
.fade-in:nth-child(4) { animation-delay: 0.46s; }

/* Scroll reveal pour les sections */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============ PAGE EN CONSTRUCTION ============ */
.under-construction {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px var(--gutter) 96px;
  background: var(--bg);
  border-bottom: 0.5px solid var(--line);
}
.under-construction-inner {
  max-width: 720px;
  text-align: center;
}
.uc-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 36px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
}
.uc-eyebrow::before,
.uc-eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.uc-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 28px;
}
.uc-lede {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 56px;
  letter-spacing: -0.005em;
}
.uc-status {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: var(--bg-alt);
  border-radius: 999px;
  margin-bottom: 56px;
}
.uc-status-dot {
  position: relative;
  width: 8px;
  height: 8px;
  background: #d4a017;
  border-radius: 50%;
  flex-shrink: 0;
}
.uc-pulse {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: #d4a017;
  opacity: 0.3;
  animation: pulse 2.4s infinite ease-out;
}
.uc-status-text { text-align: left; }
.uc-status-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 2px;
}
.uc-status-detail {
  font-size: 12px;
  color: var(--ink-mute);
  font-family: var(--sans);
}
.uc-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .under-construction { padding: 80px var(--gutter) 64px; }
  .uc-status { flex-direction: column; gap: 8px; padding: 16px 24px; }
  .uc-status-text { text-align: center; }
}


/* ============ PAGE À PROPOS ============ */
.about-hero {
  background: var(--bg-blue);
  padding: 140px var(--gutter) 120px;
  border-bottom: 0.5px solid var(--line-blue);
}
.about-hero-inner {
  max-width: 920px;
  margin: 0 auto;
}
.about-hero .section-eyebrow {
  margin-bottom: 32px;
}
.about-hero-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5.4vw, 68px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 36px;
}
.about-hero-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}
.about-hero-lede {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 300;
  letter-spacing: -0.005em;
  max-width: 780px;
}

.about-section {
  padding: var(--section-py) var(--gutter);
  border-bottom: 0.5px solid var(--line);
  background: var(--bg);
}
.about-section-alt {
  background: var(--bg);
}
.about-section-inner {
  max-width: 920px;
  margin: 0 auto;
}
.about-section .section-eyebrow {
  margin-bottom: 36px;
}
.about-section-content {
  max-width: 760px;
}
.about-lead-paragraph {
  font-family: var(--serif);
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin-bottom: 36px;
}
.about-lead-paragraph em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.about-paragraph {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 22px;
}
.about-paragraph:last-child { margin-bottom: 0; }

/* Piliers */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.pillar-card {
  background: var(--paper);
  border: 0.5px solid var(--line);
  border-radius: 12px;
  padding: 36px;
  display: flex;
  flex-direction: column;
}
.pillar-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 500;
}
.pillar-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.012em;
}
.pillar-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* Équipe */
.about-team {
  background: var(--bg-blue);
  padding: var(--section-py) var(--gutter);
  border-bottom: 0.5px solid var(--line-blue);
}
.about-team-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.about-team-head {
  max-width: 760px;
  margin-bottom: 64px;
}
.about-team-head .section-eyebrow {
  margin-bottom: 28px;
}
.about-team-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin-bottom: 28px;
}
.about-team-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}
.about-team-lede {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 300;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.team-card {
  background: var(--paper);
  border: 0.5px solid var(--line-blue);
  border-radius: 12px;
  padding: 36px;
  display: flex;
  flex-direction: column;
}
.team-card-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.012em;
}
.team-card-role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 500;
}
.team-card-bio {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 24px;
  flex-grow: 1;
}
.team-card-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-weight: 500;
  padding-top: 18px;
  border-top: 0.5px solid var(--line-blue);
}

.about-team-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 36px;
  background: rgba(255,255,255,0.5);
  border: 0.5px solid var(--line-blue);
  border-radius: 12px;
  flex-wrap: wrap;
}
.about-team-cta-text {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  font-weight: 400;
  margin: 0;
}

@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: 1fr; gap: 16px; }
  .team-grid { grid-template-columns: 1fr; }
  .about-team-cta { flex-direction: column; align-items: flex-start; gap: 20px; }
}
@media (max-width: 640px) {
  .about-hero { padding: 80px var(--gutter) 64px; }
  .about-hero-lede { font-size: 17px; }
  .pillar-card, .team-card { padding: 28px; }
}


/* ============ PAGE À PROPOS — STRUCTURE GLOBAL CENTER ============ */
.about-hero {
  background: var(--bg-blue);
  padding: 140px var(--gutter) 80px;
  border-bottom: 0.5px solid var(--line-blue);
}
.about-hero-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.about-hero .section-eyebrow {
  margin-bottom: 32px;
}
.about-hero-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5.4vw, 68px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 36px;
}
.about-hero-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}
.about-hero-lede {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 300;
  letter-spacing: -0.005em;
  max-width: 820px;
  margin-bottom: 48px;
}

/* Chips de navigation */
.about-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 8px;
}
.about-chip {
  display: inline-block;
  padding: 12px 22px;
  background: var(--paper);
  border: 0.5px solid var(--line-blue);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  transition: all 0.25s var(--ease);
  cursor: pointer;
}
.about-chip:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(24, 95, 165, 0.18);
}

/* Blocs sections */
.about-block {
  padding: 100px var(--gutter);
  border-bottom: 0.5px solid var(--line);
  background: var(--bg);
}
.about-block-blue {
  background: var(--bg-blue);
  border-bottom-color: var(--line-blue);
}
.about-block-inner {
  max-width: 1080px;
  margin: 0 auto;
}

/* Layout 2 colonnes : titre à gauche, contenu à droite */
.about-two-col {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.about-col-left {
  position: sticky;
  top: 100px;
}
.about-block-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.8vw, 60px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
}
.about-block-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}
.about-block-title.light { color: var(--bg); }
.about-col-lede {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 300;
  margin-top: 28px;
  max-width: 380px;
}

/* Highlight de titre comme sur Global Center */
.title-highlight {
  display: inline-block;
  background: var(--bg-blue);
  padding: 4px 14px 6px;
  border-radius: 4px;
  line-height: 1.05;
}

/* Accordéons */
.acc {
  border-top: 0.5px solid var(--line);
  padding: 0;
}
.acc:last-child {
  border-bottom: 0.5px solid var(--line);
}
.acc summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.012em;
  transition: color 0.2s var(--ease);
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary:hover { color: var(--accent); }
.acc-icon {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 28px;
  color: var(--ink-mute);
  transition: transform 0.3s var(--ease);
  line-height: 1;
}
.acc[open] .acc-icon {
  transform: rotate(45deg);
  color: var(--accent);
}
.acc-body {
  padding: 0 0 32px 0;
}
.acc-body p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 18px;
}
.acc-body p:last-child { margin-bottom: 0; }
.acc-body em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.pillar-line {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 0.5px solid var(--line-soft);
}
.pillar-line:last-child { border-bottom: none; padding-bottom: 0; }
.pillar-line:first-child { padding-top: 0; }
.pillar-line strong {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 500;
  padding-top: 4px;
}
.pillar-line span {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 300;
}

/* Cards équipe */
.team-card {
  background: var(--paper);
  border: 0.5px solid var(--line-blue);
  border-radius: 12px;
  padding: 36px;
  margin-bottom: 16px;
}
.team-card:last-child { margin-bottom: 0; }
.team-card-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.012em;
}
.team-card-role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 500;
}
.team-card-bio {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.team-card-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-weight: 500;
  padding-top: 18px;
  border-top: 0.5px solid var(--line-blue);
}

/* Section Rapport annuel */
.about-report-cols {
  align-items: center;
}
.about-report-cols .about-col-left {
  position: static;
}
.about-report-lede {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 300;
  margin-top: 28px;
  margin-bottom: 24px;
}
.about-report-link-wrap {
  margin-bottom: 18px;
}
.about-report-link {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: all 0.25s var(--ease);
}
.about-report-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.about-report-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-weight: 500;
  padding-top: 16px;
}
.about-report-status .status-dot {
  width: 7px;
  height: 7px;
  background: #d4a017;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.about-report-status .status-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #d4a017;
  opacity: 0.3;
  animation: pulse 2.4s infinite ease-out;
}

/* Cover du rapport */
.about-report-cover {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a3a5c 0%, #185FA5 50%, #2a6fb5 100%);
  position: relative;
}
.about-report-cover-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px;
  color: var(--bg);
}
.about-report-cover-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.cover-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  position: relative;
}
.cover-year {
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
  position: relative;
  text-align: right;
}
.cover-brand {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.005em;
  position: relative;
}

@media (max-width: 1024px) {
  .about-two-col { grid-template-columns: 1fr; gap: 40px; }
  .about-col-left { position: static; }
  .pillar-line { grid-template-columns: 1fr; gap: 8px; }
  .pillar-line strong { padding-top: 0; }
}
@media (max-width: 640px) {
  .about-hero { padding: 80px var(--gutter) 56px; }
  .about-block { padding: 64px var(--gutter); }
  .about-chips { gap: 8px; }
  .about-chip { padding: 10px 18px; font-size: 12px; }
  .acc summary { font-size: 18px; padding: 22px 0; }
  .acc-body p { font-size: 15px; }
  .team-card { padding: 28px; }
}


/* ============ EQUIPE — Lede et cards photos ============ */
.team-intro {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 72px;
}
.team-intro-left {
  position: sticky;
  top: 100px;
}
.team-intro-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.team-intro-paragraph {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
  margin: 0;
}
.team-intro-paragraph em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

/* Grille des cards photos style Global Center */
.team-photos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-photo-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
}
.team-photo-wrap {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-deep);
  border-radius: 4px;
  margin-bottom: 20px;
  position: relative;
}
.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.5s var(--ease), transform 0.7s var(--ease);
}
.team-photo-card:hover .team-photo-wrap img {
  filter: grayscale(0%);
  transform: scale(1.02);
}
.team-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d8e3f0 0%, #b5d4f4 100%);
}
.team-photo-card:hover .team-photo-placeholder {
  background: linear-gradient(135deg, #b5d4f4 0%, #185FA5 100%);
}
.team-photo-initials {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 300;
  color: var(--accent);
  letter-spacing: -0.02em;
  transition: color 0.4s var(--ease);
}
.team-photo-card:hover .team-photo-initials {
  color: var(--bg);
}
.team-photo-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.012em;
  line-height: 1.3;
  transition: color 0.25s var(--ease);
}
.team-photo-card:hover .team-photo-name {
  color: var(--accent);
}
.team-photo-role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .team-intro { grid-template-columns: 1fr; gap: 32px; }
  .team-intro-left { position: static; }
  .team-photos-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 640px) {
  .team-photos-grid { grid-template-columns: 1fr; gap: 32px; max-width: 360px; margin: 0 auto; }
}

/* ============ PAGE INDIVIDUELLE MEMBRE ============ */
.member-page {
  background: var(--bg);
  padding: 80px var(--gutter) 120px;
  border-bottom: 0.5px solid var(--line);
  min-height: 80vh;
}
.member-page-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.member-breadcrumb {
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-bottom: 56px;
  font-weight: 500;
  flex-wrap: wrap;
}
.member-breadcrumb a {
  color: var(--ink-soft);
  transition: color 0.2s var(--ease);
}
.member-breadcrumb a:hover { color: var(--accent); }
.member-breadcrumb .bc-sep { color: var(--line); }

.member-content {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.member-left { position: sticky; top: 100px; }

.member-name {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin-bottom: 12px;
}
.member-role {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 36px;
  font-weight: 500;
}
.member-photo-wrap {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-deep);
  border-radius: 4px;
  margin-bottom: 28px;
}
.member-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.member-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d8e3f0 0%, #b5d4f4 100%);
}
.member-photo-initials {
  font-family: var(--serif);
  font-size: 96px;
  font-weight: 300;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.member-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: all 0.25s var(--ease);
}
.member-linkedin:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.member-bio {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.member-bio p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
  margin: 0;
}
.member-bio p strong {
  font-weight: 500;
  color: var(--ink);
}
.member-bio p em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.member-back {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 0.5px solid var(--line);
}

@media (max-width: 1024px) {
  .member-content { grid-template-columns: 1fr; gap: 48px; }
  .member-left { position: static; max-width: 360px; }
  .member-bio p { font-size: 17px; }
}
@media (max-width: 640px) {
  .member-page { padding: 56px var(--gutter) 80px; }
  .member-photo-initials { font-size: 72px; }
}


/* ============ PAGE SECTION INTRO ============ */
.section-intro-page {
  background: var(--bg);
  padding: 120px var(--gutter) 100px;
  border-bottom: 0.5px solid var(--line);
  min-height: 80vh;
}
.section-intro-inner {
  max-width: 880px;
  margin: 0 auto;
}
.section-intro-head {
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 0.5px solid var(--line);
}
.section-intro-head .section-eyebrow {
  margin-bottom: 28px;
}
.section-intro-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5.6vw, 68px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
}
.section-intro-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}
.section-intro-body {
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section-intro-paragraph {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
  margin: 0;
  letter-spacing: -0.005em;
}
.section-intro-paragraph em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

.section-intro-status {
  background: var(--bg-blue);
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 48px;
  border-left: 3px solid var(--accent);
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.status-badge .status-dot {
  width: 8px;
  height: 8px;
  background: #d4a017;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.status-badge .status-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #d4a017;
  opacity: 0.3;
  animation: pulse 2.4s infinite ease-out;
}
.status-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ink);
  text-transform: uppercase;
  font-weight: 500;
}
.status-detail {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 300;
  margin: 0;
}
.section-intro-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .section-intro-page { padding: 80px var(--gutter) 64px; }
  .section-intro-paragraph { font-size: 17px; }
}


/* ============ BULLETIN MÉTÉO DES DÉLESTAGES (sur featured-project) ============ */
/* Ajustement de la grille existante featured-grid */
.featured-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 80px !important;
  align-items: start !important;
}
.featured-text { display: flex; flex-direction: column; }

/* Bulletin card */
.bulletin {
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 32px;
  position: relative;
}
.bulletin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
  gap: 12px;
}
.bulletin-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  font-weight: 500;
}
.bulletin-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  font-weight: 500;
}

/* KPIs */
.bulletin-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}
.kpi-card {
  background: rgba(255, 255, 255, 0.03);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 20px;
}
.kpi-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 12px;
}
.kpi-value {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}
.kpi-value .kpi-unit {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 2px;
  font-weight: 300;
}
.kpi-value-text {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -0.018em;
  margin-bottom: 10px;
}
.kpi-detail {
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
}
.kpi-trend {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 4px;
}
.kpi-trend-down {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
}

/* Blocs */
.bulletin-block { margin-bottom: 22px; }
.bulletin-stats-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 12px;
}
.bulletin-stats-line {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.bulletin-stats-line strong {
  color: #fff;
  font-weight: 600;
}
.dot-sep { color: rgba(255, 255, 255, 0.3); }

/* Communes barres */
.commune-bar { display: flex; flex-direction: column; gap: 8px; }
.commune-row {
  display: grid;
  grid-template-columns: 90px 1fr 50px;
  gap: 12px;
  align-items: center;
}
.commune-name {
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}
.commune-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
}
.commune-fill {
  height: 100%;
  background: linear-gradient(90deg, #185FA5 0%, #4a9eff 100%);
  border-radius: 3px;
}
.commune-pct {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  text-align: right;
  font-weight: 500;
}

/* Insight */
.bulletin-insight {
  background: rgba(74, 158, 255, 0.06);
  border-left: 2px solid var(--accent);
  border-radius: 0 6px 6px 0;
  padding: 14px 16px;
  margin-bottom: 22px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.bulletin-insight-icon {
  color: #4ade80;
  font-weight: 600;
  font-family: var(--mono);
  flex-shrink: 0;
  margin-top: 1px;
}
.bulletin-insight span:last-child {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

/* Bulletin actions */
.bulletin-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.08);
}
.bulletin-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  background: #fff;
  color: #0f0f0f;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.25s var(--ease);
}
.bulletin-btn-primary:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}
.bulletin-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 16px;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0;
  transition: all 0.2s var(--ease);
}
.bulletin-btn-secondary:hover {
  color: #fff;
  border-bottom-color: #fff;
}

@media (max-width: 1024px) {
  .featured-grid { grid-template-columns: 1fr !important; gap: 48px !important; }
  .bulletin { padding: 26px; }
}
@media (max-width: 640px) {
  .bulletin-kpis { grid-template-columns: 1fr; }
  .commune-row { grid-template-columns: 70px 1fr 45px; gap: 10px; }
  .kpi-value { font-size: 30px; }
  .bulletin-actions { flex-direction: column; align-items: stretch; }
  .bulletin-btn-primary, .bulletin-btn-secondary { justify-content: center; }
}


/* ============ FEATURED-DESC : multiples paragraphes ============ */
.featured-desc p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  margin-bottom: 16px;
}
.featured-desc p:last-child {
  margin-bottom: 32px;
}
.featured-desc strong {
  color: #fff;
  font-weight: 500;
}


/* ============================================================
   PAGE BULLETIN — Design premium
   ============================================================ */

/* HERO BULLETIN */
.bulletin-hero {
  background: var(--bg-blue);
  padding: 80px var(--gutter) 64px;
  border-bottom: 0.5px solid var(--line-blue);
}
.bulletin-hero-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.bulletin-breadcrumb {
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-bottom: 48px;
  font-weight: 500;
  flex-wrap: wrap;
}
.bulletin-breadcrumb a {
  color: var(--ink-soft);
  transition: color 0.2s var(--ease);
}
.bulletin-breadcrumb a:hover { color: var(--accent); }
.bulletin-breadcrumb .bc-sep { color: var(--line-blue); }

.bulletin-hero-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.bulletin-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 500;
}
.bulletin-tag-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: relative;
}
.bulletin-tag-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.25;
  animation: pulse 2.4s infinite ease-out;
}
.bulletin-edition {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-weight: 500;
}

.bulletin-hero-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5.6vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 32px;
}
.bulletin-hero-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}
.bulletin-hero-lede {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 300;
  letter-spacing: -0.005em;
  max-width: 780px;
  margin-bottom: 48px;
}
.bulletin-hero-lede strong {
  font-weight: 500;
  color: var(--ink);
}
.bulletin-hero-lede strong.positive {
  color: #2D6A4F;
}

/* CHIPS DE NAVIGATION */
.bulletin-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.bulletin-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--paper);
  border: 0.5px solid var(--line-blue);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  transition: all 0.25s var(--ease);
  cursor: pointer;
}
.bulletin-chip:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(24, 95, 165, 0.18);
}
.bulletin-chip-pdf {
  background: transparent;
  color: var(--ink-soft);
  border-style: dashed;
}

/* SECTIONS COMMUNES */
.bulletin-section-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.bulletin-section-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
}
.bulletin-section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin-bottom: 20px;
}
.bulletin-section-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}
.bulletin-section-intro {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 720px;
  margin-bottom: 56px;
}

/* KPIs */
.bulletin-kpis-section {
  background: var(--bg);
  padding: 80px var(--gutter);
  border-bottom: 0.5px solid var(--line);
}
.bulletin-kpis-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 0.5px solid var(--line);
  border-bottom: 0.5px solid var(--line);
}
.bulletin-kpi {
  padding: 36px 32px;
  border-right: 0.5px solid var(--line);
  display: flex;
  flex-direction: column;
}
.bulletin-kpi:last-child { border-right: none; }
.bulletin-kpi-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
}
.bulletin-kpi-value {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.bulletin-kpi-num { display: inline-block; }
.bulletin-kpi-unit {
  font-size: 26px;
  color: var(--ink-mute);
  font-weight: 300;
}
.bulletin-kpi-positive {
  color: #2D6A4F;
}
.bulletin-kpi-text {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.018em;
}
.bulletin-kpi-detail {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-mute);
}

/* EDITO */
.bulletin-edito-section {
  background: var(--bg-blue);
  padding: 96px var(--gutter);
  border-bottom: 0.5px solid var(--line-blue);
}
.bulletin-edito-content {
  max-width: 720px;
  margin-bottom: 48px;
}
.bulletin-edito-content p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink);
  font-weight: 300;
  margin-bottom: 22px;
  letter-spacing: -0.005em;
}
.bulletin-edito-content p:last-child { margin-bottom: 0; }
.bulletin-edito-content strong {
  font-weight: 500;
  color: var(--ink);
}
.bulletin-edito-content strong.positive {
  color: #2D6A4F;
}
.bulletin-edito-signature {
  max-width: 720px;
  padding-top: 32px;
  border-top: 0.5px solid var(--line-blue);
  text-align: right;
}
.bulletin-edito-author {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
  font-style: italic;
}
.bulletin-edito-role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-weight: 500;
}

/* DATA SECTION */
.bulletin-data-section {
  background: var(--bg);
  padding: 96px var(--gutter);
  border-bottom: 0.5px solid var(--line);
}

/* ACCORDEONS */
.bulletin-accordions {
  display: flex;
  flex-direction: column;
  border-top: 0.5px solid var(--line);
}
.bulletin-acc {
  border-bottom: 0.5px solid var(--line);
}
.bulletin-acc summary {
  list-style: none;
  cursor: pointer;
  padding: 32px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: background 0.2s var(--ease);
}
.bulletin-acc summary::-webkit-details-marker { display: none; }
.bulletin-acc summary:hover { background: var(--bg-alt); }
.bulletin-acc-head {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}
.bulletin-acc-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 500;
  min-width: 32px;
}
.bulletin-acc-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.012em;
  line-height: 1.3;
}
.bulletin-acc-icon {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 28px;
  color: var(--ink-mute);
  transition: transform 0.3s var(--ease);
  line-height: 1;
}
.bulletin-acc[open] .bulletin-acc-icon {
  transform: rotate(45deg);
  color: var(--accent);
}
.bulletin-acc-body {
  padding: 8px 8px 40px 72px;
}
.bulletin-acc-text {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 28px;
  max-width: 760px;
}
.bulletin-acc-text strong {
  font-weight: 500;
  color: var(--ink);
}

/* PLACEHOLDER GRAPHIQUES (livraison 2) */
.bulletin-chart-placeholder {
  background: var(--bg-alt);
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 80px 32px;
  text-align: center;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-mute);
  margin-bottom: 28px;
}

/* TABLEAUX */
.bulletin-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
}
.bulletin-table th,
.bulletin-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 0.5px solid var(--line);
  font-size: 14px;
  color: var(--ink);
}
.bulletin-table th {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-weight: 500;
  background: var(--bg-alt);
}
.bulletin-table tbody tr {
  transition: background 0.15s var(--ease);
}
.bulletin-table tbody tr:hover {
  background: var(--bg-alt);
}
.bulletin-row-highlight {
  background: rgba(24, 95, 165, 0.04);
}
.bulletin-row-highlight td:first-child {
  font-weight: 600;
  color: var(--accent);
}

/* METHODOLOGIE */
.bulletin-methodo-section {
  background: var(--bg-blue);
  padding: 96px var(--gutter);
  border-bottom: 0.5px solid var(--line-blue);
}
.bulletin-methodo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.bulletin-methodo-block {
  background: var(--paper);
  border: 0.5px solid var(--line-blue);
  border-radius: 12px;
  padding: 36px;
}
.bulletin-methodo-block-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.012em;
  padding-bottom: 16px;
  border-bottom: 0.5px solid var(--line-blue);
}
.bulletin-methodo-block p {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 14px;
}
.bulletin-methodo-block p:last-child { margin-bottom: 0; }
.bulletin-methodo-block strong {
  font-weight: 500;
  color: var(--ink);
}

/* FOOTER BULLETIN */
.bulletin-footer-section {
  background: var(--bg);
  padding: 80px var(--gutter);
}
.bulletin-citation {
  background: var(--bg-alt);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 24px 28px;
  margin-bottom: 40px;
}
.bulletin-citation-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 8px;
}
.bulletin-citation-text {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 400;
  margin: 0;
  font-style: italic;
}
.bulletin-actions-row {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .bulletin-kpis-grid { grid-template-columns: repeat(2, 1fr); }
  .bulletin-kpi { border-bottom: 0.5px solid var(--line); }
  .bulletin-kpi:nth-child(2) { border-right: none; }
  .bulletin-methodo-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .bulletin-hero { padding: 56px var(--gutter) 48px; }
  .bulletin-hero-title { font-size: 36px; }
  .bulletin-hero-lede { font-size: 17px; }
  .bulletin-kpis-grid { grid-template-columns: 1fr; }
  .bulletin-kpi { border-right: none; }
  .bulletin-kpi-value { font-size: 38px; }
  .bulletin-kpis-section,
  .bulletin-edito-section,
  .bulletin-data-section,
  .bulletin-methodo-section { padding: 56px var(--gutter); }
  .bulletin-acc summary { padding: 24px 8px; }
  .bulletin-acc-head { gap: 16px; }
  .bulletin-acc-title { font-size: 17px; }
  .bulletin-acc-body { padding: 8px 8px 32px 8px; }
  .bulletin-table { font-size: 13px; }
  .bulletin-table th, .bulletin-table td { padding: 10px 12px; }
}


/* ============ LIEN PDF DISCRET sous les boutons du bulletin ============ */
.bulletin-pdf-link {
  margin-top: 14px;
  padding-top: 14px;
}
.bulletin-pdf-link a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s var(--ease);
  text-decoration: none;
  padding-bottom: 1px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.2);
}
.bulletin-pdf-link a:hover {
  color: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.5);
}


/* ============================================================
   HERO BULLETIN AVEC IMAGE EN BACKGROUND
   ============================================================ */
.bulletin-hero-image {
  position: relative;
  background: #0f1b38;
  padding: 0;
  min-height: 540px;
  border-bottom: none;
  overflow: hidden;
}
.bulletin-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.bulletin-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
.bulletin-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15, 27, 56, 0.85) 0%, rgba(15, 27, 56, 0.55) 50%, rgba(15, 27, 56, 0.3) 100%),
    linear-gradient(to top, rgba(15, 27, 56, 0.4) 0%, transparent 50%);
}
.bulletin-hero-image .bulletin-hero-inner {
  position: relative;
  z-index: 1;
  padding: 80px var(--gutter) 64px;
  max-width: 1080px;
  margin: 0 auto;
}

/* Versions LIGHT (texte blanc) */
.bulletin-breadcrumb-light a { color: rgba(255,255,255,0.7); }
.bulletin-breadcrumb-light a:hover { color: #fff; }
.bulletin-breadcrumb-light span { color: rgba(255,255,255,0.85); }
.bulletin-breadcrumb-light .bc-sep { color: rgba(255,255,255,0.3); }

.bulletin-tag-light {
  color: #b5d4f4;
}
.bulletin-tag-light .bulletin-tag-dot {
  background: #4ade80;
}
.bulletin-tag-light .bulletin-tag-dot::after {
  background: #4ade80;
  opacity: 0.4;
}

.bulletin-edition-light {
  color: rgba(255,255,255,0.6);
}

.bulletin-hero-title-light {
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.bulletin-hero-title-light em {
  color: #b5d4f4;
}

.bulletin-hero-lede-light {
  color: rgba(255,255,255,0.92);
}
.bulletin-hero-lede-light strong {
  color: #fff;
}
.bulletin-hero-lede-light strong.positive-light {
  color: #6ee79e;
}

/* Chips version light (sur fond image) */
.bulletin-chips-light .bulletin-chip-light {
  background: rgba(255,255,255,0.1);
  border: 0.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
}
.bulletin-chips-light .bulletin-chip-light:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
.bulletin-chip-pdf-light {
  border-style: dashed !important;
  color: rgba(255,255,255,0.75) !important;
  background: transparent !important;
}
.bulletin-chip-pdf-light:hover {
  background: rgba(255,255,255,0.95) !important;
  color: var(--ink) !important;
  border-style: solid !important;
}

/* ============================================================
   GRAPHIQUES SVG NATIFS
   ============================================================ */
.bulletin-chart {
  margin: 0 0 28px 0;
  padding: 0;
}
.chart-svg {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}
.bulletin-chart figcaption {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 16px;
  text-align: right;
}

/* Animations des barres au scroll */
@keyframes barGrowH {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes barGrowV {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}
.chart-bar-anim {
  transform-origin: left center;
  animation: barGrowH 1.4s cubic-bezier(0.25, 0.1, 0.25, 1) backwards;
}
.chart-bar-anim-v {
  transform-origin: bottom;
  animation: barGrowV 1.4s cubic-bezier(0.25, 0.1, 0.25, 1) backwards;
}
.bulletin-acc[open] .chart-bar-anim:nth-of-type(1) { animation-delay: 0.1s; }
.bulletin-acc[open] .chart-bar-anim:nth-of-type(2) { animation-delay: 0.2s; }
.bulletin-acc[open] .chart-bar-anim:nth-of-type(3) { animation-delay: 0.3s; }

/* Responsive hero */
@media (max-width: 768px) {
  .bulletin-hero-image {
    min-height: auto;
  }
  .bulletin-hero-image .bulletin-hero-inner {
    padding: 56px var(--gutter) 48px;
  }
  .bulletin-hero-bg img {
    object-position: 70% center;
  }
}


/* ============================================================
   HERO BULLETIN — SPLIT LAYOUT (texte gauche / image droite)
   ============================================================ */
.bulletin-hero-split {
  background: var(--bg-blue);
  padding: 0;
  border-bottom: 0.5px solid var(--line-blue);
  overflow: hidden;
}
.bulletin-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  max-width: 1440px;
  margin: 0 auto;
  align-items: stretch;
}
.bulletin-hero-text {
  padding: 80px var(--gutter) 64px;
  max-width: 720px;
  margin-left: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.bulletin-hero-image-wrap {
  position: relative;
  background: #0f1b38;
  overflow: hidden;
  min-height: 540px;
}
.bulletin-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Responsive : sur tablet/mobile, on empile verticalement */
@media (max-width: 1024px) {
  .bulletin-hero-grid {
    grid-template-columns: 1fr;
  }
  .bulletin-hero-image-wrap {
    min-height: 320px;
    max-height: 420px;
  }
  .bulletin-hero-image {
    object-position: center 30%;
  }
  .bulletin-hero-text {
    padding: 56px var(--gutter) 48px;
    max-width: 100%;
    margin: 0 auto;
  }
}

/* On reset les eventuelles classes 'light' qui ne servent plus */
.bulletin-hero-split .bulletin-breadcrumb-light,
.bulletin-hero-split .bulletin-tag-light,
.bulletin-hero-split .bulletin-edition-light,
.bulletin-hero-split .bulletin-hero-title-light,
.bulletin-hero-split .bulletin-hero-lede-light,
.bulletin-hero-split .bulletin-chip-light {
  /* override - on revient au style standard */
}


/* ============================================================
   SECTION GABONHUB HOME — Version epuree premium
   ============================================================ */
/* Pitch court a la place du long texte */
.featured-pitch {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.45;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.012em;
  margin: 0 0 44px 0;
  max-width: 540px;
}
.featured-pitch em {
  font-style: italic;
  color: #b5d4f4;
  font-weight: 400;
}
.featured-pitch strong {
  color: #fff;
  font-weight: 500;
}

/* HEADLINE BULLETIN : la grosse stat focale */
.bulletin-headline {
  padding: 8px 0 28px 0;
  margin-bottom: 24px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.12);
}
.bulletin-headline-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 14px;
}
.bulletin-headline-value {
  font-family: var(--serif);
  font-size: clamp(56px, 7vw, 84px);
  font-weight: 400;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.bulletin-headline-unit {
  font-size: 0.4em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}
.bulletin-headline-trend {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
}
.bulletin-headline-trend svg {
  color: #4ade80;
}
.bulletin-headline-trend .trend-pct {
  font-size: 16px;
  font-weight: 600;
  color: #4ade80;
}
.bulletin-headline-trend .trend-context {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  font-weight: 500;
}

/* Mini chart : ajustement pour la version epuree */
.bulletin-mini-chart {
  margin-bottom: 28px;
}


/* ============================================================
   PAGE PROJET GABONHUB
   ============================================================ */

/* HERO */
.project-hero {
  background: var(--bg-blue);
  padding: 80px var(--gutter) 80px;
  border-bottom: 0.5px solid var(--line-blue);
}
.project-hero-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.project-breadcrumb {
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-bottom: 48px;
  font-weight: 500;
  flex-wrap: wrap;
}
.project-breadcrumb a {
  color: var(--ink-soft);
  transition: color 0.2s var(--ease);
}
.project-breadcrumb a:hover { color: var(--accent); }
.project-breadcrumb .bc-sep { color: var(--line-blue); }

.project-hero-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.project-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 500;
}
.project-tag-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  position: relative;
}
.project-tag-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #22c55e;
  opacity: 0.3;
  animation: pulse 2.4s infinite ease-out;
}
.project-since {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-weight: 500;
}

.project-hero-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5.6vw, 68px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 32px;
}
.project-hero-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}
.project-hero-lede {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 300;
  letter-spacing: -0.005em;
  max-width: 820px;
  margin-bottom: 48px;
}
.project-hero-actions {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

/* SECTIONS */
.project-section {
  padding: 96px var(--gutter);
  background: var(--bg);
  border-bottom: 0.5px solid var(--line);
}
.project-section-blue {
  background: var(--bg-blue);
  border-bottom-color: var(--line-blue);
}
.project-section-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.project-section-head {
  margin-bottom: 56px;
  max-width: 720px;
}
.project-section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin-bottom: 20px;
  margin-top: 16px;
}
.project-section-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}
.project-section-intro {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 300;
}

/* TWO COL (titre gauche / texte droite) */
.project-two-col {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.project-col-left {
  position: sticky;
  top: 100px;
}
.project-paragraph {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 22px;
  letter-spacing: -0.005em;
}
.project-paragraph:last-child { margin-bottom: 0; }
.project-paragraph em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.project-paragraph strong {
  font-weight: 500;
  color: var(--ink);
}

/* FEATURES (3 cards) */
.project-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-feature {
  background: var(--paper);
  border: 0.5px solid var(--line-blue);
  border-radius: 12px;
  padding: 36px;
  display: flex;
  flex-direction: column;
}
.project-feature-highlight {
  background: linear-gradient(180deg, var(--paper) 0%, rgba(24, 95, 165, 0.04) 100%);
  border-color: rgba(24, 95, 165, 0.18);
}
.project-feature-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}
.project-feature-tag {
  font-size: 9px;
  letter-spacing: 0.14em;
  background: var(--accent);
  color: var(--bg);
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
}
.project-feature-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.012em;
}
.project-feature-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* CARD BULLETIN */
.bulletin-card-link {
  display: block;
  text-decoration: none;
}
.bulletin-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: var(--paper);
  border: 0.5px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.bulletin-card-link:hover .bulletin-card {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(15, 27, 56, 0.08);
  border-color: var(--accent);
}
.bulletin-card-cover {
  background: #0f1b38;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.bulletin-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.bulletin-card-link:hover .bulletin-card-cover img {
  transform: scale(1.04);
}
.bulletin-card-content {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bulletin-card-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.bulletin-card-num {
  color: var(--accent);
}
.bulletin-card-sep {
  color: var(--line);
}
.bulletin-card-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: -0.018em;
}
.bulletin-card-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.bulletin-card-excerpt {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 28px;
}
.bulletin-card-excerpt strong {
  font-weight: 500;
  color: var(--ink);
}
.bulletin-card-excerpt strong.positive {
  color: #2D6A4F;
}
.bulletin-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: gap 0.2s var(--ease);
}
.bulletin-card-link:hover .bulletin-card-cta {
  gap: 14px;
}

/* FACTS GRID */
.project-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 0.5px solid var(--line-blue);
  border-bottom: 0.5px solid var(--line-blue);
}
.project-fact {
  padding: 36px 28px;
  border-right: 0.5px solid var(--line-blue);
  display: flex;
  flex-direction: column;
}
.project-fact:last-child { border-right: none; }
.project-fact-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 18px;
}
.project-fact-value {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.project-fact-detail {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-mute);
}

/* CTA FINAL */
.project-cta-section {
  background: var(--ink);
  padding: 120px var(--gutter);
}
.project-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.project-cta-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--bg);
  margin-bottom: 24px;
}
.project-cta-title em {
  font-style: italic;
  color: #b5d4f4;
  font-weight: 300;
}
.project-cta-text {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  margin-bottom: 40px;
}
.project-cta-actions {
  display: flex;
  justify-content: center;
}
.project-cta-section .btn-pill {
  background: var(--bg);
  color: var(--ink);
  font-size: 14px;
  padding: 14px 32px;
}
.project-cta-section .btn-pill:hover {
  background: var(--accent);
  color: var(--bg);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .project-two-col { grid-template-columns: 1fr; gap: 32px; }
  .project-col-left { position: static; }
  .project-features-grid { grid-template-columns: 1fr; gap: 16px; }
  .bulletin-card { grid-template-columns: 1fr; }
  .bulletin-card-cover { aspect-ratio: 16 / 9; }
  .bulletin-card-content { padding: 28px; }
  .project-facts-grid { grid-template-columns: repeat(2, 1fr); }
  .project-fact:nth-child(2) { border-right: none; }
  .project-fact:nth-child(1), .project-fact:nth-child(2) {
    border-bottom: 0.5px solid var(--line-blue);
  }
}
@media (max-width: 640px) {
  .project-hero { padding: 56px var(--gutter) 56px; }
  .project-section { padding: 64px var(--gutter); }
  .project-facts-grid { grid-template-columns: 1fr; }
  .project-fact { border-right: none; border-bottom: 0.5px solid var(--line-blue); }
  .project-fact:last-child { border-bottom: none; }
  .bulletin-card-title { font-size: 22px; }
  .project-cta-section { padding: 80px var(--gutter); }
}




/* ============================================================
   OBSERVATOIRE/DASHBOARDS — Refonte institutionnelle
   ============================================================ */

/* Override hero quand suivi par dashboards-section : hauteur naturelle */
.section-intro-page:has(+ .dashboards-section) {
  min-height: auto !important;
  padding-top: 80px !important;
  padding-bottom: 56px !important;
}
.section-intro-page:has(+ .dashboards-section) .section-intro-inner {
  min-height: auto !important;
}
.section-intro-page:has(+ .dashboards-section) .section-intro-status,
.section-intro-page:has(+ .dashboards-section) .section-intro-actions {
  display: none !important;
}

/* Section dashboards */
.dashboards-section {
  padding: 64px var(--gutter) 120px;
  background: var(--bg);
}
.dashboards-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.dashboards-section-head {
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 0.5px solid var(--line);
}
.dashboards-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 500;
}

/* GRILLE 2 COLONNES */
.dashboards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

/* CARD DASHBOARD */
.dashboard-card {
  background: var(--paper);
  border: 0.5px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
}
.dashboard-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(15, 27, 56, 0.08);
  border-color: var(--accent);
}
.dashboard-card-main {
  display: block;
  padding: 32px 32px 24px;
  text-decoration: none;
  color: inherit;
  flex: 1;
}

.dashboard-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 0.5px solid var(--line);
}
.dashboard-card-theme {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 600;
}
.dashboard-card-version {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-weight: 500;
}

.dashboard-card-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 18px 0;
}
.dashboard-card-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}

.dashboard-card-excerpt {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 28px;
  letter-spacing: -0.005em;
}

.dashboard-card-keystats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 0.5px solid var(--line);
  padding-top: 18px;
}
.dashboard-keystat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 12px;
  border-right: 0.5px solid var(--line);
}
.dashboard-keystat:last-child { border-right: none; padding-right: 0; }
.dashboard-keystat-value {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.018em;
  line-height: 1;
}
.dashboard-keystat-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-weight: 500;
}

/* FOOTER de la card (source + boutons) */
.dashboard-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 32px 24px;
  background: var(--bg-alt);
  border-top: 0.5px solid var(--line);
}
.dashboard-card-source {
  font-size: 11px;
  font-style: italic;
  color: var(--ink-mute);
  flex: 1;
  min-width: 0;
  line-height: 1.4;
}
.dashboard-card-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.dashboard-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 3px;
  text-decoration: none;
  transition: gap 0.2s var(--ease);
}
.dashboard-card-cta:hover { gap: 14px; }
.dashboard-card-pdf {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  background: transparent;
  border: 0.5px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s var(--ease);
}
.dashboard-card-pdf:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

/* PUBLICATIONS LIEES */
.dashboards-related {
  margin-top: 32px;
  padding: 32px 36px;
  background: var(--bg-alt);
  border-radius: 12px;
  border: 0.5px solid var(--line);
}
.dashboards-related-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}
.dashboards-related-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dashboards-related-link {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 0.5px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: padding 0.2s var(--ease);
}
.dashboards-related-link:last-child { border-bottom: none; }
.dashboards-related-link:hover { padding-left: 8px; }
.dashboards-related-arrow {
  color: var(--accent);
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
}
.dashboards-related-text {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.dashboards-related-text strong {
  font-weight: 500;
  color: var(--ink);
}

/* ROADMAP (anciennement "À venir") */
.dashboards-roadmap {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 0.5px solid var(--line);
}
.dashboards-roadmap-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 14px;
}
.dashboards-roadmap-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 14px 0;
}
.dashboards-roadmap-text {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 780px;
  margin: 0;
}
.dashboards-roadmap-text strong {
  font-weight: 500;
  color: var(--ink);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .dashboards-grid { grid-template-columns: 1fr; }
  .dashboard-card-keystats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .dashboard-card-main { padding: 24px 22px 18px; }
  .dashboard-card-footer { padding: 16px 22px 20px; flex-direction: column; align-items: flex-start; }
  .dashboard-card-actions { width: 100%; justify-content: space-between; }
  .dashboard-card-keystats { grid-template-columns: 1fr 1fr 1fr; gap: 0; }
  .dashboard-keystat { padding-right: 8px; }
  .dashboard-keystat-value { font-size: 18px; }
  .dashboard-card-header { flex-wrap: wrap; }
  .dashboards-section { padding: 48px var(--gutter) 80px; }
  .dashboards-related { padding: 24px 22px; }
}


/* ============================================================
   PAGE PROJETS — Liste avec cards institutionnelles
   ============================================================ */

/* Override hero quand suivi par projects-section : hauteur naturelle */
.section-intro-page:has(+ .projects-section) {
  min-height: auto !important;
  padding-top: 80px !important;
  padding-bottom: 56px !important;
}
.section-intro-page:has(+ .projects-section) .section-intro-inner {
  min-height: auto !important;
}
.section-intro-page:has(+ .projects-section) .section-intro-status,
.section-intro-page:has(+ .projects-section) .section-intro-actions {
  display: none !important;
}

.projects-section {
  padding: 64px var(--gutter) 120px;
  background: var(--bg);
}
.projects-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.projects-section-head {
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 0.5px solid var(--line);
}
.projects-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 500;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.project-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.project-card {
  background: var(--paper);
  border: 0.5px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  padding: 32px;
  height: 100%;
}
.project-card-link:hover .project-card {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(15, 27, 56, 0.08);
  border-color: var(--accent);
}

.project-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 0.5px solid var(--line);
}
.project-card-theme {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 600;
}
.project-card-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: #15803d;
  text-transform: uppercase;
  font-weight: 600;
}
.project-card-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  position: relative;
}
.project-card-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: #22c55e;
  opacity: 0.3;
  animation: pulse 2.4s infinite ease-out;
}

.project-card-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 18px 0;
}
.project-card-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}

.project-card-excerpt {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 28px;
  letter-spacing: -0.005em;
}

.project-card-keystats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 0.5px solid var(--line);
  padding-top: 18px;
  margin-bottom: 24px;
}
.project-keystat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 12px;
  border-right: 0.5px solid var(--line);
}
.project-keystat:last-child { border-right: none; padding-right: 0; }
.project-keystat-value {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.018em;
  line-height: 1;
}
.project-keystat-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-weight: 500;
}

.project-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 0.5px solid var(--line);
}
.project-card-source {
  font-size: 11px;
  font-style: italic;
  color: var(--ink-mute);
  flex: 1;
  min-width: 0;
  line-height: 1.4;
}
.project-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 3px;
  flex-shrink: 0;
  transition: gap 0.2s var(--ease);
}
.project-card-link:hover .project-card-cta { gap: 14px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .projects-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .project-card { padding: 24px 22px; }
  .project-card-keystats { grid-template-columns: 1fr 1fr 1fr; }
  .project-keystat-value { font-size: 18px; }
  .projects-section { padding: 48px var(--gutter) 80px; }
  .project-card-footer { flex-direction: column; align-items: flex-start; }
}


/* ============================================================
   PAGE CONTACT — Institutionnelle sobre
   ============================================================ */

/* Override hero quand suivi par contact-section : hauteur naturelle */
.section-intro-page:has(+ .contact-section) {
  min-height: auto !important;
  padding-top: 80px !important;
  padding-bottom: 56px !important;
}
.section-intro-page:has(+ .contact-section) .section-intro-inner {
  min-height: auto !important;
}
.section-intro-page:has(+ .contact-section) .section-intro-status,
.section-intro-page:has(+ .contact-section) .section-intro-actions {
  display: none !important;
}

.contact-section {
  padding: 64px var(--gutter) 120px;
  background: var(--bg);
}
.contact-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* CARTE EMAIL PRINCIPALE */
.contact-card-main {
  background: var(--paper);
  border: 0.5px solid var(--line);
  border-radius: 16px;
  padding: 48px 44px;
  position: sticky;
  top: 100px;
}
.contact-card-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
}
.contact-email {
  display: block;
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.018em;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(15, 27, 56, 0.12);
  padding-bottom: 18px;
  margin-bottom: 24px;
  word-break: break-word;
  transition: color 0.2s, border-color 0.2s;
}
.contact-email:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.contact-card-note {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 32px;
  letter-spacing: -0.005em;
}
.contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--accent);
  color: white;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.2s var(--ease);
}
.contact-cta:hover {
  background: #134985;
  transform: translateY(-1px);
}

/* MOTIFS DE CONTACT */
.contact-reasons {
  padding-top: 12px;
}
.contact-reasons-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 0.5px solid var(--line);
}

.contact-reason {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 0.5px solid var(--line);
  align-items: start;
}
.contact-reason:last-child { border-bottom: none; }
.contact-reason-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(24, 95, 165, 0.08);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-reason-icon svg {
  width: 20px;
  height: 20px;
}
.contact-reason-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 8px 0;
}
.contact-reason-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 400;
  margin: 0;
}

/* SIGNATURE INSTITUTIONNELLE */
.contact-signature {
  margin-top: 80px;
  padding-top: 48px;
  text-align: center;
  position: relative;
}
.contact-signature-line {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 24px;
}
.contact-signature-text {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: var(--ink-mute);
  font-weight: 300;
  margin: 0;
  letter-spacing: -0.005em;
}
.contact-signature-text strong {
  font-style: normal;
  font-weight: 500;
  color: var(--ink);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-card-main { position: static; padding: 36px 32px; }
}
@media (max-width: 640px) {
  .contact-section { padding: 48px var(--gutter) 80px; }
  .contact-card-main { padding: 28px 24px; }
  .contact-reason { grid-template-columns: 36px 1fr; gap: 16px; }
  .contact-reason-icon { width: 36px; height: 36px; }
  .contact-reason-icon svg { width: 16px; height: 16px; }
}


/* ============================================================
   LOGO GDD — integration header & footer
   ============================================================ */

/* Header brand : logo image au lieu du texte */
.topbar .brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand-logo {
  height: 36px;
  width: auto;
  display: block;
  transition: opacity 0.2s var(--ease);
}
.brand-logo:hover { opacity: 0.85; }

/* Footer brand : symbole + nom cote a cote */
.footer-brand-block {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.footer-brand-symbol {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.footer-brand-block .footer-brand-name {
  margin-bottom: 0;
}

/* Responsive : logo plus petit sur mobile */
@media (max-width: 640px) {
  .brand-logo { height: 28px; }
  .footer-brand-symbol { width: 32px; height: 32px; }
  .footer-brand-block { gap: 10px; }
}


/* ============================================================
   HOME — Section "A la une" + productions recentes
   (remplace l'ancien bloc des chiffres)
   ============================================================ */
.home-spotlight {
  padding: 96px var(--gutter);
  background: var(--bg);
  border-bottom: 0.5px solid var(--line);
}
.home-spotlight-inner {
  max-width: 1180px;
  margin: 0 auto;
}

/* Eyebrow A la une */
.spotlight-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 0.5px solid var(--line);
}
.spotlight-eyebrow-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 600;
}
.spotlight-eyebrow-sep {
  color: var(--line);
  font-size: 14px;
}
.spotlight-eyebrow-date {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-weight: 500;
}

/* Bandeau A la une (le grand) */
.spotlight-feature {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 32px 0 48px;
}
.spotlight-feature-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}
.spotlight-feature-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.024em;
  color: var(--ink);
  margin: 0 0 24px 0;
}
.spotlight-feature-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}
.spotlight-feature-lede {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 32px;
  letter-spacing: -0.005em;
  max-width: 620px;
}
.spotlight-feature-lede strong {
  font-weight: 500;
  color: var(--ink);
}
.spotlight-feature-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--accent);
  color: white;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.2s var(--ease);
}
.spotlight-feature-cta:hover {
  background: #134985;
  transform: translateY(-1px);
}

/* Bloc visuel a droite : 3 stats verticales */
.spotlight-feature-visual {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--paper);
  border: 0.5px solid var(--line);
  border-radius: 14px;
  padding: 32px 36px;
}
.spotlight-feature-stat {
  padding: 20px 0;
  border-bottom: 0.5px solid var(--line);
}
.spotlight-feature-stat:first-child { padding-top: 0; }
.spotlight-feature-stat:last-child { border-bottom: none; padding-bottom: 0; }
.spotlight-stat-value {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.022em;
  line-height: 1;
  margin-bottom: 6px;
}
.spotlight-stat-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-weight: 500;
}

/* Separateur */
.spotlight-divider {
  height: 0.5px;
  background: var(--line);
  margin: 16px 0 48px;
}

/* En-tete des productions recentes */
.spotlight-recent-head {
  margin-bottom: 32px;
}
.spotlight-recent-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-weight: 500;
}

/* Grille des 3 cartes */
.spotlight-recent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.spotlight-card {
  background: var(--paper);
  border: 0.5px solid var(--line);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s var(--ease);
}
.spotlight-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 27, 56, 0.08);
  border-color: var(--accent);
}
.spotlight-card-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}
.spotlight-card-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.014em;
  color: var(--ink);
  margin: 0 0 14px 0;
}
.spotlight-card-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.spotlight-card-excerpt {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 24px;
  flex: 1;
}
.spotlight-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-weight: 500;
  padding-top: 16px;
  border-top: 0.5px solid var(--line);
}
.spotlight-card-meta .dot-sep { color: var(--line); }

/* Responsive */
@media (max-width: 980px) {
  .spotlight-feature { grid-template-columns: 1fr; gap: 32px; }
  .spotlight-feature-visual { padding: 24px 28px; }
  .spotlight-recent-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 640px) {
  .home-spotlight { padding: 64px var(--gutter); }
  .spotlight-feature { padding: 24px 0 32px; }
  .spotlight-stat-value { font-size: 28px; }
  .spotlight-card { padding: 24px 22px; }
}


/* ============================================================
   MANIFESTE — Nouveau format multi-paragraphes (au lieu d'une citation)
   ============================================================ */
.manifesto-body {
  margin: 32px 0 28px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.manifesto-body p {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.5;
  color: var(--ink);
  font-weight: 300;
  letter-spacing: -0.012em;
  margin-bottom: 22px;
  text-align: center;
}
.manifesto-body p:last-child { margin-bottom: 0; }
.manifesto-body em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.manifesto-body strong {
  font-weight: 500;
  color: var(--ink);
}

@media (max-width: 640px) {
  .manifesto-body p { font-size: 18px; line-height: 1.55; }
}


/* ============================================================
   HARMONISATION : tous les CTA principaux suivent le style pill premium
   ============================================================ */
.spotlight-feature-cta,
.contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: var(--accent);
  color: white;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid var(--accent);
  border-radius: 999px;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.spotlight-feature-cta:hover,
.contact-cta:hover {
  background: #134985;
  border-color: #134985;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(24, 95, 165, 0.25);
}
.spotlight-feature-cta:active,
.contact-cta:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(24, 95, 165, 0.2);
}
.spotlight-feature-cta svg,
.contact-cta svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}
.spotlight-feature-cta:hover svg,
.contact-cta:hover svg {
  transform: translateX(4px);
}

/* Les CTA tertiaires (cards dashboards/projets) restent en underline avec animation premium */
.dashboard-card-cta,
.project-card-cta,
.bulletin-card-cta {
  position: relative;
  transition: gap 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              color 0.25s ease;
}
.dashboard-card-cta svg,
.project-card-cta svg,
.bulletin-card-cta svg {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.dashboard-card-link:hover .dashboard-card-cta svg,
.project-card-link:hover .project-card-cta svg,
.bulletin-card-link:hover .bulletin-card-cta svg {
  transform: translateX(4px);
}


/* ============================================================
   PAGE MEMBRE D'EQUIPE — Profil institutionnel
   ============================================================ */
.member-page {
  padding: 64px var(--gutter) 120px;
  background: var(--bg);
}
.member-inner {
  max-width: 880px;
  margin: 0 auto;
}

.member-breadcrumb {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-bottom: 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.member-breadcrumb a {
  color: var(--ink-mute);
  text-decoration: none;
  transition: color 0.2s;
}
.member-breadcrumb a:hover { color: var(--accent); }
.member-breadcrumb .sep { color: var(--line); }

.member-header {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 0.5px solid var(--line);
}
.member-photo-wrap {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--paper);
  border: 0.5px solid var(--line);
}
.member-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.member-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}
.member-name {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin: 0 0 12px 0;
}
.member-title {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--ink-soft);
  font-weight: 300;
  margin: 0;
  letter-spacing: -0.005em;
}

.member-bio {
  margin-bottom: 56px;
}
.member-bio-intro {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.012em;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 0.5px solid var(--line);
}
.member-bio-paragraph {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 18px;
  letter-spacing: -0.005em;
}
.member-bio-paragraph:last-child { margin-bottom: 0; }

.member-expertise {
  background: var(--paper);
  border: 0.5px solid var(--line);
  border-radius: 14px;
  padding: 32px 36px;
  margin-bottom: 40px;
}
.member-expertise-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}
.member-expertise-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.member-expertise-list li {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 400;
  padding: 12px 0;
  border-bottom: 0.5px solid var(--line);
  letter-spacing: -0.005em;
}
.member-expertise-list li:last-child { border-bottom: none; }
.member-expertise-list li::before {
  content: '— ';
  color: var(--accent);
  font-weight: 600;
  margin-right: 8px;
}

.member-contact-block {
  margin-bottom: 56px;
  padding-top: 24px;
  border-top: 0.5px solid var(--line);
}
.member-contact-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 12px;
}
.member-contact-info {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 300;
  margin: 0;
}
.member-contact-link {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(24, 95, 165, 0.3);
  transition: border-bottom-color 0.2s;
}
.member-contact-link:hover {
  border-bottom-color: var(--accent);
}

.member-footer {
  padding-top: 32px;
  border-top: 0.5px solid var(--line);
}

/* Responsive */
@media (max-width: 720px) {
  .member-header {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .member-photo-wrap {
    margin: 0 auto;
    width: 160px;
    height: 160px;
  }
  .member-expertise { padding: 24px 22px; }
}


/* Sous-titre supplementaire (ex: role professionnel externe) */
.member-second-role {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: var(--ink-mute);
  font-weight: 300;
  margin: 8px 0 0 0;
  letter-spacing: -0.005em;
}

@media (max-width: 720px) {
  .member-second-role { font-size: 14px; }
}
