/* ═══════════════════════════════════════════════════════════════
   ASSAS CONCURRENCE — Feuille de styles partagée
   ═══════════════════════════════════════════════════════════════ */

/* ─── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #111;
  background: #fff;
  overflow-x: hidden;
}

/* ─── VARIABLES ────────────────────────────────────────────────── */
:root {
  --blue:    #003399;
  --blue-dk: #001f66;
  --red:     #990000;
  --white:   #ffffff;
  --light:   #f4f5f8;
  --nav-h:   72px;
}

/* ─── NAVIGATION ───────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: var(--nav-h);
  transition: background 0.4s, box-shadow 0.4s;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 24px rgba(0,51,153,.10);
}
.nav-logo {
  display: flex; align-items: center;
  text-decoration: none;
  height: 44px;
}
.nav-logo svg {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.4s;
}
#navbar.scrolled .nav-logo svg { filter: none; }

.nav-pill {
  display: flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  padding: 6px 8px;
  transition: background 0.4s, border-color 0.4s;
}
#navbar.scrolled .nav-pill {
  background: var(--light);
  border-color: #dde1ec;
}
.nav-pill a {
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
#navbar.scrolled .nav-pill a { color: var(--blue); }
.nav-pill a:hover {
  background: var(--blue);
  color: var(--white) !important;
}
.nav-right { display: flex; align-items: center; gap: 12px; }
.btn-contact {
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 100px;
  padding: 10px 22px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
#navbar.scrolled .btn-contact { color: var(--blue); border-color: var(--blue); }
.btn-contact:hover { background: var(--blue); color: var(--white) !important; border-color: var(--blue) !important; }

/* ─── HERO ─────────────────────────────────────────────────────── */
#hero {
  position: relative; width: 100%; height: 100vh;
  min-height: 700px; overflow: hidden; background: #06091a;
}
.hero-panel-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0px, transparent 78px, rgba(255,255,255,0.018) 78px, rgba(255,255,255,0.018) 79px),
    linear-gradient(180deg, #06091a 0%, #0b1030 100%);
}
.hero-frame {
  position: absolute; top: 0; bottom: 0;
  left: 0; right: 0;
  overflow: hidden; z-index: 1;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.hero-frame-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(6,9,26,0.25) 0%, transparent 30%, transparent 55%, rgba(6,9,26,0.7) 100%),
    linear-gradient(to bottom, rgba(6,9,26,0.2) 0%, rgba(6,9,26,0.0) 30%, rgba(6,9,26,0.5) 70%, rgba(6,9,26,0.88) 100%);
}
.hero-arc {
  position: absolute; left: calc(21vw - 280px); top: 4%;
  width: min(500px,34vw); height: min(500px,34vw);
  border: 1px solid rgba(255,255,255,0.14); border-radius: 50%;
  pointer-events: none; z-index: 5;
}
.hero-eyebrow {
  position: absolute; top: calc(var(--nav-h) + 28px);
  left: 0; right: 0; z-index: 10;
  text-align: center;
  font-size: 10px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,0.45); white-space: nowrap;
}
.hero-title-block {
  position: absolute; bottom: 0; left: 0; right: 420px; z-index: 10;
  text-align: left; padding: 0 0 56px 64px; pointer-events: none;
  overflow: visible;
}
.hero-title { display: flex; flex-direction: column; align-items: flex-start; gap: 0; overflow: visible; }
.hero-line-1 {
  font-family: 'Playfair Display', serif; font-weight: 600;
  font-size: clamp(44px, 8vw, 112px); line-height: 0.85;
  color: var(--white); text-transform: uppercase;
  letter-spacing: clamp(4px, 1.2vw, 18px);
  display: inline-block; white-space: nowrap;
}
.hero-line-2 {
  font-family: 'Playfair Display', serif; font-weight: 600;
  font-size: clamp(22px, 4.2vw, 58px); line-height: 0.9;
  color: var(--white); text-transform: uppercase;
  letter-spacing: clamp(1px, 0.15vw, 2px);
  display: inline-block; white-space: nowrap;
}
.hero-scroll {
  position: absolute; bottom: 12px; right: 44px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; z-index: 10;
}
.hero-scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(1.15); }
}

/* ─── HERO NEWS PANEL ──────────────────────────────────────────── */
.hero-news-panel {
  position: absolute;
  right: 0;
  top: var(--nav-h);
  bottom: 0;
  width: 500px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 0;
  pointer-events: auto;
}
.hero-nc {
  display: flex;
  align-items: stretch;
  flex: 1;
  min-height: 120px;
  max-height: 210px;
  background: rgba(255,255,255,0.97);
  text-decoration: none;
  overflow: hidden;
  border-radius: 16px 0 0 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.hero-nc:hover {
  background: #fff;
  transform: translateX(-8px);
  box-shadow: 0 8px 36px rgba(0,0,0,0.25);
}
.hero-nc-body {
  flex: 1;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-nc-cat {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.hero-nc:nth-child(2) .hero-nc-cat { color: var(--red); }
.hero-nc:nth-child(3) .hero-nc-cat { color: #0d1440; }
.hero-nc-title {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #0d1440;
  line-height: 1.35;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-nc-date {
  font-size: 13px;
  color: #999;
  font-weight: 500;
}
.hero-nc-img {
  width: 160px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}
.hero-nc-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.92);
  background: var(--blue);
  padding: 14px 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  flex-shrink: 0;
}
.hero-nc:nth-child(2) .hero-nc-label { background: var(--red); }
.hero-nc:nth-child(3) .hero-nc-label { background: #0d1440; }

/* ─── PAGE HERO (pages internes) ───────────────────────────────── */
.page-hero {
  background: var(--blue-dk);
  padding: calc(var(--nav-h) + 60px) 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0px, transparent 78px, rgba(255,255,255,0.015) 78px, rgba(255,255,255,0.015) 79px);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-tag {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 20px;
}
.page-hero-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 80px); font-weight: 700;
  color: var(--white); line-height: 1.05;
}
.page-hero-line { width: 48px; height: 3px; background: var(--red); margin-top: 24px; }

/* ─── SECTIONS COMMONS ─────────────────────────────────────────── */
section { position: relative; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 60px; }
.section-tag {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 32px;
}
.section-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); }
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px); font-weight: 700; line-height: 1.1;
}
.section-divider { width: 48px; height: 3px; background: var(--red); margin: 24px 0 32px; }
.btn-outline {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  border: 2px solid currentColor; border-radius: 100px;
  padding: 12px 28px; text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-outline.blue { color: var(--blue); }
.btn-outline.blue:hover { background: var(--blue); color: var(--white); }
.btn-outline.white { color: var(--white); }
.btn-outline.white:hover { background: var(--white); color: var(--blue); }
.btn-primary {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  background: var(--blue); color: var(--white);
  border: 2px solid var(--blue); border-radius: 100px;
  padding: 12px 28px; text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-primary:hover { background: var(--blue-dk); border-color: var(--blue-dk); }

/* ─── SECTION: PRÉSENTATION ────────────────────────────────────── */
#presentation { background: var(--white); padding: 120px 0; }
.pres-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.pres-left .section-heading { color: var(--blue); }
.pres-left .section-tag { color: var(--blue); }
.pres-numbers { display: flex; gap: 40px; margin-top: 48px; }
.pres-number-item { display: flex; flex-direction: column; }
.pres-number-item strong {
  font-size: 36px; font-weight: 900; color: var(--blue); line-height: 1;
}
.pres-number-item span { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #888; margin-top: 4px; }
.pres-right p { color: #444; line-height: 1.8; margin-bottom: 20px; }
.pres-img-caption { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #aaa; margin-top: 10px; }

/* ─── SECTION: ACTUALITÉS ──────────────────────────────────────── */
#actualites { background: var(--blue); padding: 120px 0; }
.actu-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 64px;
}
.actu-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.actu-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.25s, transform 0.25s;
  text-decoration: none;
  display: block;
}
.actu-card:hover { border-color: rgba(255,255,255,0.3); transform: translateY(-4px); }
.actu-card-img {
  width: 100%; height: 180px;
  object-fit: cover; display: block;
}
.actu-card-img-placeholder {
  height: 180px;
  background: linear-gradient(135deg, #001f66, #003399);
  display: flex; align-items: center; justify-content: center;
}
.actu-card-body { padding: 20px; }
.actu-card-cat {
  display: inline-block;
  font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  background: rgba(153,0,0,0.3); color: #ffaaaa;
  padding: 4px 10px; border-radius: 100px; margin-bottom: 12px;
}
.actu-card-cat.ev { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.actu-card-title {
  font-size: 14px; font-weight: 600; line-height: 1.5;
  color: var(--white); margin-bottom: 12px;
}
.actu-card-date { font-size: 11px; color: rgba(255,255,255,0.35); letter-spacing: 1px; }

/* ─── LISTING PAGES (actualites.html, veille.html) ─────────────── */
.listing-main { background: var(--white); padding: 80px 0 120px; }
.listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.listing-card {
  border: 1px solid #e0e4ef;
  border-radius: 16px; overflow: hidden;
  cursor: pointer; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-decoration: none; display: block; color: inherit;
}
.listing-card:hover { border-color: var(--blue); box-shadow: 0 8px 32px rgba(0,51,153,0.08); transform: translateY(-3px); }
.listing-card-img { width: 100%; height: 220px; object-fit: cover; display: block; background: var(--light); }
.listing-card-body { padding: 24px; }
.listing-card-cat {
  display: inline-block;
  font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  background: rgba(0,51,153,0.08); color: var(--blue);
  padding: 4px 10px; border-radius: 100px; margin-bottom: 14px;
}
.listing-card-title { font-size: 16px; font-weight: 700; line-height: 1.4; color: #111; margin-bottom: 10px; }
.listing-card-excerpt { font-size: 14px; line-height: 1.7; color: #666; margin-bottom: 16px; }
.listing-card-date { font-size: 11px; color: #aaa; letter-spacing: 1px; }
.listing-filters {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px;
}
.listing-filter {
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 8px 18px; border-radius: 100px;
  border: 2px solid #dde1ec; background: transparent; color: #666;
  cursor: pointer; transition: all 0.2s;
}
.listing-filter:hover { border-color: var(--blue); color: var(--blue); }
.listing-filter.active { background: var(--blue); border-color: var(--blue); color: var(--white); }
.listing-empty { padding: 80px 0; text-align: center; color: #aaa; font-size: 16px; }

/* ─── SECTION: MEMBRES ─────────────────────────────────────────── */
#membres { background: var(--white); padding: 120px 0; }
.membres-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 64px;
}
.membres-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.membre-card { cursor: pointer; }
.membre-photo { position: relative; margin-bottom: 16px; }
.membre-photo-inner {
  width: 100%; aspect-ratio: 1;
  background: linear-gradient(160deg, #e0e8f8, #eef2fb);
  border-radius: 16px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.membre-photo-inner img { width: 100%; height: 100%; object-fit: cover; }
.membre-photo-initials {
  font-size: 32px; font-weight: 900; color: var(--blue); opacity: 0.4;
  font-family: 'Inter', sans-serif;
}
.membre-overlay {
  position: absolute; inset: 0; background: var(--blue);
  opacity: 0; border-radius: 16px;
  transition: opacity 0.3s;
}
.membre-card:hover .membre-overlay { opacity: 0.06; }
.membre-name { font-size: 15px; font-weight: 700; color: #111; margin-bottom: 4px; }
.membre-role { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--red); }
.membre-pole { font-size: 12px; color: #888; margin-top: 4px; }

/* ─── MEMBRES — PAGE COMPLÈTE ──────────────────────────────────── */
.membres-listing { background: var(--white); padding: 80px 0 120px; }
.membres-listing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 48px; }
.pole-section { margin-bottom: 64px; }
.pole-title {
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--blue); border-bottom: 2px solid #eee; padding-bottom: 16px; margin-bottom: 32px;
  display: flex; align-items: center; gap: 10px;
}

/* ─── SECTION: VEILLE CRM ──────────────────────────────────────── */
#veille { background: var(--blue-dk); padding: 120px 0; }
.veille-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 48px;
}
.veille-filters {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 48px;
}
.veille-filter {
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 8px 18px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.2); background: transparent;
  color: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.2s;
}
.veille-filter:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }
.veille-filter.active { background: var(--white); border-color: var(--white); color: var(--blue); }
.veille-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.veille-article {
  background: rgba(255,255,255,0.04);
  padding: 32px; cursor: pointer;
  transition: background 0.2s;
  text-decoration: none; display: block; color: inherit;
  position: relative;
}
.veille-article:hover { background: rgba(255,255,255,0.08); }
.veille-article-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.veille-tag {
  font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.veille-date { font-size: 11px; color: rgba(255,255,255,0.25); }
.veille-title { font-size: 14px; font-weight: 600; color: var(--white); line-height: 1.5; margin-bottom: 12px; }
.veille-excerpt { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; }
.veille-arrow {
  position: absolute; right: 32px; bottom: 28px;
  font-size: 18px; color: rgba(255,255,255,0.2);
  transition: transform 0.2s, color 0.2s;
}
.veille-article:hover .veille-arrow { transform: translateX(6px); color: rgba(255,255,255,0.6); }

/* ─── ARTICLE DETAIL PAGE ──────────────────────────────────────── */
.article-main { background: var(--white); padding: 80px 0 120px; }
.article-container { max-width: 800px; margin: 0 auto; padding: 0 40px; }
.article-meta {
  display: flex; align-items: center; gap: 16px; margin-bottom: 32px;
}
.article-cat-badge {
  font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  background: var(--blue); color: var(--white);
  padding: 6px 14px; border-radius: 100px;
}
.article-date-meta { font-size: 13px; color: #aaa; }
.article-img { width: 100%; height: 400px; object-fit: cover; border-radius: 2px; margin: 32px 0; background: var(--light); }
.article-body { font-size: 16px; line-height: 1.85; color: #333; }
.article-body p { margin-bottom: 24px; }
.article-body h2 { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--blue); margin: 40px 0 16px; }
.article-body h3 { font-size: 18px; font-weight: 700; color: #222; margin: 32px 0 12px; }
.article-body strong { color: #111; }
.article-body a { color: var(--blue); }
.article-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue); text-decoration: none; margin-bottom: 48px;
  transition: gap 0.2s;
}
.article-back:hover { gap: 12px; }

/* ─── ENGAGEMENTS ──────────────────────────────────────────────── */
#engagements {
  position: relative; padding: 140px 0;
  overflow: hidden; background: #060a1e;
}
.engagements-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #060a1e 0%, #0d1540 50%, #060a1e 100%);
}
.engagements-border {
  position: absolute; inset: 40px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1px; pointer-events: none;
}
.engagements-arc {
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  border: 1px solid rgba(255,255,255,0.04); border-radius: 50%;
  pointer-events: none;
}
.engagements-content {
  position: relative; z-index: 1;
  max-width: 640px; margin: 0 auto;
  text-align: center; padding: 0 40px;
}
.engagements-content p { color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 40px; }

/* ─── FOOTER ───────────────────────────────────────────────────── */
footer { background: #06091a; padding: 80px 0 40px; }
.footer-inner {
  display: flex; flex-direction: column; align-items: center; gap: 40px;
}
.footer-logo-svg { height: 56px; width: auto; opacity: 0.85; filter: brightness(0) invert(1); }
.footer-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }
.footer-links {
  display: flex; gap: 32px; flex-wrap: wrap; justify-content: center;
}
.footer-links a {
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.footer-social a:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.2); letter-spacing: 1px; }
.footer-admin-link { margin-top: 12px; }
.footer-admin-link a {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; color: rgba(255,255,255,0.15); letter-spacing: 1px;
  text-decoration: none; text-transform: uppercase; font-weight: 500;
  transition: color 0.2s;
}
.footer-admin-link a:hover { color: rgba(255,255,255,0.45); }
.footer-watermark {
  position: absolute; bottom: 0; right: 40px;
  font-family: 'Inter', sans-serif; font-size: 120px; font-weight: 900;
  color: rgba(255,255,255,0.03); letter-spacing: -4px;
  pointer-events: none; line-height: 1;
}

/* ─── SCROLL ANIMATIONS ─────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ─── LOADING SKELETON ──────────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, #e8eaf0 25%, #f4f5f8 50%, #e8eaf0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}
.skeleton-dark {
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ─── HAMBURGER ─────────────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.12); }
#navbar.scrolled .nav-hamburger:hover { background: var(--light); }
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
  transform-origin: center;
}
#navbar.scrolled .nav-hamburger span { background: var(--blue); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE MENU ───────────────────────────────────────────────── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: var(--blue-dk);
  display: flex; flex-direction: column;
  padding: calc(var(--nav-h) + 32px) 40px 48px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-menu-inner { display: flex; flex-direction: column; justify-content: center; flex: 1; }
.mobile-menu-links { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu-links a {
  font-size: clamp(28px, 7vw, 44px);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: 2px; color: rgba(255,255,255,0.55);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.mobile-menu-links a:hover { color: #fff; }
.mobile-menu-contact {
  margin-top: 32px !important;
  font-size: clamp(14px, 4vw, 18px) !important;
  font-weight: 700 !important; letter-spacing: 3px !important;
  color: #fff !important; border: 2px solid rgba(255,255,255,0.4) !important;
  border-radius: 100px; padding: 14px 28px !important;
  text-align: center; display: block;
  border-bottom: none !important;
}
.mobile-menu-contact:hover { background: rgba(255,255,255,0.12) !important; }

/* ─── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .actu-grid { grid-template-columns: repeat(2, 1fr); }
  .membres-grid, .membres-listing-grid { grid-template-columns: repeat(3, 1fr); }
  .listing-grid { grid-template-columns: repeat(2, 1fr); }
  .pres-grid { gap: 48px; }
  .hero-news-panel { width: 400px; }
  .hero-title-block { right: 320px; }
}

@media (max-width: 768px) {
  /* ── Nav ── */
  .container { padding: 0 18px; }
  #navbar { padding: 0 18px; }
  .nav-pill, .btn-contact { display: none; }
  .nav-hamburger { display: flex; }

  /* ── Hero ── */
  #hero { height: 100svh; min-height: 600px; }
  .hero-news-panel { display: none; }
  .hero-title-block { right: 0; padding: 0 24px 60px 24px; }
  .hero-line-1 { font-size: clamp(40px, 12vw, 72px); letter-spacing: clamp(2px, 1vw, 10px); }
  .hero-line-2 { font-size: clamp(20px, 6.5vw, 38px); letter-spacing: clamp(0px, 0.3vw, 2px); }
  .hero-eyebrow { font-size: 9px; letter-spacing: 2px; }
  .hero-arc { display: none; }
  .hero-scroll { display: none; }

  /* ── Sections index ── */
  #presentation { padding: 64px 0 !important; }
  .pres-grid { grid-template-columns: 1fr; gap: 36px; }
  .pres-left { order: 1; }
  .pres-right { order: 2; }
  .pres-numbers { flex-wrap: wrap; gap: 24px; margin-top: 32px; }
  .pres-number-item strong { font-size: 28px; }
  .pres-img-block { margin-top: 32px !important; }
  #actualites { padding: 72px 0; }
  #membres { padding: 72px 0; }
  #veille { padding: 72px 0; }
  #engagements { padding: 72px 0; }
  .engagements-content { padding: 40px 24px !important; }

  /* ── Grilles ── */
  .actu-grid { grid-template-columns: 1fr; }
  .membres-grid { grid-template-columns: repeat(2, 1fr); }
  .membres-listing-grid { grid-template-columns: repeat(2, 1fr); }
  .veille-grid { grid-template-columns: 1fr; }
  .listing-grid { grid-template-columns: 1fr; }
  .actu-header, .membres-header, .veille-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .pole-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* ── Filtres (scroll horizontal) ── */
  .listing-filters {
    display: flex; flex-wrap: nowrap;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    gap: 8px; padding-bottom: 6px;
    scrollbar-width: none;
  }
  .listing-filters::-webkit-scrollbar { display: none; }
  .listing-filter { flex-shrink: 0; white-space: nowrap; }

  /* ── Page heroes ── */
  .page-hero { padding: calc(var(--nav-h) + 36px) 0 52px; }
  .page-hero h1 { font-size: clamp(28px, 9vw, 52px); }

  /* ── Article ── */
  .article-hero { padding: calc(var(--nav-h) + 36px) 0 52px; }
  .article-hero-inner { padding: 0 18px; }
  .article-hero h1 { font-size: clamp(24px, 7vw, 40px); }
  .article-hero-meta { gap: 12px; }
  .article-page-main { padding: 40px 0 72px; }
  .article-page-container { padding: 0 18px; }
  .article-page-body { font-size: 16px; line-height: 1.8; }
  .article-page-body h2 { font-size: 22px; margin: 36px 0 14px; }
  .article-page-body blockquote { padding: 12px 16px; }
  .article-featured-img { margin-bottom: 36px; max-height: 240px; }
  .article-grid { grid-template-columns: 1fr !important; }
  .article-sidebar { display: none; }

  /* ── Veille listing ── */
  .veille-listing { padding: 48px 0 80px; }
  .veille-full-grid { grid-template-columns: 1fr !important; }
  .veille-article { padding: 24px 20px; }

  /* ── Actualités listing ── */
  .listing-main { padding: 0; }

  /* ── Profil membre ── */
  .profile-grid { grid-template-columns: 1fr; gap: 32px; }
  .profile-photo-block { position: static; }
  .profile-photo-wrap { max-width: 200px; margin: 0 auto 24px; }
  .profile-name { font-size: clamp(28px, 9vw, 44px); }
  .membre-profile-page { padding: 48px 0 80px; }

  /* ── Footer ── */
  .footer-inner { flex-direction: column; align-items: center; gap: 28px; }
  .footer-links { flex-wrap: wrap; gap: 14px; }
  .footer-logo-svg { max-width: 140px; }

  /* ── Typographie ── */
  .section-heading { font-size: clamp(26px, 7.5vw, 42px); }
  .section-divider { margin: 20px 0 24px; }
}

/* ── Très petits écrans ── */
@media (max-width: 400px) {
  .hero-line-1 { font-size: clamp(34px, 11vw, 52px); }
  .hero-line-2 { font-size: clamp(17px, 6vw, 28px); }
  .membres-grid, .membres-listing-grid { grid-template-columns: 1fr; }
  .pole-grid { grid-template-columns: 1fr !important; }
}
