/*
Theme Name: Cites Benin
Theme URI: https://citesbenin.com
Author: Cités Bénin
Description: Thème officiel de Cités Bénin – Au cœur des communes qui bougent
Version: 3.1
License: GNU General Public License v2
Text Domain: cites-benin
*/

/* ══════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════ */
:root {
  --navy:        #0A1D3D;
  --navy-mid:    #0d2449;
  --green:       #128A3A;
  --green-deep:  #0a5c27;
  --orange:      #F28C1B;
  --orange-dark: #d4780f;
  --light:       #F4F5F7;
  --white:       #ffffff;
  --dark:        #1a1a2e;
  --text:        #2d3748;
  --muted:       #718096;
  --border:      #e8ecf2;
  --green-light: #edf7f1;
  --orange-light:#fef4e6;
  --navy-light:  #eaecf4;
  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   18px;
  --shadow-sm:   0 1px 4px rgba(10,29,61,0.06);
  --shadow:      0 4px 20px rgba(10,29,61,0.09);
  --shadow-lg:   0 8px 40px rgba(10,29,61,0.14);
  --transition:  all 0.22s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--light);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width:100%; height:auto; display:block; }
a { color:inherit; text-decoration:none; }
button { font-family: inherit; cursor:pointer; }

/* ══════════════════════════════════════════
   TOP BAR — date + réseaux
══════════════════════════════════════════ */
.top-bar {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0;
  height: 32px;
  display: flex;
  align-items: center;
}
.top-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
}
.top-bar-date { letter-spacing: 0.5px; }
.top-bar-socials { display: flex; gap: 14px; }
.top-bar-socials a {
  color: rgba(255,255,255,0.5);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase;
  transition: color 0.2s;
}
.top-bar-socials a:hover { color: var(--orange); }

/* ══════════════════════════════════════════
   NAVBAR PRINCIPALE
══════════════════════════════════════════ */
nav#site-nav {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(10,29,61,0.10);
  border-bottom: 3px solid var(--green);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  overflow: hidden;
}
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 68px;
  overflow: hidden;
  margin-right: auto;
}
.site-logo img,
.site-logo a img,
.custom-logo-link,
.custom-logo-link img,
.custom-logo {
  height: 52px !important;
  max-height: 52px !important;
  width: auto !important;
  max-width: 200px !important;
  object-fit: contain !important;
  display: block !important;
}

/* Menu desktop */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
}
.nav-menu li { position: relative; }
.nav-menu li a {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 15px;
  border-radius: var(--radius-sm);
  display: block;
  white-space: nowrap;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}
.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 15px; right: 15px;
  height: 2px; background: var(--green);
  transform: scaleX(0);
  transition: transform 0.22s ease;
  border-radius: 2px;
}
.nav-menu li a:hover { color: var(--green); }
.nav-menu li a:hover::after,
.nav-menu .current-menu-item > a::after { transform: scaleX(1); }
.nav-menu .current-menu-item > a { color: var(--green); }

/* Bouton recherche */
.nav-search-btn {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
  color: var(--navy);
  transition: var(--transition);
}
.nav-search-btn:hover { background: var(--green); color: white; border-color: var(--green); }
.nav-search-panel {
  display: none;
  position: absolute;
  top: calc(100% + 3px);
  left: 0; right: 0;
  background: var(--white);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--green);
  z-index: 999;
}
.nav-search-panel.open { display: block; }
.nav-search-form-full {
  max-width: 1280px; margin: 0 auto;
  display: flex; gap: 12px; align-items: center;
}
.nav-search-form-full input {
  flex: 1; padding: 12px 18px;
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  font-size: 15px; font-family: inherit; outline: none;
  transition: border-color 0.2s;
}
.nav-search-form-full input:focus { border-color: var(--green); }
.nav-search-form-full button {
  padding: 12px 24px; background: var(--green); color: white;
  border: none; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 700; font-family: inherit;
}

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 38px; height: 38px;
  background: var(--light); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 6px; flex-shrink: 0;
}
.nav-hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--navy); border-radius: 2px; transition: all 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile */
.mobile-menu {
  display: none; background: var(--white);
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { max-height: 520px; }
.mobile-menu a {
  display: block; color: var(--navy);
  font-size: 14px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; padding: 13px 1.5rem;
  border-bottom: 1px solid var(--border); transition: var(--transition);
}
.mobile-menu a:hover { color: var(--green); background: var(--green-light); }
.mobile-menu-search { padding: 14px 1.5rem; border-bottom: 1px solid var(--border); }
.mobile-menu-search input {
  width: 100%; padding: 10px 14px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border); font-size: 14px; font-family: inherit; outline: none;
}

/* ══════════════════════════════════════════
   TICKER
══════════════════════════════════════════ */
.ticker {
  background: var(--green);
  padding: 0;
  height: 34px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ticker-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 1.5rem;
  display: flex; align-items: center;
  gap: 0; width: 100%; overflow: hidden;
}
.ticker-label {
  background: var(--orange);
  color: white;
  font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 4px 12px; border-radius: 4px;
  white-space: nowrap; flex-shrink: 0;
}
.ticker-track {
  flex: 1; overflow: hidden;
  margin-left: 20px; position: relative;
}
.ticker-content {
  font-size: 12px; color: rgba(255,255,255,0.95);
  font-weight: 500; white-space: nowrap;
  display: inline-block;
  animation: ticker-scroll 30s linear infinite;
}
.ticker-content a { color: white; }
@keyframes ticker-scroll {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* ══════════════════════════════════════════
   HERO — SECTION À LA UNE
   Style immersif inspiré des grands médias
══════════════════════════════════════════ */
.hero {
  background: var(--navy);
  padding: 1.75rem 0;
}
.hero-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 1.25rem;
  align-items: start;
}

/* Grande carte principale */
.hero-main {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  text-decoration: none;
  background: #000;
}
.hero-main-img {
  position: relative;
  width: 100%; height: 420px;
  overflow: hidden;
}
.hero-main-img img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; opacity: 0.82;
  transition: opacity 0.4s, transform 0.5s;
}
.hero-main:hover .hero-main-img img { opacity: 0.72; transform: scale(1.03); }
/* Gradient immersif du bas */
.hero-main-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 75%;
  background: linear-gradient(to top, rgba(5,15,35,0.97) 0%, rgba(5,15,35,0.6) 55%, transparent 100%);
  pointer-events: none;
}
/* Contenu superposé sur l'image */
.hero-main-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
  z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green); color: white;
  font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 4px 12px; border-radius: 4px;
  margin-bottom: 10px;
}
.hero-badge-dot {
  width: 6px; height: 6px; background: white;
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.hero-cat-tag {
  display: inline-block;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--orange);
  margin-bottom: 8px;
}
.hero-main-title {
  font-size: 26px; font-weight: 900; color: white;
  line-height: 1.25; margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.hero-main-excerpt {
  font-size: 14px; color: rgba(255,255,255,0.78);
  line-height: 1.6; margin-bottom: 14px;
  font-family: 'Lora', serif; font-style: italic;
}
.hero-main-meta {
  display: flex; gap: 10px; align-items: center;
  font-size: 11px; color: rgba(255,255,255,0.6);
  flex-wrap: wrap;
}
.hero-meta-sep { color: rgba(255,255,255,0.3); }
.hero-read-more {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--orange); color: white;
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1px; padding: 7px 16px;
  border-radius: 4px; margin-top: 12px;
  transition: background 0.2s;
}
.hero-main:hover .hero-read-more { background: var(--orange-dark); }

/* Colonne secondaire hero — 4 mini-cartes empilées */
.hero-sidebar {
  display: flex; flex-direction: column; gap: 6px;
}
.hero-card {
  display: flex; gap: 0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
  text-decoration: none;
  transition: var(--transition);
}
.hero-card:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.2);
  transform: translateX(4px);
}
.hero-card-img {
  width: 90px; flex-shrink: 0;
  overflow: hidden; position: relative;
  background: var(--navy-mid);
}
.hero-card-img img {
  width: 100%; height: 100%; min-height: 78px;
  object-fit: cover; display: block;
}
.hero-card-img-placeholder {
  width: 100%; min-height: 78px;
  background: linear-gradient(135deg, #0d3d27, var(--green));
}
.hero-card-body { padding: 10px 12px; flex: 1; }
.hero-card-tag {
  font-size: 9px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 4px; display: block;
}
.hero-card-title {
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.9);
  line-height: 1.4; margin-bottom: 5px;
}
.hero-card-date {
  font-size: 10px; color: rgba(255,255,255,0.45);
}

/* ══════════════════════════════════════════
   BANDE DE NAVIGATION SECONDAIRE (catégories)
══════════════════════════════════════════ */
.cat-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 71px;
  z-index: 900;
}
.cat-nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 1.5rem;
  display: flex; align-items: center; gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-nav-inner::-webkit-scrollbar { display: none; }
.cat-nav-link {
  display: block; padding: 12px 18px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px;
  color: var(--muted); white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}
.cat-nav-link:hover,
.cat-nav-link.active { color: var(--green); border-bottom-color: var(--green); }
.cat-nav-link.current { color: var(--navy); border-bottom-color: var(--navy); }

/* ══════════════════════════════════════════
   MISE EN PAGE — grille principale + sidebar
══════════════════════════════════════════ */
.main {
  max-width: 1280px; margin: 0 auto;
  padding: 2.5rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  align-items: start;
}
.content-col { min-width: 0; }

/* Stats bar */
.stats-bar {
  display: flex; background: var(--white);
  border-radius: var(--radius); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); overflow: hidden;
  margin-bottom: 2.5rem;
}
.stat-item {
  flex: 1; text-align: center; padding: 1.1rem 0.5rem;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--green-light); }
.stat-number {
  font-size: 24px; font-weight: 900;
  color: var(--navy); display: block; line-height: 1;
  margin-bottom: 5px;
}
.stat-number span { color: var(--orange); }
.stat-label {
  font-size: 10px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 1px; font-weight: 700;
}

/* ── En-têtes de section ── */
.section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.25rem; padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  position: relative;
}
.section-header::before {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 48px; height: 2px;
  background: var(--green);
  border-radius: 2px;
}
.section-title {
  font-size: 15px; font-weight: 900;
  color: var(--navy); text-transform: uppercase;
  letter-spacing: 1.2px;
  display: flex; align-items: center; gap: 8px;
}
.section-title-bar {
  width: 4px; height: 18px;
  background: var(--orange);
  border-radius: 2px; flex-shrink: 0;
}
.section-link {
  font-size: 11px; font-weight: 700;
  color: var(--green); text-transform: uppercase;
  letter-spacing: 0.8px; padding: 5px 12px;
  border: 1.5px solid var(--green);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.section-link:hover { background: var(--green); color: white; }

/* Couleurs catégories */
.tag-actualites   { color: var(--navy); }
.tag-reportages   { color: var(--green); }
.tag-analyses     { color: #6d28d9; }
.tag-tribune      { color: #b45309; }
.tag-agenda       { color: #0369a1; }
.tag-opportunites { color: #dc2626; }
.tag-web-tv       { color: #7c3aed; }
.tag-sports       { color: #059669; }
.tag-podcasts     { color: #db2777; }
.tag-actu-tech    { color: #0284c7; }

/* ── Grille articles ── */
.articles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

/* Première carte plus grande */
.articles-grid .article-card:first-child {
  grid-column: 1 / -1;
  display: flex;
}
.articles-grid .article-card:first-child .article-card-img {
  width: 45%; flex-shrink: 0; height: auto; min-height: 220px;
}
.articles-grid .article-card:first-child .article-card-title { font-size: 17px; }

.article-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-decoration: none; display: block;
  transition: var(--transition);
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}
.article-card-img {
  width: 100%; height: 180px;
  overflow: hidden; position: relative;
  background: linear-gradient(135deg, #0a2d1a, var(--green));
}
.article-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.article-card:hover .article-card-img img { transform: scale(1.06); }
.article-card-body { padding: 1.1rem; }
.article-card-tag {
  font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.2px;
  margin-bottom: 7px;
  display: flex; align-items: center; gap: 5px;
}
.article-card-tag::before {
  content: ''; width: 3px; height: 14px;
  border-radius: 2px; background: currentColor; flex-shrink: 0;
}
.article-card-title {
  font-size: 15px; font-weight: 800;
  color: var(--navy); line-height: 1.35;
  margin-bottom: 8px;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}
.article-card-excerpt {
  font-size: 13px; color: var(--muted);
  line-height: 1.65; margin-bottom: 10px;
  font-family: 'Lora', serif;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.article-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; color: var(--muted);
  padding-top: 10px; border-top: 1px solid var(--border);
}
.read-time { display: flex; align-items: center; gap: 4px; }

/* ── Reportages (liste) ── */
.reportage-card {
  display: flex; background: var(--white);
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  margin-bottom: 1rem; text-decoration: none;
  transition: var(--transition);
}
.reportage-card:hover {
  box-shadow: var(--shadow); border-color: var(--green);
  transform: translateX(5px);
}
.reportage-card-img {
  width: 200px; flex-shrink: 0; overflow: hidden;
  background: linear-gradient(135deg,#0a2d1a,var(--green));
}
.reportage-card-img img { width:100%; height:100%; object-fit:cover; }
.reportage-card-body { padding: 1.25rem; flex: 1; }
.reportage-card-label {
  font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.2px;
  color: var(--green); margin-bottom: 8px;
  display: flex; align-items: center; gap: 6px;
}
.reportage-card-label::before { content:''; width:3px; height:14px; background:var(--green); border-radius:2px; }
.reportage-card-title {
  font-size: 17px; font-weight: 800;
  color: var(--navy); line-height: 1.35; margin-bottom: 8px;
}
.reportage-card-excerpt {
  font-size: 13px; color: var(--muted);
  line-height: 1.65; font-family: 'Lora', serif; margin-bottom: 10px;
}
.reportage-card-meta { font-size: 11px; color: var(--muted); }

/* ── Tribune ── */
.tribune-card {
  background: var(--navy); border-radius: var(--radius);
  padding: 1.5rem; margin-bottom: 1rem;
  position: relative; overflow: hidden;
  display: block; text-decoration: none;
  transition: var(--transition); border-left: 4px solid var(--orange);
}
.tribune-card::before {
  content: '"'; position: absolute;
  top: -20px; right: 20px;
  font-size: 120px; color: rgba(242,140,27,0.1);
  font-family: Georgia, serif; line-height: 1;
}
.tribune-card:hover { background: var(--navy-mid); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.tribune-tag {
  font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--orange); margin-bottom: 10px; display: block;
}
.tribune-title {
  font-size: 16px; font-weight: 700; color: white;
  line-height: 1.5; margin-bottom: 14px;
  font-family: 'Lora', serif; font-style: italic;
}
.tribune-author { display: flex; align-items: center; gap: 10px; }
.tribune-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--green); display: flex;
  align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: white; flex-shrink: 0;
}
.tribune-author-name { font-weight: 700; color: white; display: block; font-size: 13px; }
.tribune-author-info { font-size: 11px; color: rgba(255,255,255,0.55); }

/* ══════════════════════════════════════════
   SIDEBAR
══════════════════════════════════════════ */
.sidebar-col { min-width: 0; }
.sidebar-widget {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  overflow: hidden; margin-bottom: 1.5rem;
}
.widget-header {
  background: var(--navy); padding: 12px 16px;
  font-size: 11px; font-weight: 800; color: white;
  text-transform: uppercase; letter-spacing: 1.5px;
  display: flex; align-items: center; gap: 8px;
}
.widget-header-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}
.widget-body { padding: 1rem; }

/* Newsletter */
.newsletter-widget {
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--navy) 0%, #0d2f5e 100%);
  padding: 1.5rem; text-align: center; margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative; overflow: hidden;
}
.newsletter-widget::before {
  content: '📬';
  position: absolute; top: -10px; right: -10px;
  font-size: 80px; opacity: 0.06;
}
.newsletter-icon { font-size: 28px; margin-bottom: 8px; position: relative; }
.newsletter-title { font-size: 15px; font-weight: 800; color: white; margin-bottom: 4px; }
.newsletter-sub { font-size: 12px; color: rgba(255,255,255,0.6); margin-bottom: 14px; line-height: 1.5; }
.newsletter-form { display: flex; flex-direction: column; gap: 8px; }
.newsletter-input {
  padding: 11px 14px; border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08); color: white;
  font-size: 13px; font-family: inherit; outline: none; text-align: center;
  transition: border-color 0.2s;
}
.newsletter-input:focus { border-color: var(--orange); }
.newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-btn {
  padding: 11px; background: var(--orange); color: white;
  border: none; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 800; font-family: inherit;
  letter-spacing: 0.5px; transition: background 0.2s;
}
.newsletter-btn:hover { background: var(--orange-dark); }

/* Agenda */
.agenda-item {
  display: flex; gap: 12px; padding: 10px 0;
  border-bottom: 1px solid var(--border); text-decoration: none;
  transition: opacity 0.2s;
}
.agenda-item:last-child { border-bottom: none; }
.agenda-item:hover { opacity: 0.72; }
.agenda-date {
  width: 46px; height: 46px; background: var(--navy);
  border-radius: var(--radius-sm); display: flex;
  flex-direction: column; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.agenda-day { font-size: 17px; font-weight: 900; color: white; line-height: 1; }
.agenda-month { font-size: 8px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; }
.agenda-title { font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 3px; }
.agenda-commune { font-size: 11px; color: var(--muted); display: flex; align-items: center; gap: 4px; }
.commune-dot { width: 5px; height: 5px; background: var(--green); border-radius: 50%; }

/* Opportunités */
.opport-item { padding: 10px 0; border-bottom: 1px solid var(--border); text-decoration: none; display: block; transition: opacity 0.2s; }
.opport-item:last-child { border-bottom: none; }
.opport-item:hover { opacity: 0.72; }
.opport-badge { display: inline-block; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; padding: 2px 8px; border-radius: 20px; margin-bottom: 5px; }
.badge-emploi    { background: var(--green-light); color: var(--green); }
.badge-appel     { background: var(--orange-light); color: #b45309; }
.badge-marche    { background: var(--navy-light); color: var(--navy); }
.badge-formation { background: #ede9fe; color: #5b21b6; }
.opport-title { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 3px; line-height: 1.35; }
.opport-deadline { font-size: 11px; color: var(--muted); }

/* ══════════════════════════════════════════
   PAGE HERO (archives, recherche, pages internes)
══════════════════════════════════════════ */
.page-hero {
  background: var(--navy);
  padding: 3.5rem 1.5rem 3rem;
  text-align: center;
  border-bottom: 4px solid var(--green);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 0%, rgba(18,138,58,0.18) 0%, transparent 70%),
              radial-gradient(ellipse at 10% 100%, rgba(242,140,27,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-eyebrow {
  display: inline-block;
  background: var(--orange); color: white;
  font-size: 10px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.8px; padding: 4px 16px; border-radius: 4px;
  margin-bottom: 12px;
}
.page-hero-title {
  color: white; font-size: 32px; font-weight: 900; line-height: 1.2;
  margin: 0 0 10px;
}
.page-hero-sub {
  color: rgba(255,255,255,0.6); font-size: 14px; margin: 0 auto;
  max-width: 560px; line-height: 1.6;
}
/* Variantes couleur hero */
.page-hero--contact { border-bottom-color: var(--orange); }
.page-hero--contact::before {
  background: radial-gradient(ellipse at 70% 0%, rgba(242,140,27,0.18) 0%, transparent 70%);
}
.page-hero--equipe { border-bottom-color: #7c3aed; }
.page-hero--equipe::before {
  background: radial-gradient(ellipse at 50% 0%, rgba(124,58,237,0.15) 0%, transparent 70%);
}

.page-hero h1 { color: white; font-size: 26px; font-weight: 900; margin-top: 10px; }
.category-label {
  display: inline-block; background: var(--orange); color: white;
  font-size: 10px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.5px; padding: 4px 14px; border-radius: 4px;
}
.page-hero p { color: rgba(255,255,255,0.65); font-size: 14px; margin-top: 10px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ══════════════════════════════════════════
   LAYOUT PAGES INTERNES (2 colonnes)
══════════════════════════════════════════ */
.page-wrap {
  max-width: 1280px; margin: 0 auto;
  padding: 2rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  align-items: start;
}
.page-content-col { min-width: 0; display: flex; flex-direction: column; gap: 2rem; }
.page-sidebar-col { display: flex; flex-direction: column; gap: 1.25rem; }

/* ══════════════════════════════════════════
   BLOCS COMMUNS AUX PAGES INTERNES
══════════════════════════════════════════ */
.about-intro-block {
  display: flex; align-items: flex-start; gap: 1.25rem;
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); border-left: 5px solid var(--green);
  padding: 1.75rem; box-shadow: var(--shadow-sm);
}
.about-intro-icon { font-size: 2rem; flex-shrink: 0; margin-top: 2px; }
.about-intro-text {
  font-size: 16px; line-height: 1.75; color: var(--text);
  font-family: 'Lora', serif;
}

.about-section {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.about-section-title {
  font-size: 16px; font-weight: 900; color: var(--navy);
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 1.25rem;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green);
  display: flex; align-items: center; gap: 8px;
}
.about-section-title::before {
  content: ''; display: inline-block;
  width: 4px; height: 18px; background: var(--orange);
  border-radius: 2px; flex-shrink: 0;
}

/* ══════════════════════════════════════════
   PAGE QUI SOMMES-NOUS
══════════════════════════════════════════ */
/* Valeurs */
.values-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.value-card {
  padding: 1.25rem; border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.value-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 10px;
}
.value-card h3 {
  font-size: 13px; font-weight: 800; color: var(--navy);
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px;
}
.value-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* Couverture */
.coverage-list { display: flex; flex-direction: column; gap: 0; }
.coverage-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px; color: var(--text); line-height: 1.55;
}
.coverage-item:last-child { border-bottom: none; }
.coverage-dot {
  width: 8px; height: 8px; background: var(--green);
  border-radius: 50%; margin-top: 5px; flex-shrink: 0;
}
.coverage-item strong { color: var(--navy); font-weight: 700; }

/* Stats banner */
.about-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--navy); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}
.about-stat {
  padding: 1.5rem 1rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 6px;
}
.about-stat:last-child { border-right: none; }
.about-stat-num {
  font-size: 28px; font-weight: 900; color: var(--orange);
  line-height: 1;
}
.about-stat-num small { font-size: 16px; }
.about-stat-label { font-size: 11px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.8px; }

/* ══════════════════════════════════════════
   PAGE CONTACT
══════════════════════════════════════════ */
.contact-cards {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem;
}
.contact-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 1.5rem 1.25rem;
  text-align: center; box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.contact-card-icon {
  font-size: 2rem; margin-bottom: 10px;
  display: block;
}
.contact-card h3 {
  font-size: 12px; font-weight: 800; color: var(--navy);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px;
}
.contact-card-values {
  display: flex; flex-direction: column; gap: 4px;
}
.contact-card-values a, .contact-card-values span {
  font-size: 13px; color: var(--muted); line-height: 1.5;
  transition: color 0.2s;
}
.contact-card-values a:hover { color: var(--green); }

/* Formulaire */
.contact-form-block {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 12px; font-weight: 700; color: var(--navy);
  text-transform: uppercase; letter-spacing: 0.6px;
}
.form-group .req { color: var(--orange); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border); background: var(--light);
  font-family: inherit; font-size: 14px; color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green); background: var(--white);
  box-shadow: 0 0 0 3px rgba(18,138,58,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.form-submit {
  align-self: flex-start;
  background: var(--navy); color: white;
  border: none; padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.8px; cursor: pointer;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 6px;
}
.form-submit:hover { background: var(--green); transform: translateY(-1px); box-shadow: var(--shadow); }
.contact-success {
  background: var(--green-light); color: var(--green-deep);
  border: 1px solid rgba(18,138,58,0.25);
  padding: 14px 18px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600;
}
.contact-error {
  background: #fff0f0; color: #c0392b;
  border: 1px solid rgba(192,57,43,0.25);
  padding: 14px 18px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600;
}

/* Réseaux sociaux */
.social-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0.75rem; }
.social-card {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; padding: 1.1rem 0.75rem; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--navy); background: var(--white);
  transition: var(--transition);
}
.social-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.social-card .social-icon { font-size: 1.6rem; }
.social-fb:hover { background: #1877F2; color: white; border-color: #1877F2; }
.social-wa:hover { background: #25D366; color: white; border-color: #25D366; }
.social-yt:hover { background: #FF0000; color: white; border-color: #FF0000; }
.social-tw:hover { background: var(--navy); color: white; border-color: var(--navy); }

/* Sidebar coordonnées */
.contact-info-widget {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.ci-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.ci-item:last-child { border-bottom: none; }
.ci-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.ci-link { color: var(--navy); font-weight: 600; line-height: 1.5; }
.ci-link:hover { color: var(--green); }

/* ══════════════════════════════════════════
   PAGE L'ÉQUIPE
══════════════════════════════════════════ */
.poles-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.pole-card {
  padding: 1.5rem; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: var(--light);
  transition: var(--transition);
}
.pole-card:hover { background: var(--white); box-shadow: var(--shadow); transform: translateY(-2px); }
.pole-icon {
  font-size: 1.75rem; margin-bottom: 10px; display: block;
}
.pole-card h3 {
  font-size: 13px; font-weight: 800; color: var(--navy);
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 7px;
}
.pole-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* Bloc rejoindre */
.join-block {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius); padding: 2.5rem 2rem;
  text-align: center; box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.join-block::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(18,138,58,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.join-content { position: relative; z-index: 1; }
.join-block h2 {
  color: white; font-size: 22px; font-weight: 900; margin-bottom: 12px;
}
.join-block p {
  color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.65;
  max-width: 480px; margin: 0 auto 1.5rem;
}
.join-btn {
  display: inline-block;
  background: var(--orange); color: white;
  padding: 12px 28px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.8px; transition: var(--transition);
}
.join-btn:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(242,140,27,0.35); }

/* ══════════════════════════════════════════
   SIDEBAR — widgets pages internes
══════════════════════════════════════════ */
.contact-info-widget .widget-header,
.sidebar-widget .widget-header {
  padding: 12px 16px;
  background: var(--navy);
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800; color: white;
  text-transform: uppercase; letter-spacing: 1px;
}
.widget-header-dot {
  width: 7px; height: 7px; background: var(--orange);
  border-radius: 50%; flex-shrink: 0;
}
.contact-info-widget .widget-body,
.sidebar-widget .widget-body {
  padding: 14px 16px;
}

/* ══════════════════════════════════════════
   RESPONSIVE — pages internes
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .page-wrap { grid-template-columns: 1fr; }
  .page-sidebar-col { order: -1; }
  .values-grid, .poles-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .about-stat:nth-child(2n) { }
  .social-grid { grid-template-columns: 1fr 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero-title { font-size: 24px; }
}
@media (max-width: 600px) {
  .page-wrap { padding: 1rem 0.75rem; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .social-grid { grid-template-columns: 1fr 1fr; }
  .join-block { padding: 1.75rem 1.25rem; }
  .contact-form-block, .about-section, .about-intro-block { padding: 1.25rem; }
  .contact-cards { gap: 0.75rem; }
  .page-hero-title { font-size: 20px; }
}

/* ══════════════════════════════════════════
   ARTICLE COMPLET
══════════════════════════════════════════ */
.single-post-wrap {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  overflow: hidden; margin-bottom: 2rem;
}
.single-post-header {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.single-post-title {
  font-size: 28px; font-weight: 900; color: var(--navy);
  line-height: 1.3; margin-bottom: 14px;
}
.single-post-meta { font-size: 12px; color: var(--muted); display: flex; gap: 12px; flex-wrap: wrap; }
.single-post-featured { width: 100%; max-height: 460px; object-fit: cover; }
.single-post-content { padding: 2rem; font-family: 'Lora', serif; font-size: 17px; line-height: 1.85; color: #2d3748; }
.single-post-content p { margin-bottom: 1.5rem; }
.single-post-content h2 { font-family: 'Montserrat', sans-serif; font-size: 21px; font-weight: 900; color: var(--navy); margin: 2.5rem 0 1rem; }
.single-post-content h3 { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 800; color: var(--navy); margin: 2rem 0 0.75rem; }
.single-post-content blockquote {
  border-left: 4px solid var(--green); padding: 1.25rem 1.5rem;
  margin: 1.5rem 0; background: var(--green-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic; color: var(--navy);
}
.single-post-content a { color: var(--green); text-decoration: underline; }
.single-post-content img { border-radius: var(--radius-sm); margin: 1rem 0; }

/* Fil d'Ariane */
.breadcrumb {
  font-size: 12px; color: var(--muted); margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--green); }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; margin: 2rem 0; flex-wrap: wrap; }
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 12px;
  border-radius: var(--radius-sm); font-size: 13px; font-weight: 700;
  text-decoration: none; border: 1.5px solid var(--border);
  color: var(--navy); background: var(--white); transition: var(--transition);
}
.pagination .current, .pagination a:hover { background: var(--navy); color: white; border-color: var(--navy); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer#site-footer {
  background: var(--dark); color: rgba(255,255,255,0.7);
  padding: 3rem 0 0; margin-top: 2rem;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem 2.5rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem;
}
.footer-logo { height: 50px; width: auto; margin-bottom: 12px; object-fit: contain; }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 16px; font-style: italic; }
.footer-values { display: flex; flex-direction: column; gap: 8px; }
.footer-value { display: flex; align-items: center; gap: 8px; font-size: 12px; }
.value-dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }
.footer-col h4 {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.5px; color: white; margin-bottom: 14px;
  padding-bottom: 8px; border-bottom: 2px solid var(--green);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.footer-divider {
  max-width: 1280px; margin: 0 auto;
  border: none; border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: rgba(255,255,255,0.35); flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--orange); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 280px; }
  .main { grid-template-columns: 1fr 260px; }
}
@media (max-width: 900px) {
  .top-bar { display: none; }
  .nav-menu, .nav-search-btn { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: block; }
  .hero-inner { grid-template-columns: 1fr; padding: 1rem; gap: 1rem; }
  .hero-main-img { height: 300px; }
  .hero-main-title { font-size: 20px; }
  .hero-sidebar { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .hero-card { width: calc(50% - 4px); }
  .cat-nav { top: 62px; }
  .main { grid-template-columns: 1fr; padding: 1.5rem 1rem; }
  .articles-grid { grid-template-columns: 1fr; }
  .articles-grid .article-card:first-child { flex-direction: column; }
  .articles-grid .article-card:first-child .article-card-img { width: 100%; height: 200px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .reportage-card { flex-direction: column; }
  .reportage-card-img { width: 100%; height: 160px; }
  .stats-bar { flex-wrap: wrap; }
  .stat-item { flex: 1 1 40%; }
}
@media (max-width: 600px) {
  .nav-inner { height: 58px; padding: 0 1rem; }
  .site-logo img, .custom-logo { height: 44px !important; }
  .hero { padding: 1rem 0; }
  .hero-inner { padding: 0.75rem; }
  .hero-main-img { height: 240px; }
  .hero-sidebar { flex-direction: column; }
  .hero-card { width: 100%; }
  .main { padding: 1rem 0.75rem; gap: 1rem; }
  .single-post-title { font-size: 21px; }
  .single-post-content { padding: 1.25rem; font-size: 15px; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stat-item { flex: 1 1 45%; }
}

/* ══════════════════════════════════════════════════════════
   CORRECTION MOBILE — rubriques visibles + menu amélioré
══════════════════════════════════════════════════════════ */

/* Ticker pulse dot */
.ticker-pulse {
  display: inline-block; width: 7px; height: 7px;
  border-radius: 50%; background: rgba(255,255,255,.9);
  margin-right: 4px; vertical-align: middle;
  animation: tickPulse 1.3s ease-in-out infinite;
}
@keyframes tickPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.8)} }

/* MENU MOBILE redesigné */
.mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.45); z-index: 998;
}
.mobile-overlay.open { display: block; }

.mobile-menu {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: 82%; max-width: 320px;
  background: var(--white); z-index: 999;
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  overflow-y: auto;
  box-shadow: 4px 0 24px rgba(10,29,61,.15);
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--navy);
  flex-shrink: 0;
}
.mobile-menu-title { font-size: 13px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.7); }
.mobile-menu-close { background: none; border: none; font-size: 1.2rem; color: rgba(255,255,255,.7); cursor: pointer; padding: 4px; }

.mobile-menu-links { padding: .5rem 0; flex: 1; }
.mobile-menu-item {
  display: flex; align-items: center; gap: 10px;
  padding: .75rem 1.25rem;
  font-size: 14px; font-weight: 700;
  color: var(--navy); text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: background .15s, color .15s;
}
.mobile-menu-item:last-child { border-bottom: none; }
.mobile-menu-item:hover, .mobile-menu-active { background: var(--green-light); color: var(--green); }
.mobile-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

.mobile-menu-divider { height: 1px; background: var(--border); margin: .5rem 0; }
.mobile-menu-item--page { color: var(--muted); font-weight: 500; font-size: 13px; }
.mobile-menu-item--page:hover { color: var(--navy); background: var(--light); }

.mobile-menu-search { padding: 1rem 1.25rem; border-top: 1px solid var(--border); flex-shrink: 0; }
.mobile-menu-search input {
  width: 100%; padding: .6rem .9rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: var(--ff); font-size: 13px;
}

/* CAT-NAV mobile : scroll horizontal garanti */
@media (max-width: 900px) {
  .cat-nav { top: 62px; overflow: hidden; }
  .cat-nav-inner {
    overflow-x: auto; overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Indique visuellement qu'on peut scroller */
    padding-right: 2rem;
  }
  .cat-nav-inner::-webkit-scrollbar { display: none; }
  .cat-nav-link { padding: 10px 14px; font-size: 11px; }

  /* Gradient hint pour indiquer le scroll */
  .cat-nav::after {
    content: '';
    position: absolute; top: 0; right: 0; bottom: 0;
    width: 32px;
    background: linear-gradient(to right, transparent, var(--white));
    pointer-events: none;
  }
  .cat-nav { position: relative; }
}

@media (max-width: 600px) {
  .cat-nav-link { padding: 9px 12px; font-size: 10.5px; letter-spacing: .5px; }
}

/* ══════════════════════════════════════════════════════════
   PAGES STATIQUES — Nouveau design (v3)
   classes: static-page-wrap, sp-*
══════════════════════════════════════════════════════════ */

/* Layout principal */
.static-page-wrap {
  max-width: 1200px; margin: 0 auto;
  padding: 2.5rem 1.5rem;
  display: grid; grid-template-columns: 1fr 300px;
  gap: 2.5rem; align-items: start;
}
.static-page-main { min-width: 0; }
.static-page-sidebar { min-width: 0; position: sticky; top: 130px; display: flex; flex-direction: column; gap: 1.25rem; }

/* CITATION INTRO */
.sp-intro-quote {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--white); border-radius: var(--radius);
  border-left: 5px solid var(--green);
  padding: 1.75rem 2rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow);
}
.sp-intro-quote-mark {
  font-size: 5rem; font-weight: 900; color: var(--green-light);
  line-height: .7; font-style: italic; flex-shrink: 0; margin-top: -4px;
  font-family: Georgia, serif;
}
.sp-intro-quote-body p {
  font-size: 17px; line-height: 1.75; color: var(--navy);
  font-style: italic; margin-bottom: .75rem;
  font-family: Georgia, 'Times New Roman', serif;
}
.sp-intro-quote-source { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .8px; }

/* SECTION LABEL */
.sp-section { margin-bottom: 2.5rem; }
.sp-section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 1.25rem;
}
.sp-section-label::before { content: ''; display: block; width: 20px; height: 2px; background: var(--orange); border-radius: 1px; }

/* IDENTITÉ GRID (À propos) */
.sp-identity-grid { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: start; }
.sp-identity-text p { font-size: 14px; line-height: 1.8; color: #374151; margin-bottom: .9rem; }
.sp-identity-text p:last-child { margin-bottom: 0; }
.sp-identity-card {
  background: var(--navy); border-radius: var(--radius);
  padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem;
  min-width: 160px;
}
.sp-identity-stat { text-align: center; }
.sp-identity-num { display: block; font-size: 22px; font-weight: 900; color: var(--orange); line-height: 1; }
.sp-identity-lbl { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .6px; color: rgba(255,255,255,.5); margin-top: 3px; display: block; }

/* VALEURS GRID 4 colonnes */
.sp-values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.sp-value-card {
  border-radius: var(--radius); padding: 1.5rem 1.25rem;
  position: relative; overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.sp-value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.sp-value-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: .9rem; }
.sp-value-icon { font-size: 1.6rem; }
.sp-value-num { font-size: 2rem; font-weight: 900; opacity: .12; line-height: 1; font-style: italic; }
.sp-value-card h3 { font-size: 14px; font-weight: 800; margin-bottom: .5rem; }
.sp-value-card p { font-size: 12.5px; line-height: 1.6; }
.sp-value--green  { background: #e8f5ed; } .sp-value--green h3  { color: #128A3A; } .sp-value--green p  { color: #374151; }
.sp-value--orange { background: #fff4e3; } .sp-value--orange h3 { color: #c27500; } .sp-value--orange p { color: #374151; }
.sp-value--navy   { background: #e8edf5; } .sp-value--navy h3   { color: var(--navy); } .sp-value--navy p   { color: #374151; }
.sp-value--purple { background: #f5f0ff; } .sp-value--purple h3 { color: #5b21b6; } .sp-value--purple p { color: #374151; }

/* COVERAGE GRID */
.sp-coverage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.sp-coverage-item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--white); border-radius: var(--radius);
  padding: 1rem 1.1rem; border: 1px solid var(--border);
  box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
}
.sp-coverage-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.sp-coverage-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.sp-coverage-body h4 { font-size: 13px; font-weight: 800; color: var(--navy); margin-bottom: 3px; }
.sp-coverage-body p { font-size: 12px; color: var(--muted); line-height: 1.55; }

/* CTA BLOCK */
.sp-cta-block {
  background: linear-gradient(135deg, var(--navy) 0%, #0d5c30 100%);
  border-radius: var(--radius); padding: 2rem;
  margin-top: 1rem;
}
.sp-cta-content h3 { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: .65rem; }
.sp-cta-content p { font-size: 13.5px; color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 1.25rem; }
.sp-cta-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--orange); color: #fff;
  padding: .7rem 1.6rem; border-radius: 999px;
  font-size: 13px; font-weight: 800; transition: all .2s;
}
.sp-cta-btn:hover { background: #d97a10; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(242,140,27,.35); }

/* PÔLES GRID (équipe) */
.sp-poles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.sp-pole-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--white); border-radius: var(--radius);
  padding: 1.25rem; border: 1px solid var(--border);
  box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
}
.sp-pole-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.sp-pole-icon-wrap { width: 46px; height: 46px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sp-pole-icon { font-size: 1.4rem; }
.sp-pole-body h3 { font-size: 13px; font-weight: 800; color: var(--navy); margin-bottom: .35rem; }
.sp-pole-body p { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ENGAGEMENTS */
.sp-engagements-list { display: flex; flex-direction: column; gap: .75rem; }
.sp-engagement-item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--white); border-radius: var(--radius);
  padding: 1.1rem 1.25rem; border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.sp-engagement-check {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0; margin-top: 1px;
}
.sp-engagement-body h4 { font-size: 13px; font-weight: 800; color: var(--navy); margin-bottom: 3px; }
.sp-engagement-body p { font-size: 12.5px; color: var(--muted); line-height: 1.6; }

/* JOIN BLOCK (équipe) */
.sp-join-block {
  background: var(--navy); border-radius: var(--radius);
  padding: 2rem; text-align: center; margin-top: .5rem;
}
.sp-join-badge { display: inline-block; background: var(--orange); color: #fff; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; padding: 4px 12px; border-radius: 20px; margin-bottom: .9rem; }
.sp-join-block h3 { font-size: 1.2rem; font-weight: 900; color: #fff; margin-bottom: .65rem; }
.sp-join-block p { font-size: 13.5px; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 1.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.sp-join-btn { display: inline-flex; align-items: center; gap: 6px; background: var(--orange); color: #fff; padding: .75rem 1.6rem; border-radius: 999px; font-size: 13px; font-weight: 800; transition: all .2s; }
.sp-join-btn:hover { background: #d97a10; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(242,140,27,.35); }

/* CONTACT CARDS horizontales */
.sp-contact-cards { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2rem; }
.sp-contact-card {
  display: flex; align-items: center; gap: 1rem;
  background: var(--white); border-radius: var(--radius);
  padding: 1.1rem 1.25rem; border: 1px solid var(--border);
  box-shadow: var(--shadow); text-decoration: none;
  transition: all .2s;
}
.sp-contact-card:hover { transform: translateX(4px); border-left: 3px solid var(--green); box-shadow: var(--shadow-hover); }
.sp-contact-card--nolink { cursor: default; }
.sp-contact-card--nolink:hover { transform: none; border-left: 1px solid var(--border); box-shadow: var(--shadow); }
.sp-contact-card-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.sp-contact-card-body { flex: 1; }
.sp-contact-card-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--muted); margin-bottom: 3px; }
.sp-contact-card-value { font-size: 14px; font-weight: 700; color: var(--navy); display: block; }
.sp-contact-card-arrow { font-size: 18px; color: var(--border); transition: color .2s; }
.sp-contact-card:hover .sp-contact-card-arrow { color: var(--green); }

/* FORMULAIRE CONTACT */
.sp-form-block {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow); margin-bottom: 2.5rem;
}
.sp-form-block-header {
  background: var(--navy); padding: 1.25rem 1.75rem;
}
.sp-form-block-title { font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 3px; text-transform: uppercase; letter-spacing: .6px; }
.sp-form-block-sub { font-size: 12px; color: rgba(255,255,255,.55); }
.sp-form { padding: 1.75rem; display: flex; flex-direction: column; gap: 1.1rem; }
.sp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.sp-form-group { display: flex; flex-direction: column; gap: 5px; }
.sp-form-group label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .7px; color: var(--navy); }
.sp-req { color: #ef4444; }
.sp-form-group input,
.sp-form-group select,
.sp-form-group textarea {
  padding: .65rem .9rem; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: var(--ff);
  font-size: 14px; color: var(--navy); background: var(--white);
  transition: border-color .2s, box-shadow .2s; width: 100%;
}
.sp-form-group input:focus,
.sp-form-group select:focus,
.sp-form-group textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(18,138,58,.1); }
.sp-form-group textarea { resize: vertical; }
.sp-form-submit {
  align-self: flex-start;
  background: var(--navy); color: #fff; border: none;
  padding: .8rem 2rem; border-radius: 999px;
  font-family: var(--ff); font-size: 13px; font-weight: 800;
  cursor: pointer; transition: all .2s; letter-spacing: .3px;
}
.sp-form-submit:hover { background: var(--green); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(18,138,58,.25); }
.sp-form-success {
  display: flex; gap: .9rem; align-items: flex-start;
  margin: 1.75rem; padding: 1rem 1.25rem;
  background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: var(--radius-sm);
  font-size: 13.5px; color: #166534; line-height: 1.6;
}
.sp-form-success-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.sp-form-error { margin: 1.75rem 1.75rem 0; padding: .75rem 1rem; background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; border-radius: var(--radius-sm); font-size: 13px; }

/* SOCIAL GRID contact */
.sp-social-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: .75rem; }
.sp-social-item {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 1.1rem .5rem; border-radius: var(--radius);
  border: 1px solid var(--border); text-decoration: none;
  font-size: 12px; font-weight: 700; color: #374151;
  transition: all .2s;
}
.sp-social-item:hover { transform: translateY(-3px); color: #fff; }
.sp-social-emoji { font-size: 1.5rem; }
.sp-social-fb { background:#f0f4ff; } .sp-social-fb:hover { background:#1877f2; border-color:#1877f2; }
.sp-social-wa { background:#f0fdf4; } .sp-social-wa:hover { background:#25d366; border-color:#25d366; }
.sp-social-yt { background:#fff5f5; } .sp-social-yt:hover { background:#ff0000; border-color:#ff0000; }
.sp-social-tw { background:#f0f9ff; } .sp-social-tw:hover { background:#1da1f2; border-color:#1da1f2; }

/* SIDEBAR widgets */
.sp-sidebar-nav { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow); }
.sp-sidebar-nav-title { background: var(--navy); color: #fff; padding: .65rem 1rem; font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.sp-sidebar-nav-item { display: flex; align-items: center; gap: 9px; padding: .75rem 1rem; font-size: 13px; font-weight: 600; color: var(--navy); border-bottom: 1px solid var(--border); text-decoration: none; transition: background .15s; }
.sp-sidebar-nav-item:last-child { border-bottom: none; }
.sp-sidebar-nav-item:hover { background: var(--light); }
.sp-sidebar-nav-active { color: var(--green); font-weight: 700; background: var(--green-light); }
.sp-sidebar-nav-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; transition: background .2s; }

.sp-sidebar-cta {
  background: var(--orange-light); border: 1px solid rgba(242,140,27,.2);
  border-radius: var(--radius); padding: 1.25rem;
  text-align: center;
}
.sp-sidebar-cta-icon { font-size: 1.8rem; margin-bottom: .5rem; }
.sp-sidebar-cta-title { font-size: 13px; font-weight: 800; color: var(--navy); margin-bottom: .4rem; }
.sp-sidebar-cta p { font-size: 12px; color: var(--muted); line-height: 1.55; margin-bottom: .9rem; }
.sp-sidebar-cta a { display: inline-block; background: var(--orange); color: #fff; padding: 7px 18px; border-radius: var(--radius-sm); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; transition: all .2s; }
.sp-sidebar-cta a:hover { background: #d97a10; transform: translateY(-1px); }

/* SIDEBAR coordonnées contact */
.sp-sidebar-coords { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow); }
.sp-sidebar-coord-item { display: flex; align-items: flex-start; gap: .75rem; padding: .65rem 1rem; border-bottom: 1px solid var(--border); }
.sp-sidebar-coord-item:last-child { border-bottom: none; }
.sp-sidebar-coord-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.sp-coord-link { font-size: 13px; font-weight: 600; color: var(--green); text-decoration: none; display: block; transition: color .2s; }
.sp-coord-link:hover { color: var(--navy); }

/* Responsive pages statiques */
@media (max-width: 900px) {
  .static-page-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .static-page-sidebar { position: static; }
  .sp-values-grid { grid-template-columns: 1fr 1fr; }
  .sp-poles-grid { grid-template-columns: 1fr; }
  .sp-coverage-grid { grid-template-columns: 1fr; }
  .sp-identity-grid { grid-template-columns: 1fr; }
  .sp-identity-card { flex-direction: row; justify-content: space-around; }
  .sp-social-grid { grid-template-columns: repeat(2,1fr); }
  .sp-form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .sp-values-grid { grid-template-columns: 1fr; }
  .sp-intro-quote { flex-direction: column; padding: 1.25rem; }
  .sp-intro-quote-mark { font-size: 3.5rem; }
  .sp-intro-quote-body p { font-size: 15px; }
  .static-page-wrap { padding: 1.25rem 1rem; }
  .sp-form { padding: 1.25rem 1rem; }
}
