/* ============================================================
   Blouses Blanches Gaza – Feuille de style principale
   ============================================================ */

/* ---------- Variables ---------- */
:root {
  --primary:        #1F9252;
  --primary-dark:   #0f4a2a;
  --primary-light:  #27ae60;
  --accent:         #CE1126;
  --accent-dark:    #A50E1E;
  --white:          #FFFFFF;
  --gray-50:        #F8FAFC;
  --gray-100:       #F1F5F9;
  --gray-200:       #E2E8F0;
  --gray-400:       #94A3B8;
  --gray-600:       #475569;
  --gray-800:       #1E293B;
  --gray-900:       #0F172A;
  --text:           #1E293B;
  --shadow-sm:      0 1px 4px rgba(0,0,0,0.07);
  --shadow-md:      0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:      0 12px 36px rgba(0,0,0,0.14);
  --radius:         10px;
  --radius-lg:      18px;
  --ease:           0.28s cubic-bezier(.4,0,.2,1);
  --container:      1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Utilitaires ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 80px 0;
}
.section-dark {
  background: var(--gray-50);
}
.section-blue {
  background: var(--primary);
  color: var(--white);
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
}
.section-title-white { color: var(--white); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto;
}
.section-subtitle-white { color: rgba(255,255,255,0.75); }
.section-footer {
  text-align: center;
  margin-top: 48px;
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--ease), color var(--ease), transform var(--ease), box-shadow var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 9px 20px; font-size: 0.875rem; }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(31,146,82,0.35);
}
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 6px 18px rgba(31,146,82,0.4); }

.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(206,17,38,0.3);
}
.btn-accent:hover { background: var(--accent-dark); }

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.btn-white:hover { background: var(--gray-100); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline-primary:hover { background: var(--primary); color: var(--white); }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap var(--ease), color var(--ease);
}
.btn-link:hover { gap: 10px; color: var(--primary-dark); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: border-color var(--ease), box-shadow var(--ease);
  height: 72px;
}
/* Le blur est sur un pseudo-élément pour ne pas piéger les enfants fixed */
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  z-index: -1;
}
.site-header.scrolled {
  border-color: var(--gray-200);
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo img { height: 42px; width: auto; }
.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--primary);
  line-height: 1.2;
  display: none;
}
@media (min-width: 640px) { .logo-text { display: block; } }

.main-nav { margin-left: auto; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 13px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-800);
  transition: background var(--ease), color var(--ease);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  background: var(--gray-100);
  color: var(--primary);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle .arrow {
  font-size: 0.7rem;
  display: inline-block;
  transition: transform var(--ease);
}
.nav-dropdown:hover .arrow { transform: rotate(180deg); }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 180px;
  padding: 8px 0;
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-800);
  transition: background var(--ease);
}
.dropdown-menu a:hover { background: var(--gray-50); color: var(--primary); }

.header-cta { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 1024px) {
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .main-nav { display: none; }
}

/* ---- Menu mobile indépendant (hors header) ---- */
.mobile-menu,
.mobile-overlay { display: none; }

@media (min-width: 1025px) {
  .mobile-menu,
  .mobile-overlay { display: none !important; }
}

@media (max-width: 1024px) {
  .mobile-menu.open {
    display: block;
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--white);
    z-index: 99999;
    overflow-y: auto;
    padding: 20px 16px 40px;
    border-top: 3px solid var(--primary);
    box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  }
  .mobile-overlay.open {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 99998;
  }
}

.mobile-menu-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu-list a {
  display: block;
  padding: 15px 18px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray-800);
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-list a:hover {
  background: var(--gray-100);
  color: var(--primary);
}
.mobile-menu-cta a {
  background: var(--primary) !important;
  color: white !important;
  text-align: center;
  border-radius: 50px !important;
  margin-top: 12px;
  font-size: 1rem !important;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #134a2a 100%);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(206,17,38,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 40%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  max-width: 760px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-title em {
  font-style: normal;
  color: #86efac;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- Stats bar ---------- */
.stats-bar {
  background: var(--primary-dark);
  color: var(--white);
  padding: 32px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item {}
.stat-number {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #86efac;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Filtre actualités ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--gray-100);
  border: 2px solid transparent;
  transition: all var(--ease);
}
.filter-btn:hover {
  background: var(--gray-200);
  color: var(--gray-900);
}
.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ---------- Grille articles ---------- */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1024px) { .articles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .articles-grid { grid-template-columns: 1fr; } }

.article-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: box-shadow var(--ease), transform var(--ease);
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.article-card.hidden { display: none; }

.article-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}
.article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.article-card:hover .article-img img { transform: scale(1.04); }
.article-category {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--accent);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.article-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 12px;
}
.article-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.35;
}
.article-excerpt {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---------- Agenda ---------- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) { .events-grid { grid-template-columns: 1fr; } }

.event-card {
  display: flex;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--gray-200);
  transition: box-shadow var(--ease), transform var(--ease);
}
.event-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.event-date-badge {
  flex-shrink: 0;
  width: 64px;
  text-align: center;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.event-day {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}
.event-month {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.85;
  margin-top: 2px;
}
.event-info { flex: 1; }
.event-type {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 6px;
}
.event-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.3;
}
.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--gray-600);
  margin-bottom: 12px;
}
.event-meta span { display: flex; align-items: center; gap: 4px; }
.event-description {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.55;
  margin-bottom: 16px;
}

/* ---------- Campagnes ---------- */
.campaigns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .campaigns-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .campaigns-grid { grid-template-columns: 1fr; } }

.campaign-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow var(--ease), transform var(--ease);
}
.campaign-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.campaign-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem;
}
.campaign-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.campaign-desc {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ---------- À propos bande ---------- */
.about-strip {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 72px 0;
}
.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 768px) { .about-strip-inner { grid-template-columns: 1fr; gap: 36px; } }

.about-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #86efac;
  margin-bottom: 12px;
}
.about-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.about-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 32px;
}
.about-quote {
  border-left: 4px solid var(--accent);
  padding-left: 20px;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}
.about-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Rejoindre ---------- */
.join-section {
  padding: 80px 0;
  background: var(--gray-50);
}
.join-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 700px) { .join-grid { grid-template-columns: 1fr; } }

.join-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200);
  padding: 40px 32px;
  text-align: center;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.join-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.join-icon { font-size: 3rem; margin-bottom: 16px; }
.join-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
}
.join-desc {
  font-size: 0.92rem;
  color: var(--gray-600);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .logo-text {
  display: block;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 24px;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background var(--ease), transform var(--ease);
  color: var(--white);
}
.social-link:hover { background: var(--primary); transform: translateY(-2px); }

.footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--ease);
}
.footer-links a:hover { color: var(--white); }
.footer-contact a { color: rgba(255,255,255,0.65); font-size: 0.85rem; }
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.5); transition: color var(--ease); }
.footer-legal a:hover { color: var(--white); }

/* ---------- Formulaires adhésion ---------- */
.form-page {
  padding-top: 72px;
  min-height: 100vh;
  background: var(--gray-50);
}
.form-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}
.form-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.form-hero p { color: rgba(255,255,255,0.8); font-size: 1rem; }
.form-wrapper {
  max-width: 640px;
  margin: -32px auto 64px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-800);
  margin-bottom: 7px;
}
.form-group label .required { color: var(--accent); margin-left: 3px; }
.form-control {
  width: 100%;
  padding: 11px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease);
  -webkit-appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(31,146,82,0.1);
}
.form-control::placeholder { color: var(--gray-400); }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--gray-600);
  cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--primary);
  cursor: pointer;
}
.form-checkbox a { color: var(--primary); font-weight: 600; }
.form-submit { width: 100%; padding: 14px; font-size: 1rem; border-radius: var(--radius); }
.form-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-top: 16px;
}

/* ---------- Page hero (pages intérieures) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 65%, #155c38 100%);
  color: var(--white);
  padding: 80px 0 64px;
  margin-top: 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.045), transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 56px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero-dark-after::after { background: var(--gray-50); }

.page-hero-inner { max-width: 680px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--ease); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,0.25); font-size: 0.7rem; }
.page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 18px;
  letter-spacing: -0.025em;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  line-height: 1.7;
}
.page-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: inline-block;
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 7px; top: 10px; bottom: 10px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary) 0%, rgba(31,146,82,0.15) 100%);
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  padding-bottom: 48px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -40px; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--primary), 0 4px 12px rgba(31,146,82,0.25);
  transition: transform var(--ease), box-shadow var(--ease);
}
.timeline-item:hover .timeline-dot {
  transform: scale(1.25);
  box-shadow: 0 0 0 4px var(--primary-light), 0 6px 16px rgba(31,146,82,0.35);
}
.timeline-date {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 8px;
}
.timeline-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
}
.timeline-item:hover .timeline-card {
  box-shadow: var(--shadow-md);
  border-color: rgba(31,146,82,0.2);
  transform: translateX(4px);
}
.timeline-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.timeline-text {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ---------- Value cards ---------- */
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 36px 28px;
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: opacity var(--ease);
}
.value-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: rgba(31,146,82,0.2); }
.value-card:hover::before { opacity: 1; }
.value-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.value-icon-blue   { background: linear-gradient(135deg, #f0fdf4, #bbf7d0); }
.value-icon-red    { background: linear-gradient(135deg, #FEF2F2, #FECACA); }
.value-icon-green  { background: linear-gradient(135deg, #F0FDF4, #BBF7D0); }
.value-icon-purple { background: linear-gradient(135deg, #FAF5FF, #E9D5FF); }
.value-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.value-text {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ---------- Grilles génériques ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px)  { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---------- Tribune card (liste) ---------- */
.tribune-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--ease), transform var(--ease);
}
.tribune-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.tribune-img {
  height: 160px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  position: relative;
  flex-shrink: 0;
}
.tribune-img img { width: 100%; height: 100%; object-fit: cover; }
.tribune-body { padding: 24px 24px 24px 0; display: flex; flex-direction: column; }
.tribune-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent);
  margin-bottom: 8px;
}
.tribune-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
  line-height: 1.35;
}
.tribune-excerpt {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tribune-meta {
  font-size: 0.78rem;
  color: var(--gray-400);
  display: flex;
  gap: 12px;
  align-items: center;
}
@media (max-width: 640px) { .tribune-card { grid-template-columns: 1fr; } .tribune-img { height: 180px; } .tribune-body { padding: 20px; } }

/* ---------- Video card ---------- */
.video-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--ease), transform var(--ease);
}
.video-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.video-thumb {
  position: relative;
  padding-top: 56.25%;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  overflow: hidden;
}
.video-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  transition: background var(--ease);
}
.video-card:hover .video-play { background: rgba(0,0,0,0.5); }
.play-btn {
  width: 56px; height: 56px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  padding-left: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: transform var(--ease);
}
.video-card:hover .play-btn { transform: scale(1.12); }
.video-body { padding: 20px; }
.video-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.35;
}
.video-meta { font-size: 0.78rem; color: var(--gray-400); }

/* ---------- Article page (single) ---------- */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: flex-start;
}
@media (max-width: 1024px) { .article-layout { grid-template-columns: 1fr; } }

.article-content-full {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 48px;
}
@media (max-width: 640px) { .article-content-full { padding: 28px 20px; } }

.article-content-full h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.article-content-full .article-meta-full {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 36px;
}
.article-body-text { font-size: 1rem; line-height: 1.8; color: var(--gray-800); }
.article-body-text p { margin-bottom: 20px; }
.article-body-text strong { color: var(--gray-900); }
.article-body-text a { color: var(--primary); font-weight: 500; }
.article-body-text a:hover { text-decoration: underline; }

.article-sidebar { position: sticky; top: 88px; }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}
.sidebar-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 16px;
}
.related-article {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}
.related-article:last-child { border-bottom: none; padding-bottom: 0; }
.related-thumb {
  width: 52px; height: 52px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  flex-shrink: 0;
  overflow: hidden;
}
.related-thumb img { width: 100%; height: 100%; object-fit: cover; }
.related-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.35;
  transition: color var(--ease);
}
.related-article:hover .related-title { color: var(--primary); }
.related-date { font-size: 0.75rem; color: var(--gray-400); margin-top: 4px; }

/* ---------- CTA bande ---------- */
.cta-strip {
  background: linear-gradient(135deg, var(--accent) 0%, #a50e1e 100%);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cta-strip h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 12px;
}
.cta-strip p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 28px; }
.cta-strip .btn-white { box-shadow: 0 6px 20px rgba(0,0,0,0.2); }

/* ---------- Legal pages ---------- */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 24px;
}
.legal-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gray-900);
  margin: 40px 0 14px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-content ul {
  padding-left: 22px;
  margin-bottom: 14px;
}
.legal-content ul li {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 6px;
}
.legal-content a { color: var(--primary); font-weight: 500; }

/* ---------- Empty state ---------- */
.empty-state-page {
  text-align: center;
  padding: 80px 24px;
}
.empty-state-page .icon { font-size: 3.5rem; margin-bottom: 20px; }
.empty-state-page h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.empty-state-page p { color: var(--gray-600); font-size: 0.95rem; }

/* ---------- Featured article ---------- */
.article-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
  transition: box-shadow var(--ease), transform var(--ease);
}
.article-featured:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.article-featured .article-img { height: 100%; min-height: 280px; }
.article-featured .article-body { padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; }
.article-featured .article-title { font-size: 1.3rem; margin-bottom: 14px; }
.article-featured .article-excerpt { -webkit-line-clamp: 4; }
@media (max-width: 768px) {
  .article-featured { grid-template-columns: 1fr; }
  .article-featured .article-img { min-height: 200px; }
  .article-featured .article-body { padding: 24px; }
}

/* ---------- Month label (agenda) ---------- */
.month-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin: 36px 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.month-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}
.month-label:first-child { margin-top: 0; }

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in {
  animation: fadeInUp 0.55s var(--ease) both;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.35s; }
.delay-4 { animation-delay: 0.5s; }

/* Intersection observer classes */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  background: var(--gray-900);
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  max-width: 320px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-left: 4px solid #22c55e; }
.toast.error   { border-left: 4px solid var(--accent); }
